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..b59b1e7fc41 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,43 @@ 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 + filter.value = { min = entry.value, max = 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 +196,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 +334,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 +357,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 +422,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 +450,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..af212bd2028 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 @@ -3798,13 +3798,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..4c40dbd2e85 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("\nAdded Small Passive Skills grant: ", "\n") + 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/ClusterJewels.lua b/src/Data/ClusterJewels.lua index 6bdbda90915..04055a2778b 100644 --- a/src/Data/ClusterJewels.lua +++ b/src/Data/ClusterJewels.lua @@ -16,6 +16,7 @@ return { ["affliction_maximum_life"] = { name = "Life", icon = "Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNode.png", + id = 39, tag = "affliction_maximum_life", stats = { "4% increased maximum Life" }, enchant = { @@ -25,6 +26,7 @@ return { ["affliction_maximum_energy_shield"] = { name = "Energy Shield", icon = "Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + id = 40, tag = "affliction_maximum_energy_shield", stats = { "6% increased maximum Energy Shield" }, enchant = { @@ -34,6 +36,7 @@ return { ["affliction_maximum_mana"] = { name = "Mana", icon = "Art/2DArt/SkillIcons/passives/MaxManaNode.png", + id = 41, tag = "affliction_maximum_mana", stats = { "6% increased maximum Mana" }, enchant = { @@ -43,6 +46,7 @@ return { ["affliction_armour"] = { name = "Armour", icon = "Art/2DArt/SkillIcons/passives/ArmourNode.png", + id = 42, tag = "affliction_armour", stats = { "15% increased Armour" }, enchant = { @@ -52,6 +56,7 @@ return { ["affliction_evasion"] = { name = "Evasion", icon = "Art/2DArt/SkillIcons/passives/EvasionNode.png", + id = 43, tag = "affliction_evasion", stats = { "15% increased Evasion Rating" }, enchant = { @@ -61,6 +66,7 @@ return { ["affliction_chance_to_block_attack_damage"] = { name = "Chance to Block Attack Damage", icon = "Art/2DArt/SkillIcons/passives/BlockAttackDmgNode.png", + id = 44, tag = "affliction_chance_to_block", stats = { "+2% Chance to Block Attack Damage" }, enchant = { @@ -70,6 +76,7 @@ return { ["affliction_chance_to_block_spell_damage"] = { name = "Chance to Block Spell Damage", icon = "Art/2DArt/SkillIcons/passives/BlockSpellDmgNode.png", + id = 45, tag = "affliction_chance_to_block", stats = { "2% Chance to Block Spell Damage" }, enchant = { @@ -79,6 +86,7 @@ return { ["affliction_fire_resistance"] = { name = "Fire Resistance", icon = "Art/2DArt/SkillIcons/passives/FireResistNode.png", + id = 46, tag = "affliction_fire_resistance", stats = { "+15% to Fire Resistance" }, enchant = { @@ -88,6 +96,7 @@ return { ["affliction_cold_resistance"] = { name = "Cold Resistance", icon = "Art/2DArt/SkillIcons/passives/ColdResistNode.png", + id = 47, tag = "affliction_cold_resistance", stats = { "+15% to Cold Resistance" }, enchant = { @@ -97,6 +106,7 @@ return { ["affliction_lightning_resistance"] = { name = "Lightning Resistance", icon = "Art/2DArt/SkillIcons/passives/LightningResistNode.png", + id = 48, tag = "affliction_lightning_resistance", stats = { "+15% to Lightning Resistance" }, enchant = { @@ -106,6 +116,7 @@ return { ["affliction_chaos_resistance"] = { name = "Chaos Resistance", icon = "Art/2DArt/SkillIcons/passives/ChaosResistNode.png", + id = 49, tag = "affliction_chaos_resistance", stats = { "+12% to Chaos Resistance" }, enchant = { @@ -115,6 +126,7 @@ return { ["affliction_chance_to_dodge_attacks"] = { name = "Chance to Suppress Spell Damage", icon = "Art/2DArt/SkillIcons/passives/DodgeAtksNode.png", + id = 50, tag = "affliction_chance_to_dodge_attacks", stats = { "+4% chance to Suppress Spell Damage" }, enchant = { @@ -124,6 +136,7 @@ return { ["affliction_strength"] = { name = "Strength", icon = "Art/2DArt/SkillIcons/passives/plusstrength.png", + id = 51, tag = "affliction_strength", stats = { "+10 to Strength" }, enchant = { @@ -133,6 +146,7 @@ return { ["affliction_dexterity"] = { name = "Dexterity", icon = "Art/2DArt/SkillIcons/passives/plusdexterity.png", + id = 52, tag = "affliction_dexterity", stats = { "+10 to Dexterity" }, enchant = { @@ -142,6 +156,7 @@ return { ["affliction_intelligence"] = { name = "Intelligence", icon = "Art/2DArt/SkillIcons/passives/plusintelligence.png", + id = 53, tag = "affliction_intelligence", stats = { "+10 to Intelligence" }, enchant = { @@ -151,6 +166,7 @@ return { ["affliction_reservation_efficiency_small"] = { name = "Reservation Efficiency", icon = "Art/2DArt/SkillIcons/passives/AuraEffectNode.png", + id = 54, tag = "affliction_reservation_efficiency_small", stats = { "6% increased Mana Reservation Efficiency of Skills" }, enchant = { @@ -160,6 +176,7 @@ return { ["affliction_curse_effect_small"] = { name = "Curse Effect", icon = "Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + id = 55, tag = "affliction_curse_effect_small", stats = { "2% increased Effect of your Curses" }, enchant = { @@ -182,6 +199,7 @@ return { name = "Fire Damage over Time", icon = "Art/2DArt/SkillIcons/passives/FireDamageOverTimeNode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltFireDamageMastery.png", + id = 18, tag = "affliction_fire_damage_over_time_multiplier", stats = { "12% increased Burning Damage" }, enchant = { @@ -192,6 +210,7 @@ return { name = "Chaos Damage over Time", icon = "Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltChaosDamageMastery.png", + id = 19, tag = "affliction_chaos_damage_over_time_multiplier", stats = { "12% increased Chaos Damage over Time" }, enchant = { @@ -202,6 +221,7 @@ return { name = "Physical Damage over Time", icon = "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltBloodMastery.png", + id = 20, tag = "affliction_physical_damage_over_time_multiplier", stats = { "12% increased Physical Damage over Time" }, enchant = { @@ -212,6 +232,7 @@ return { name = "Cold Damage over Time", icon = "Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltColdDamageMastery.png", + id = 21, tag = "affliction_cold_damage_over_time_multiplier", stats = { "12% increased Cold Damage over Time" }, enchant = { @@ -222,6 +243,7 @@ return { name = "Damage over Time", icon = "Art/2DArt/SkillIcons/passives/DamageOverTimeNode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltDamageOverTimeMultiplierMastery.png", + id = 22, tag = "affliction_damage_over_time_multiplier", stats = { "10% increased Damage over Time" }, enchant = { @@ -232,6 +254,7 @@ return { name = "Effect of Non-Damaging Ailments", icon = "Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltNonDamagingAilmentsMastery.png", + id = 23, tag = "affliction_effect_of_non-damaging_ailments", stats = { "10% increased Effect of Non-Damaging Ailments" }, enchant = { @@ -242,6 +265,7 @@ return { name = "Aura Effect (Legacy)", icon = "Art/2DArt/SkillIcons/passives/AuraEffectNode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryAuras.png", + id = 24, tag = "old_do_not_use_affliction_aura_effect", stats = { "3% increased effect of Non-Curse Auras from your Skills" }, enchant = { @@ -252,6 +276,7 @@ return { name = "Curse Effect (Legacy)", icon = "Art/2DArt/SkillIcons/passives/CurseEffectNode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryCurse.png", + id = 25, tag = "old_do_not_use_affliction_curse_effect", stats = { "2% increased Effect of your Curses" }, enchant = { @@ -262,6 +287,7 @@ return { name = "Damage while you have a Herald", icon = "Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltDamageWithHeraldMastery.png", + id = 26, tag = "affliction_damage_while_you_have_a_herald", stats = { "10% increased Damage while affected by a Herald" }, enchant = { @@ -272,6 +298,7 @@ return { name = "Minion Damage while you have a Herald", icon = "Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.png", + id = 27, tag = "affliction_minion_damage_while_you_have_a_herald", stats = { "Minions deal 10% increased Damage while you are affected by a Herald" }, enchant = { @@ -282,6 +309,7 @@ return { name = "Exerted Attack Damage", icon = "Art/2DArt/SkillIcons/passives/IncreasedWarcryNode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltWarcryMastery.png", + id = 28, tag = "affliction_warcry_buff_effect", stats = { "Exerted Attacks deal 20% increased Damage" }, enchant = { @@ -292,6 +320,7 @@ return { name = "Critical Chance", icon = "Art/2DArt/SkillIcons/passives/IncreaseCritChanceNode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupCrit.png", + id = 29, tag = "affliction_critical_chance", stats = { "15% increased Critical Strike Chance" }, enchant = { @@ -302,6 +331,7 @@ return { name = "Minion Life", icon = "Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupMinions.png", + id = 30, tag = "affliction_minion_life", stats = { "Minions have 12% increased maximum Life" }, enchant = { @@ -312,6 +342,7 @@ return { name = "Area Damage", icon = "Art/2DArt/SkillIcons/passives/AreaDmgNode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltAreaDamageMastery.png", + id = 31, tag = "affliction_area_damage", stats = { "10% increased Area Damage" }, enchant = { @@ -322,6 +353,7 @@ return { name = "Projectile Damage", icon = "Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryProjectiles.png", + id = 32, tag = "affliction_projectile_damage", stats = { "10% increased Projectile Damage" }, enchant = { @@ -332,6 +364,7 @@ return { name = "Trap and Mine Damage", icon = "Art/2DArt/SkillIcons/passives/TrapAndMineDmgNode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryTraps.png", + id = 33, tag = "affliction_trap_and_mine_damage", stats = { "12% increased Trap Damage", "12% increased Mine Damage" }, enchant = { @@ -343,6 +376,7 @@ return { name = "Totem Damage", icon = "Art/2DArt/SkillIcons/passives/TotemDmgNode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryTotem.png", + id = 34, tag = "affliction_totem_damage", stats = { "12% increased Totem Damage" }, enchant = { @@ -353,6 +387,7 @@ return { name = "Brand Damage", icon = "Art/2DArt/SkillIcons/passives/BrandDmgNode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryBrand.png", + id = 35, tag = "affliction_brand_damage", stats = { "12% increased Brand Damage" }, enchant = { @@ -363,6 +398,7 @@ return { name = "Channelling Skill Damage", icon = "Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryChannelling.png", + id = 36, tag = "affliction_channelling_skill_damage", stats = { "Channelling Skills deal 12% increased Damage" }, enchant = { @@ -373,6 +409,7 @@ return { name = "Flask Duration", icon = "Art/2DArt/SkillIcons/passives/FlaskDurationnode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryFlasks.png", + id = 37, tag = "affliction_flask_duration", stats = { "6% increased Flask Effect Duration" }, enchant = { @@ -383,6 +420,7 @@ return { name = "Life and Mana recovery from Flasks", icon = "Art/2DArt/SkillIcons/passives/LifeManaFlasksrecoverynode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryFlasks.png", + id = 38, tag = "affliction_life_and_mana_recovery_from_flasks", stats = { "10% increased Life Recovery from Flasks", "10% increased Mana Recovery from Flasks" }, enchant = { @@ -406,6 +444,7 @@ return { name = "Axe and Sword Damage", icon = "Art/2DArt/SkillIcons/passives/NodeAxeandSwordDamage.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupSwordAndAxe.png", + id = 1, tag = "affliction_axe_and_sword_damage", stats = { "Axe Attacks deal 12% increased Damage with Hits and Ailments", "Sword Attacks deal 12% increased Damage with Hits and Ailments" }, enchant = { @@ -417,6 +456,7 @@ return { name = "Mace and Staff Damage", icon = "Art/2DArt/SkillIcons/passives/NodeMaceandStaffDamage.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupMaceAndStaff.png", + id = 2, tag = "affliction_mace_and_staff_damage", stats = { "Staff Attacks deal 12% increased Damage with Hits and Ailments", "Mace or Sceptre Attacks deal 12% increased Damage with Hits and Ailments" }, enchant = { @@ -428,6 +468,7 @@ return { name = "Dagger and Claw Damage", icon = "Art/2DArt/SkillIcons/passives/NodeDaggerandClawDamage.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltDaggerClawDamageMastery.png", + id = 3, tag = "affliction_dagger_and_claw_damage", stats = { "Claw Attacks deal 12% increased Damage with Hits and Ailments", "Dagger Attacks deal 12% increased Damage with Hits and Ailments" }, enchant = { @@ -439,6 +480,7 @@ return { name = "Bow Damage", icon = "Art/2DArt/SkillIcons/passives/NodeBowDamage.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupBow.png", + id = 4, tag = "affliction_bow_damage", stats = { "12% increased Damage with Bows", "12% increased Damage Over Time with Bow Skills" }, enchant = { @@ -450,6 +492,7 @@ return { name = "Wand Damage", icon = "Art/2DArt/SkillIcons/passives/NodeWandDamage.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupWand.png", + id = 5, tag = "affliction_wand_damage", stats = { "Wand Attacks deal 12% increased Damage with Hits and Ailments" }, enchant = { @@ -460,6 +503,7 @@ return { name = "Damage with Two Handed Weapons", icon = "Art/2DArt/SkillIcons/passives/NodeTwoHandedMeleeDamage.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupTwoHands.png", + id = 6, tag = "affliction_damage_with_two_handed_melee_weapons", stats = { "12% increased Damage with Two Handed Weapons" }, enchant = { @@ -470,6 +514,7 @@ return { name = "Attack Damage while Dual Wielding", icon = "Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupDualWield.png", + id = 7, tag = "affliction_attack_damage_while_dual_wielding_", stats = { "12% increased Attack Damage while Dual Wielding" }, enchant = { @@ -480,6 +525,7 @@ return { name = "Attack Damage while holding a Shield", icon = "Art/2DArt/SkillIcons/passives/NodeHoldingShieldDamage.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupShield.png", + id = 8, tag = "affliction_attack_damage_while_holding_a_shield", stats = { "12% increased Attack Damage while holding a Shield" }, enchant = { @@ -490,6 +536,7 @@ return { name = "Attack Damage", icon = "Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.png", + id = 9, tag = "affliction_attack_damage_", stats = { "10% increased Attack Damage" }, enchant = { @@ -500,6 +547,7 @@ return { name = "Spell Damage", icon = "Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupCast.png", + id = 10, tag = "affliction_spell_damage", stats = { "10% increased Spell Damage" }, enchant = { @@ -510,6 +558,7 @@ return { name = "Elemental Damage", icon = "Art/2DArt/SkillIcons/passives/ElementalDamagenode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryElementalDamage.png", + id = 11, tag = "affliction_elemental_damage", stats = { "10% increased Elemental Damage" }, enchant = { @@ -520,6 +569,7 @@ return { name = "Physical Damage", icon = "Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryPhysicalDamage.png", + id = 12, tag = "affliction_physical_damage", stats = { "12% increased Physical Damage" }, enchant = { @@ -530,6 +580,7 @@ return { name = "Fire Damage", icon = "Art/2DArt/SkillIcons/passives/FireDamagenode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupFire.png", + id = 13, tag = "affliction_fire_damage", stats = { "12% increased Fire Damage" }, enchant = { @@ -540,6 +591,7 @@ return { name = "Lightning Damage", icon = "Art/2DArt/SkillIcons/passives/LightningDamagenode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupLightning.png", + id = 14, tag = "affliction_lightning_damage", stats = { "12% increased Lightning Damage" }, enchant = { @@ -550,6 +602,7 @@ return { name = "Cold Damage", icon = "Art/2DArt/SkillIcons/passives/ColdDamagenode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupCold.png", + id = 15, tag = "affliction_cold_damage", stats = { "12% increased Cold Damage" }, enchant = { @@ -560,6 +613,7 @@ return { name = "Chaos Damage", icon = "Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryChaos.png", + id = 16, tag = "affliction_chaos_damage", stats = { "12% increased Chaos Damage" }, enchant = { @@ -570,6 +624,7 @@ return { name = "Minion Damage", icon = "Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNode.png", masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupMinions.png", + id = 17, tag = "affliction_minion_damage", stats = { "Minions deal 10% increased Damage" }, enchant = { @@ -580,307 +635,307 @@ return { }, }, notableSortOrder = { - ["Prodigious Defence"] = 11259, - ["Advance Guard"] = 11260, - ["Gladiatorial Combat"] = 11261, - ["Strike Leader"] = 11262, - ["Powerful Ward"] = 11263, - ["Enduring Ward"] = 11264, - ["Gladiator's Fortitude"] = 11265, - ["Precise Retaliation"] = 11266, - ["Veteran Defender"] = 11267, - ["Iron Breaker"] = 11268, - ["Deep Cuts"] = 11269, - ["Master the Fundamentals"] = 11270, - ["Force Multiplier"] = 11271, - ["Furious Assault"] = 11272, - ["Vicious Skewering"] = 11273, - ["Grim Oath"] = 11274, - ["Battle-Hardened"] = 11275, - ["Replenishing Presence"] = 11276, - ["Master of Command"] = 11277, - ["Spiteful Presence"] = 11278, - ["Purposeful Harbinger"] = 11279, - ["Destructive Aspect"] = 11280, - ["Electric Presence"] = 11281, - ["Volatile Presence"] = 11282, - ["Righteous Path"] = 11283, - ["Skullbreaker"] = 11284, - ["Pressure Points"] = 11285, - ["Overwhelming Malice"] = 11286, - ["Magnifier"] = 11287, - ["Savage Response"] = 11288, - ["Eye of the Storm"] = 11289, - ["Basics of Pain"] = 11290, - ["Quick Getaway"] = 11291, - ["Assert Dominance"] = 11292, - ["Vast Power"] = 11293, - ["Powerful Assault"] = 11294, - ["Intensity"] = 11295, - ["Titanic Swings"] = 11296, - ["Towering Threat"] = 11297, - ["Ancestral Echo"] = 11298, - ["Ancestral Reach"] = 11299, - ["Ancestral Might"] = 11300, - ["Ancestral Preservation"] = 11301, - ["Snaring Spirits"] = 11302, - ["Sleepless Sentries"] = 11303, - ["Ancestral Guidance"] = 11304, - ["Ancestral Inspiration"] = 11305, - ["Vital Focus"] = 11306, - ["Unrestrained Focus"] = 11307, - ["Unwavering Focus"] = 11308, - ["Enduring Focus"] = 11309, - ["Precise Focus"] = 11310, - ["Stoic Focus"] = 11311, - ["Hex Breaker"] = 11312, - ["Arcane Adept"] = 11313, - ["Distilled Perfection"] = 11314, - ["Spiked Concoction"] = 11315, - ["Fasting"] = 11316, - ["Mender's Wellspring"] = 11317, - ["Special Reserve"] = 11318, - ["Numbing Elixir"] = 11319, - ["Mob Mentality"] = 11320, - ["Cry Wolf"] = 11321, - ["Haunting Shout"] = 11322, - ["Lead By Example"] = 11323, - ["Provocateur"] = 11324, - ["Warning Call"] = 11325, - ["Rattling Bellow"] = 11326, - ["Bloodscent"] = 11327, - ["Run Through"] = 11328, - ["Wound Aggravation"] = 11329, - ["Overlord"] = 11330, - ["Expansive Might"] = 11331, - ["Weight Advantage"] = 11332, - ["Wind-up"] = 11333, - ["Fan of Blades"] = 11334, - ["Disease Vector"] = 11335, - ["Arcing Shot"] = 11336, - ["Tempered Arrowheads"] = 11337, - ["Broadside"] = 11338, - ["Explosive Force"] = 11339, - ["Opportunistic Fusilade"] = 11340, - ["Storm's Hand"] = 11341, - ["Battlefield Dominator"] = 11342, - ["Martial Mastery"] = 11343, - ["Surefooted Striker"] = 11344, - ["Graceful Execution"] = 11345, - ["Brutal Infamy"] = 11346, - ["Fearsome Warrior"] = 11347, - ["Combat Rhythm"] = 11348, - ["Hit and Run"] = 11349, - ["Insatiable Killer"] = 11350, - ["Mage Bane"] = 11351, - ["Martial Momentum"] = 11352, - ["Deadly Repartee"] = 11353, - ["Quick and Deadly"] = 11354, - ["Smite the Weak"] = 11355, - ["Heavy Hitter"] = 11356, - ["Martial Prowess"] = 11357, - ["Calamitous"] = 11358, - ["Devastator"] = 11359, - ["Fuel the Fight"] = 11360, - ["Drive the Destruction"] = 11361, - ["Feed the Fury"] = 11362, - ["Seal Mender"] = 11363, - ["Conjured Wall"] = 11364, - ["Arcane Heroism"] = 11365, - ["Practiced Caster"] = 11366, - ["Burden Projection"] = 11367, - ["Thaumophage"] = 11368, - ["Essence Rush"] = 11369, - ["Sap Psyche"] = 11370, - ["Sadist"] = 11371, - ["Corrosive Elements"] = 11372, - ["Doryani's Lesson"] = 11373, - ["Disorienting Display"] = 11374, - ["Prismatic Heart"] = 11375, - ["Widespread Destruction"] = 11376, - ["Master of Fire"] = 11377, - ["Smoking Remains"] = 11378, - ["Cremator"] = 11379, - ["Snowstorm"] = 11380, - ["Storm Drinker"] = 11381, - ["Paralysis"] = 11382, - ["Supercharge"] = 11383, - ["Blanketed Snow"] = 11384, - ["Cold to the Core"] = 11385, - ["Cold-Blooded Killer"] = 11386, - ["Touch of Cruelty"] = 11387, - ["Unwaveringly Evil"] = 11388, - ["Unspeakable Gifts"] = 11389, - ["Dark Ideation"] = 11390, - ["Unholy Grace"] = 11391, - ["Wicked Pall"] = 11392, - ["Renewal"] = 11393, - ["Raze and Pillage"] = 11394, - ["Rotten Claws"] = 11395, - ["Call to the Slaughter"] = 11396, - ["Skeletal Atrophy"] = 11689, - ["Hulking Corpses"] = 11397, - ["Vicious Bite"] = 11398, - ["Primordial Bond"] = 11399, - ["Blowback"] = 11400, - ["Fan the Flames"] = 11401, - ["Cooked Alive"] = 11402, - ["Burning Bright"] = 11403, - ["Wrapped in Flame"] = 11404, - ["Vivid Hues"] = 11405, - ["Rend"] = 11406, - ["Disorienting Wounds"] = 11407, - ["Compound Injury"] = 11408, - ["Blood Artist"] = 14101, - ["Phlebotomist"] = 14102, - ["Septic Spells"] = 11409, - ["Low Tolerance"] = 11410, - ["Steady Torment"] = 11411, - ["Eternal Suffering"] = 11412, - ["Eldritch Inspiration"] = 11413, - ["Wasting Affliction"] = 11414, - ["Haemorrhage"] = 11415, - ["Flow of Life"] = 11416, - ["Exposure Therapy"] = 11417, - ["Brush with Death"] = 11418, - ["Vile Reinvigoration"] = 11419, - ["Circling Oblivion"] = 11420, - ["Brewed for Potency"] = 11421, - ["Astonishing Affliction"] = 11422, - ["Cold Conduction"] = 11423, - ["Inspired Oppression"] = 11424, - ["Chilling Presence"] = 11425, - ["Deep Chill"] = 11426, - ["Blast-Freeze"] = 11427, - ["Thunderstruck"] = 11428, - ["Stormrider"] = 11429, - ["Overshock"] = 11430, - ["Evil Eye"] = 11431, - ["Evil Eye"] = 11432, - ["Forbidden Words"] = 11433, - ["Doedre's Spite"] = 11434, - ["Victim Maker"] = 11435, - ["Master of Fear"] = 11436, - ["Wish for Death"] = 11437, - ["Heraldry"] = 11438, - ["Endbringer"] = 11439, - ["Cult-Leader"] = 11440, - ["Empowered Envoy"] = 11441, - ["Dark Messenger"] = 11442, - ["Agent of Destruction"] = 11443, - ["Lasting Impression"] = 11444, - ["Self-Fulfilling Prophecy"] = 11445, - ["Invigorating Portents"] = 11446, - ["Pure Agony"] = 11447, - ["Disciples"] = 11448, - ["Dread March"] = 11449, - ["Blessed Rebirth"] = 11450, - ["Life from Death"] = 11451, - ["Feasting Fiends"] = 11452, - ["Bodyguards"] = 11453, - ["Follow-Through"] = 11454, - ["Streamlined"] = 11455, - ["Shrieking Bolts"] = 11456, - ["Eye to Eye"] = 11457, - ["Repeater"] = 11458, - ["Aerodynamics"] = 11459, - ["Chip Away"] = 11460, - ["Seeker Runes"] = 11461, - ["Remarkable"] = 11462, - ["Brand Loyalty"] = 11463, - ["Holy Conquest"] = 11464, - ["Grand Design"] = 11465, - ["Set and Forget"] = 11466, - ["Expert Sabotage"] = 11467, - ["Guerilla Tactics"] = 11468, - ["Expendability"] = 11469, - ["Arcane Pyrotechnics"] = 11470, - ["Surprise Sabotage"] = 11471, - ["Careful Handling"] = 11472, - ["Peak Vigour"] = 11473, - ["Fettle"] = 11474, - ["Feast of Flesh"] = 11475, - ["Sublime Sensation"] = 11476, - ["Surging Vitality"] = 11477, - ["Peace Amidst Chaos"] = 11478, - ["Adrenaline"] = 11479, - ["Wall of Muscle"] = 11480, - ["Mindfulness"] = 11481, - ["Liquid Inspiration"] = 11482, - ["Openness"] = 11483, - ["Daring Ideas"] = 11484, - ["Clarity of Purpose"] = 11485, - ["Scintillating Idea"] = 11486, - ["Holistic Health"] = 11487, - ["Genius"] = 11488, - ["Improvisor"] = 11489, - ["Stubborn Student"] = 11490, - ["Savour the Moment"] = 11491, - ["Energy From Naught"] = 11492, - ["Will Shaper"] = 11493, - ["Spring Back"] = 11494, - ["Conservation of Energy"] = 11495, - ["Heart of Iron"] = 11496, - ["Prismatic Carapace"] = 11497, - ["Militarism"] = 11498, - ["Second Skin"] = 11499, - ["Dragon Hunter"] = 11500, - ["Enduring Composure"] = 11501, - ["Prismatic Dance"] = 11502, - ["Natural Vigour"] = 11503, - ["Untouchable"] = 11504, - ["Shifting Shadow"] = 11505, - ["Readiness"] = 11506, - ["Confident Combatant"] = 11507, - ["Flexible Sentry"] = 11508, - ["Vicious Guard"] = 11509, - ["Mystical Ward"] = 11510, - ["Rote Reinforcement"] = 11511, - ["Mage Hunter"] = 11512, - ["Riot Queller"] = 11513, - ["One with the Shield"] = 11514, - ["Aerialist"] = 11515, - ["Elegant Form"] = 11516, - ["Darting Movements"] = 11517, - ["No Witnesses"] = 11518, - ["Molten One's Mark"] = 11519, - ["Fire Attunement"] = 11520, - ["Pure Might"] = 11521, - ["Blacksmith"] = 11522, - ["Non-Flammable"] = 11523, - ["Winter Prowler"] = 11524, - ["Hibernator"] = 11525, - ["Pure Guile"] = 11526, - ["Alchemist"] = 11527, - ["Antifreeze"] = 11528, - ["Wizardry"] = 11529, - ["Capacitor"] = 11530, - ["Pure Aptitude"] = 11531, - ["Sage"] = 11532, - ["Insulated"] = 11533, - ["Born of Chaos"] = 11534, - ["Antivenom"] = 11535, - ["Rot-Resistant"] = 11536, - ["Blessed"] = 11537, - ["Student of Decay"] = 11538, - ["Lord of Drought"] = 12386, - ["Blizzard Caller"] = 12387, - ["Tempt the Storm"] = 12388, - ["Misery Everlasting"] = 12389, - ["Exploit Weakness"] = 12390, - ["Self-Control"] = 12395, - ["Uncompromising"] = 12396, - ["Sublime Form"] = 12397, - ["Mortifying Aspect"] = 12453, - ["Frantic Aspect"] = 12454, - ["Introspection"] = 12455, - ["Hound's Mark"] = 12391, - ["Doedre's Gluttony"] = 12392, - ["Doedre's Apathy"] = 12393, - ["Master of the Maelstrom"] = 12394, - ["Aggressive Defence"] = 15566, - ["Holy Word"] = 22668, - ["Fiery Aegis"] = 22669, + ["Prodigious Defence"] = 11256, + ["Advance Guard"] = 11257, + ["Gladiatorial Combat"] = 11258, + ["Strike Leader"] = 11259, + ["Powerful Ward"] = 11260, + ["Enduring Ward"] = 11261, + ["Gladiator's Fortitude"] = 11262, + ["Precise Retaliation"] = 11263, + ["Veteran Defender"] = 11264, + ["Iron Breaker"] = 11265, + ["Deep Cuts"] = 11266, + ["Master the Fundamentals"] = 11267, + ["Force Multiplier"] = 11268, + ["Furious Assault"] = 11269, + ["Vicious Skewering"] = 11270, + ["Grim Oath"] = 11271, + ["Battle-Hardened"] = 11272, + ["Replenishing Presence"] = 11273, + ["Master of Command"] = 11274, + ["Spiteful Presence"] = 11275, + ["Purposeful Harbinger"] = 11276, + ["Destructive Aspect"] = 11277, + ["Electric Presence"] = 11278, + ["Volatile Presence"] = 11279, + ["Righteous Path"] = 11280, + ["Skullbreaker"] = 11281, + ["Pressure Points"] = 11282, + ["Overwhelming Malice"] = 11283, + ["Magnifier"] = 11284, + ["Savage Response"] = 11285, + ["Eye of the Storm"] = 11286, + ["Basics of Pain"] = 11287, + ["Quick Getaway"] = 11288, + ["Assert Dominance"] = 11289, + ["Vast Power"] = 11290, + ["Powerful Assault"] = 11291, + ["Intensity"] = 11292, + ["Titanic Swings"] = 11293, + ["Towering Threat"] = 11294, + ["Ancestral Echo"] = 11295, + ["Ancestral Reach"] = 11296, + ["Ancestral Might"] = 11297, + ["Ancestral Preservation"] = 11298, + ["Snaring Spirits"] = 11299, + ["Sleepless Sentries"] = 11300, + ["Ancestral Guidance"] = 11301, + ["Ancestral Inspiration"] = 11302, + ["Vital Focus"] = 11303, + ["Unrestrained Focus"] = 11304, + ["Unwavering Focus"] = 11305, + ["Enduring Focus"] = 11306, + ["Precise Focus"] = 11307, + ["Stoic Focus"] = 11308, + ["Hex Breaker"] = 11309, + ["Arcane Adept"] = 11310, + ["Distilled Perfection"] = 11311, + ["Spiked Concoction"] = 11312, + ["Fasting"] = 11313, + ["Mender's Wellspring"] = 11314, + ["Special Reserve"] = 11315, + ["Numbing Elixir"] = 11316, + ["Mob Mentality"] = 11317, + ["Cry Wolf"] = 11318, + ["Haunting Shout"] = 11319, + ["Lead By Example"] = 11320, + ["Provocateur"] = 11321, + ["Warning Call"] = 11322, + ["Rattling Bellow"] = 11323, + ["Bloodscent"] = 11324, + ["Run Through"] = 11325, + ["Wound Aggravation"] = 11326, + ["Overlord"] = 11327, + ["Expansive Might"] = 11328, + ["Weight Advantage"] = 11329, + ["Wind-up"] = 11330, + ["Fan of Blades"] = 11331, + ["Disease Vector"] = 11332, + ["Arcing Shot"] = 11333, + ["Tempered Arrowheads"] = 11334, + ["Broadside"] = 11335, + ["Explosive Force"] = 11336, + ["Opportunistic Fusilade"] = 11337, + ["Storm's Hand"] = 11338, + ["Battlefield Dominator"] = 11339, + ["Martial Mastery"] = 11340, + ["Surefooted Striker"] = 11341, + ["Graceful Execution"] = 11342, + ["Brutal Infamy"] = 11343, + ["Fearsome Warrior"] = 11344, + ["Combat Rhythm"] = 11345, + ["Hit and Run"] = 11346, + ["Insatiable Killer"] = 11347, + ["Mage Bane"] = 11348, + ["Martial Momentum"] = 11349, + ["Deadly Repartee"] = 11350, + ["Quick and Deadly"] = 11351, + ["Smite the Weak"] = 11352, + ["Heavy Hitter"] = 11353, + ["Martial Prowess"] = 11354, + ["Calamitous"] = 11355, + ["Devastator"] = 11356, + ["Fuel the Fight"] = 11357, + ["Drive the Destruction"] = 11358, + ["Feed the Fury"] = 11359, + ["Seal Mender"] = 11360, + ["Conjured Wall"] = 11361, + ["Arcane Heroism"] = 11362, + ["Practiced Caster"] = 11363, + ["Burden Projection"] = 11364, + ["Thaumophage"] = 11365, + ["Essence Rush"] = 11366, + ["Sap Psyche"] = 11367, + ["Sadist"] = 11368, + ["Corrosive Elements"] = 11369, + ["Doryani's Lesson"] = 11370, + ["Disorienting Display"] = 11371, + ["Prismatic Heart"] = 11372, + ["Widespread Destruction"] = 11373, + ["Master of Fire"] = 11374, + ["Smoking Remains"] = 11375, + ["Cremator"] = 11376, + ["Snowstorm"] = 11377, + ["Storm Drinker"] = 11378, + ["Paralysis"] = 11379, + ["Supercharge"] = 11380, + ["Blanketed Snow"] = 11381, + ["Cold to the Core"] = 11382, + ["Cold-Blooded Killer"] = 11383, + ["Touch of Cruelty"] = 11384, + ["Unwaveringly Evil"] = 11385, + ["Unspeakable Gifts"] = 11386, + ["Dark Ideation"] = 11387, + ["Unholy Grace"] = 11388, + ["Wicked Pall"] = 11389, + ["Renewal"] = 11390, + ["Raze and Pillage"] = 11391, + ["Rotten Claws"] = 11392, + ["Call to the Slaughter"] = 11393, + ["Skeletal Atrophy"] = 11686, + ["Hulking Corpses"] = 11394, + ["Vicious Bite"] = 11395, + ["Primordial Bond"] = 11396, + ["Blowback"] = 11397, + ["Fan the Flames"] = 11398, + ["Cooked Alive"] = 11399, + ["Burning Bright"] = 11400, + ["Wrapped in Flame"] = 11401, + ["Vivid Hues"] = 11402, + ["Rend"] = 11403, + ["Disorienting Wounds"] = 11404, + ["Compound Injury"] = 11405, + ["Blood Artist"] = 14098, + ["Phlebotomist"] = 14099, + ["Septic Spells"] = 11406, + ["Low Tolerance"] = 11407, + ["Steady Torment"] = 11408, + ["Eternal Suffering"] = 11409, + ["Eldritch Inspiration"] = 11410, + ["Wasting Affliction"] = 11411, + ["Haemorrhage"] = 11412, + ["Flow of Life"] = 11413, + ["Exposure Therapy"] = 11414, + ["Brush with Death"] = 11415, + ["Vile Reinvigoration"] = 11416, + ["Circling Oblivion"] = 11417, + ["Brewed for Potency"] = 11418, + ["Astonishing Affliction"] = 11419, + ["Cold Conduction"] = 11420, + ["Inspired Oppression"] = 11421, + ["Chilling Presence"] = 11422, + ["Deep Chill"] = 11423, + ["Blast-Freeze"] = 11424, + ["Thunderstruck"] = 11425, + ["Stormrider"] = 11426, + ["Overshock"] = 11427, + ["Evil Eye"] = 11428, + ["Evil Eye"] = 11429, + ["Forbidden Words"] = 11430, + ["Doedre's Spite"] = 11431, + ["Victim Maker"] = 11432, + ["Master of Fear"] = 11433, + ["Wish for Death"] = 11434, + ["Heraldry"] = 11435, + ["Endbringer"] = 11436, + ["Cult-Leader"] = 11437, + ["Empowered Envoy"] = 11438, + ["Dark Messenger"] = 11439, + ["Agent of Destruction"] = 11440, + ["Lasting Impression"] = 11441, + ["Self-Fulfilling Prophecy"] = 11442, + ["Invigorating Portents"] = 11443, + ["Pure Agony"] = 11444, + ["Disciples"] = 11445, + ["Dread March"] = 11446, + ["Blessed Rebirth"] = 11447, + ["Life from Death"] = 11448, + ["Feasting Fiends"] = 11449, + ["Bodyguards"] = 11450, + ["Follow-Through"] = 11451, + ["Streamlined"] = 11452, + ["Shrieking Bolts"] = 11453, + ["Eye to Eye"] = 11454, + ["Repeater"] = 11455, + ["Aerodynamics"] = 11456, + ["Chip Away"] = 11457, + ["Seeker Runes"] = 11458, + ["Remarkable"] = 11459, + ["Brand Loyalty"] = 11460, + ["Holy Conquest"] = 11461, + ["Grand Design"] = 11462, + ["Set and Forget"] = 11463, + ["Expert Sabotage"] = 11464, + ["Guerilla Tactics"] = 11465, + ["Expendability"] = 11466, + ["Arcane Pyrotechnics"] = 11467, + ["Surprise Sabotage"] = 11468, + ["Careful Handling"] = 11469, + ["Peak Vigour"] = 11470, + ["Fettle"] = 11471, + ["Feast of Flesh"] = 11472, + ["Sublime Sensation"] = 11473, + ["Surging Vitality"] = 11474, + ["Peace Amidst Chaos"] = 11475, + ["Adrenaline"] = 11476, + ["Wall of Muscle"] = 11477, + ["Mindfulness"] = 11478, + ["Liquid Inspiration"] = 11479, + ["Openness"] = 11480, + ["Daring Ideas"] = 11481, + ["Clarity of Purpose"] = 11482, + ["Scintillating Idea"] = 11483, + ["Holistic Health"] = 11484, + ["Genius"] = 11485, + ["Improvisor"] = 11486, + ["Stubborn Student"] = 11487, + ["Savour the Moment"] = 11488, + ["Energy From Naught"] = 11489, + ["Will Shaper"] = 11490, + ["Spring Back"] = 11491, + ["Conservation of Energy"] = 11492, + ["Heart of Iron"] = 11493, + ["Prismatic Carapace"] = 11494, + ["Militarism"] = 11495, + ["Second Skin"] = 11496, + ["Dragon Hunter"] = 11497, + ["Enduring Composure"] = 11498, + ["Prismatic Dance"] = 11499, + ["Natural Vigour"] = 11500, + ["Untouchable"] = 11501, + ["Shifting Shadow"] = 11502, + ["Readiness"] = 11503, + ["Confident Combatant"] = 11504, + ["Flexible Sentry"] = 11505, + ["Vicious Guard"] = 11506, + ["Mystical Ward"] = 11507, + ["Rote Reinforcement"] = 11508, + ["Mage Hunter"] = 11509, + ["Riot Queller"] = 11510, + ["One with the Shield"] = 11511, + ["Aerialist"] = 11512, + ["Elegant Form"] = 11513, + ["Darting Movements"] = 11514, + ["No Witnesses"] = 11515, + ["Molten One's Mark"] = 11516, + ["Fire Attunement"] = 11517, + ["Pure Might"] = 11518, + ["Blacksmith"] = 11519, + ["Non-Flammable"] = 11520, + ["Winter Prowler"] = 11521, + ["Hibernator"] = 11522, + ["Pure Guile"] = 11523, + ["Alchemist"] = 11524, + ["Antifreeze"] = 11525, + ["Wizardry"] = 11526, + ["Capacitor"] = 11527, + ["Pure Aptitude"] = 11528, + ["Sage"] = 11529, + ["Insulated"] = 11530, + ["Born of Chaos"] = 11531, + ["Antivenom"] = 11532, + ["Rot-Resistant"] = 11533, + ["Blessed"] = 11534, + ["Student of Decay"] = 11535, + ["Lord of Drought"] = 12383, + ["Blizzard Caller"] = 12384, + ["Tempt the Storm"] = 12385, + ["Misery Everlasting"] = 12386, + ["Exploit Weakness"] = 12387, + ["Self-Control"] = 12392, + ["Uncompromising"] = 12393, + ["Sublime Form"] = 12394, + ["Mortifying Aspect"] = 12450, + ["Frantic Aspect"] = 12451, + ["Introspection"] = 12452, + ["Hound's Mark"] = 12388, + ["Doedre's Gluttony"] = 12389, + ["Doedre's Apathy"] = 12390, + ["Master of the Maelstrom"] = 12391, + ["Aggressive Defence"] = 15563, + ["Holy Word"] = 22663, + ["Fiery Aegis"] = 22664, }, keystones = { "Disciple of Kitava", diff --git a/src/Data/Crucible.lua b/src/Data/Crucible.lua index 3bb94d38e67..9cfd8b7c5b2 100644 --- a/src/Data/Crucible.lua +++ b/src/Data/Crucible.lua @@ -2,2495 +2,2495 @@ -- Item data (c) Grinding Gear Games return { - ["WeaponTreeAddedPhysicalHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 2 to 7 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 3 to 11 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 6 to 12 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 6 to 16 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 8 to 19 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 12 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 6 to 16 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 9 to 20 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 11 to 25 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 14 to 33 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", statOrder = { 1276 }, level = 1, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2"] = { type = "Spawn", tier = 2, "Adds 2 to 8 Physical Damage", statOrder = { 1276 }, level = 21, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", statOrder = { 1276 }, level = 46, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", statOrder = { 1276 }, level = 65, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", statOrder = { 1276 }, level = 77, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2h1"] = { type = "Spawn", tier = 1, "Adds 4 to 9 Physical Damage", statOrder = { 1276 }, level = 1, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2h2"] = { type = "Spawn", tier = 2, "Adds 6 to 11 Physical Damage", statOrder = { 1276 }, level = 21, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2h3"] = { type = "Spawn", tier = 3, "Adds 7 to 16 Physical Damage", statOrder = { 1276 }, level = 46, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2h4"] = { type = "Spawn", tier = 4, "Adds 8 to 19 Physical Damage", statOrder = { 1276 }, level = 65, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2h5"] = { type = "Spawn", tier = 5, "Adds 11 to 26 Physical Damage", statOrder = { 1276 }, level = 77, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowFireConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowFireConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowFireConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowFireConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowFireConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowFireConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowFireConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowFireConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowFireConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowFireConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowColdConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowColdConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowColdConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowColdConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowColdConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowColdConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowColdConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowColdConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowColdConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowColdConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowLightningConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowLightningConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowLightningConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowLightningConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowLightningConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowLightningConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowLightningConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowLightningConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowLightningConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowLightningConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowChaosConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowChaosConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowChaosConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowChaosConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowChaosConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 12, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowChaosConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowChaosConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowChaosConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowChaosConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowChaosConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 12, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowRandomElementConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowRandomElementConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowRandomElementConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowRandomElementConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowRandomElementConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 12, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowRandomElementConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowRandomElementConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowRandomElementConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowRandomElementConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowRandomElementConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 12, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowBleedChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowBleedChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowBleedChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowBleedChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowBleedChance5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowBleedChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowBleedChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowBleedChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowBleedChance4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowBleedChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowImpaleChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowImpaleChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowImpaleChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowImpaleChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowImpaleChance5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowImpaleChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowImpaleChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowImpaleChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowImpaleChance4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowImpaleChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 5 to 9 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 1, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 9 to 13 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 26, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 16 to 26 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 42, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 27 to 42 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 62, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 55 to 83 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 82, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 9 to 14 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 1, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 16 to 24 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 26, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 30 to 47 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 42, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 52 to 77 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 62, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 102 to 153 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 82, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Fire Damage", statOrder = { 1362 }, level = 1, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2"] = { type = "Spawn", tier = 2, "Adds 7 to 10 Fire Damage", statOrder = { 1362 }, level = 26, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire3"] = { type = "Spawn", tier = 3, "Adds 13 to 18 Fire Damage", statOrder = { 1362 }, level = 42, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire4"] = { type = "Spawn", tier = 4, "Adds 22 to 32 Fire Damage", statOrder = { 1362 }, level = 62, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire5"] = { type = "Spawn", tier = 5, "Adds 42 to 63 Fire Damage", statOrder = { 1362 }, level = 82, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2h1"] = { type = "Spawn", tier = 1, "Adds 8 to 10 Fire Damage", statOrder = { 1362 }, level = 1, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2h2"] = { type = "Spawn", tier = 2, "Adds 13 to 19 Fire Damage", statOrder = { 1362 }, level = 26, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2h3"] = { type = "Spawn", tier = 3, "Adds 24 to 35 Fire Damage", statOrder = { 1362 }, level = 42, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2h4"] = { type = "Spawn", tier = 4, "Adds 39 to 61 Fire Damage", statOrder = { 1362 }, level = 62, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2h5"] = { type = "Spawn", tier = 5, "Adds 78 to 118 Fire Damage", statOrder = { 1362 }, level = 82, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Fire Damage", "10% chance to Ignite", statOrder = { 1362, 2026 }, level = 1, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Fire Damage", "10% chance to Ignite", statOrder = { 1362, 2026 }, level = 26, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 12 Fire Damage", "10% chance to Ignite", statOrder = { 1362, 2026 }, level = 42, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 12 to 19 Fire Damage", "10% chance to Ignite", statOrder = { 1362, 2026 }, level = 62, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 25 to 39 Fire Damage", "10% chance to Ignite", statOrder = { 1362, 2026 }, level = 82, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 4 to 9 Fire Damage", "20% chance to Ignite", statOrder = { 1362, 2026 }, level = 1, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Fire Damage", "20% chance to Ignite", statOrder = { 1362, 2026 }, level = 26, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 13 to 22 Fire Damage", "20% chance to Ignite", statOrder = { 1362, 2026 }, level = 42, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 23 to 36 Fire Damage", "20% chance to Ignite", statOrder = { 1362, 2026 }, level = 62, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 48 to 71 Fire Damage", "20% chance to Ignite", statOrder = { 1362, 2026 }, level = 82, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 1 to 5 Fire Damage", statOrder = { 58, 1362 }, level = 10, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 3 to 6 Fire Damage", statOrder = { 58, 1362 }, level = 30, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 7 to 12 Fire Damage", statOrder = { 58, 1362 }, level = 48, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 12 to 19 Fire Damage", statOrder = { 58, 1362 }, level = 66, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 25 to 39 Fire Damage", statOrder = { 58, 1362 }, level = 84, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 4 to 9 Fire Damage", statOrder = { 58, 1362 }, level = 10, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 7 to 11 Fire Damage", statOrder = { 58, 1362 }, level = 30, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 13 to 22 Fire Damage", statOrder = { 58, 1362 }, level = 48, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 23 to 36 Fire Damage", statOrder = { 58, 1362 }, level = 66, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 48 to 71 Fire Damage", statOrder = { 58, 1362 }, level = 84, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 4 to 9 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 1, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 26, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 15 to 24 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 42, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 26 to 39 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 62, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 52 to 78 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 82, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 8 to 14 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 1, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 14 to 23 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 26, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 28 to 44 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 42, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 47 to 73 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 62, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 95 to 144 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 82, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Cold Damage", statOrder = { 1371 }, level = 1, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2"] = { type = "Spawn", tier = 2, "Adds 5 to 10 Cold Damage", statOrder = { 1371 }, level = 26, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold3"] = { type = "Spawn", tier = 3, "Adds 12 to 18 Cold Damage", statOrder = { 1371 }, level = 42, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold4"] = { type = "Spawn", tier = 4, "Adds 19 to 30 Cold Damage", statOrder = { 1371 }, level = 62, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold5"] = { type = "Spawn", tier = 5, "Adds 41 to 60 Cold Damage", statOrder = { 1371 }, level = 82, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2h1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Cold Damage", statOrder = { 1371 }, level = 1, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2h2"] = { type = "Spawn", tier = 2, "Adds 10 to 17 Cold Damage", statOrder = { 1371 }, level = 26, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2h3"] = { type = "Spawn", tier = 3, "Adds 21 to 34 Cold Damage", statOrder = { 1371 }, level = 42, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2h4"] = { type = "Spawn", tier = 4, "Adds 37 to 55 Cold Damage", statOrder = { 1371 }, level = 62, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2h5"] = { type = "Spawn", tier = 5, "Adds 74 to 111 Cold Damage", statOrder = { 1371 }, level = 82, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Cold Damage", "10% chance to Freeze", statOrder = { 1371, 2029 }, level = 1, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Cold Damage", "10% chance to Freeze", statOrder = { 1371, 2029 }, level = 26, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Cold Damage", "10% chance to Freeze", statOrder = { 1371, 2029 }, level = 42, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 12 to 19 Cold Damage", "10% chance to Freeze", statOrder = { 1371, 2029 }, level = 62, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 24 to 35 Cold Damage", "10% chance to Freeze", statOrder = { 1371, 2029 }, level = 82, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Cold Damage", "20% chance to Freeze", statOrder = { 1371, 2029 }, level = 1, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Cold Damage", "20% chance to Freeze", statOrder = { 1371, 2029 }, level = 26, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 13 to 21 Cold Damage", "20% chance to Freeze", statOrder = { 1371, 2029 }, level = 42, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 23 to 35 Cold Damage", "20% chance to Freeze", statOrder = { 1371, 2029 }, level = 62, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 45 to 66 Cold Damage", "20% chance to Freeze", statOrder = { 1371, 2029 }, level = 82, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 10, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 30, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 48, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 12 to 19 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 66, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 24 to 35 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 84, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 10, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 30, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 13 to 21 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 48, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 23 to 35 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 66, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 45 to 66 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 84, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningHighIncreasedDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 12 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 1, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningHighIncreasedDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 20 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 26, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningHighIncreasedDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 1 to 41 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 42, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningHighIncreasedDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 3 to 66 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 62, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningHighIncreasedDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 7 to 132 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 82, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 21 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 1, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 38 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 26, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 3 to 75 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 42, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 6 to 124 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 62, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 13 to 242 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 82, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning1"] = { type = "Spawn", tier = 1, "Adds 1 to 9 Lightning Damage", statOrder = { 1382 }, level = 1, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2"] = { type = "Spawn", tier = 2, "Adds 1 to 17 Lightning Damage", statOrder = { 1382 }, level = 26, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning3"] = { type = "Spawn", tier = 3, "Adds 1 to 30 Lightning Damage", statOrder = { 1382 }, level = 42, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning4"] = { type = "Spawn", tier = 4, "Adds 3 to 51 Lightning Damage", statOrder = { 1382 }, level = 62, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning5"] = { type = "Spawn", tier = 5, "Adds 6 to 101 Lightning Damage", statOrder = { 1382 }, level = 82, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2h1"] = { type = "Spawn", tier = 1, "Adds 1 to 16 Lightning Damage", statOrder = { 1382 }, level = 1, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2h2"] = { type = "Spawn", tier = 2, "Adds 1 to 29 Lightning Damage", statOrder = { 1382 }, level = 26, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2h3"] = { type = "Spawn", tier = 3, "Adds 3 to 58 Lightning Damage", statOrder = { 1382 }, level = 42, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2h4"] = { type = "Spawn", tier = 4, "Adds 4 to 94 Lightning Damage", statOrder = { 1382 }, level = 62, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2h5"] = { type = "Spawn", tier = 5, "Adds 10 to 186 Lightning Damage", statOrder = { 1382 }, level = 82, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Lightning Damage", "10% chance to Shock", statOrder = { 1382, 2033 }, level = 1, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 10 Lightning Damage", "10% chance to Shock", statOrder = { 1382, 2033 }, level = 26, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 18 Lightning Damage", "10% chance to Shock", statOrder = { 1382, 2033 }, level = 42, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 31 Lightning Damage", "10% chance to Shock", statOrder = { 1382, 2033 }, level = 62, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 3 to 60 Lightning Damage", "10% chance to Shock", statOrder = { 1382, 2033 }, level = 82, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 10 Lightning Damage", "20% chance to Shock", statOrder = { 1382, 2033 }, level = 1, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 19 Lightning Damage", "20% chance to Shock", statOrder = { 1382, 2033 }, level = 26, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 34 Lightning Damage", "20% chance to Shock", statOrder = { 1382, 2033 }, level = 42, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 4 to 58 Lightning Damage", "20% chance to Shock", statOrder = { 1382, 2033 }, level = 62, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 112 Lightning Damage", "20% chance to Shock", statOrder = { 1382, 2033 }, level = 82, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 10, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 10 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 30, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 18 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 48, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 31 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 66, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 3 to 60 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 84, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 10 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 10, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 19 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 30, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 34 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 48, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 4 to 58 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 66, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 112 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 84, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Chaos Damage", "5% reduced maximum Life", statOrder = { 1390, 1571 }, level = 8, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 7 to 10 Chaos Damage", "5% reduced maximum Life", statOrder = { 1390, 1571 }, level = 28, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 12 to 18 Chaos Damage", "5% reduced maximum Life", statOrder = { 1390, 1571 }, level = 44, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 19 to 31 Chaos Damage", "5% reduced maximum Life", statOrder = { 1390, 1571 }, level = 70, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 39 to 59 Chaos Damage", "5% reduced maximum Life", statOrder = { 1390, 1571 }, level = 85, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Chaos Damage", "7% reduced maximum Life", statOrder = { 1390, 1571 }, level = 8, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 10 to 17 Chaos Damage", "7% reduced maximum Life", statOrder = { 1390, 1571 }, level = 28, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 20 to 30 Chaos Damage", "7% reduced maximum Life", statOrder = { 1390, 1571 }, level = 44, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 34 to 51 Chaos Damage", "7% reduced maximum Life", statOrder = { 1390, 1571 }, level = 70, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 66 to 99 Chaos Damage", "7% reduced maximum Life", statOrder = { 1390, 1571 }, level = 85, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Chaos Damage", statOrder = { 1390 }, level = 8, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Chaos Damage", statOrder = { 1390 }, level = 28, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Chaos Damage", statOrder = { 1390 }, level = 44, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Chaos Damage", statOrder = { 1390 }, level = 70, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos5"] = { type = "Spawn", tier = 5, "Adds 29 to 46 Chaos Damage", statOrder = { 1390 }, level = 85, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2h1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Chaos Damage", statOrder = { 1390 }, level = 8, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2h2"] = { type = "Spawn", tier = 2, "Adds 7 to 13 Chaos Damage", statOrder = { 1390 }, level = 28, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2h3"] = { type = "Spawn", tier = 3, "Adds 15 to 24 Chaos Damage", statOrder = { 1390 }, level = 44, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2h4"] = { type = "Spawn", tier = 4, "Adds 26 to 39 Chaos Damage", statOrder = { 1390 }, level = 70, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2h5"] = { type = "Spawn", tier = 5, "Adds 50 to 77 Chaos Damage", statOrder = { 1390 }, level = 85, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 8, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 28, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 9 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 44, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 8 to 15 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 70, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 18 to 28 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 85, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 8, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 28, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 9 to 14 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 44, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 70, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 31 to 46 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 85, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 8, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 28, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 7 to 9 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 44, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 8 to 15 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 70, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 18 to 28 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 85, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 8, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 28, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 9 to 14 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 44, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 70, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 31 to 46 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 85, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeAddedElementalHighCannotInflictElementalAilments1"] = { type = "Spawn", tier = 1, "Adds 7 to 11 Fire Damage", "Adds 7 to 11 Cold Damage", "Adds 1 to 19 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 36, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedElementalHighCannotInflictElementalAilments2"] = { type = "Spawn", tier = 2, "Adds 12 to 18 Fire Damage", "Adds 12 to 18 Cold Damage", "Adds 3 to 29 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 60, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedElementalHighCannotInflictElementalAilments3"] = { type = "Spawn", tier = 3, "Adds 24 to 35 Fire Damage", "Adds 24 to 35 Cold Damage", "Adds 3 to 55 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 85, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2hHighCannotInflictElementalAilments1"] = { type = "Spawn", tier = 1, "Adds 14 to 23 Fire Damage", "Adds 14 to 23 Cold Damage", "Adds 3 to 33 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 36, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2hHighCannotInflictElementalAilments2"] = { type = "Spawn", tier = 2, "Adds 23 to 34 Fire Damage", "Adds 23 to 34 Cold Damage", "Adds 4 to 56 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 60, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2hHighCannotInflictElementalAilments3"] = { type = "Spawn", tier = 3, "Adds 43 to 64 Fire Damage", "Adds 43 to 64 Cold Damage", "Adds 6 to 102 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 85, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Fire Damage", "Adds 5 to 10 Cold Damage", "Adds 1 to 15 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 36, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2"] = { type = "Spawn", tier = 2, "Adds 9 to 15 Fire Damage", "Adds 9 to 15 Cold Damage", "Adds 1 to 23 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 60, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental3"] = { type = "Spawn", tier = 3, "Adds 18 to 27 Fire Damage", "Adds 18 to 27 Cold Damage", "Adds 3 to 42 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 85, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2h1"] = { type = "Spawn", tier = 1, "Adds 10 to 17 Fire Damage", "Adds 10 to 17 Cold Damage", "Adds 3 to 26 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 36, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2h2"] = { type = "Spawn", tier = 2, "Adds 17 to 26 Fire Damage", "Adds 17 to 26 Cold Damage", "Adds 3 to 42 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 60, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2h3"] = { type = "Spawn", tier = 3, "Adds 34 to 49 Fire Damage", "Adds 34 to 49 Cold Damage", "Adds 4 to 78 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 85, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedElementalLowElementalAilmentChance1"] = { type = "Spawn", tier = 1, "Adds 3 to 6 Fire Damage", "Adds 3 to 6 Cold Damage", "Adds 1 to 8 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedElementalLowElementalAilmentChance2"] = { type = "Spawn", tier = 2, "Adds 6 to 10 Fire Damage", "Adds 6 to 10 Cold Damage", "Adds 1 to 13 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedElementalLowElementalAilmentChance3"] = { type = "Spawn", tier = 3, "Adds 13 to 20 Fire Damage", "Adds 13 to 20 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2hLowElementalAilmentChance1"] = { type = "Spawn", tier = 1, "Adds 7 to 11 Fire Damage", "Adds 7 to 11 Cold Damage", "Adds 3 to 15 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2hLowElementalAilmentChance2"] = { type = "Spawn", tier = 2, "Adds 12 to 20 Fire Damage", "Adds 12 to 20 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2hLowElementalAilmentChance3"] = { type = "Spawn", tier = 3, "Adds 24 to 35 Fire Damage", "Adds 24 to 35 Cold Damage", "Adds 4 to 46 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeAddedElementalLowElementalAilmentEffect1"] = { type = "Spawn", tier = 1, "Adds 3 to 6 Fire Damage", "Adds 3 to 6 Cold Damage", "Adds 1 to 8 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedElementalLowElementalAilmentEffect2"] = { type = "Spawn", tier = 2, "Adds 4 to 9 Fire Damage", "Adds 4 to 9 Cold Damage", "Adds 1 to 13 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedElementalLowElementalAilmentEffect3"] = { type = "Spawn", tier = 3, "Adds 11 to 15 Fire Damage", "Adds 11 to 15 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2hLowElementalAilmentEffect1"] = { type = "Spawn", tier = 1, "Adds 7 to 10 Fire Damage", "Adds 7 to 10 Cold Damage", "Adds 3 to 15 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2hLowElementalAilmentEffect2"] = { type = "Spawn", tier = 2, "Adds 9 to 17 Fire Damage", "Adds 9 to 17 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2hLowElementalAilmentEffect3"] = { type = "Spawn", tier = 3, "Adds 20 to 29 Fire Damage", "Adds 20 to 29 Cold Damage", "Adds 4 to 46 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 5 to 7 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 14 to 22 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 28 to 42 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 7 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 7 to 12 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 14 to 22 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 24 to 37 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 47 to 71 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Physical Damage to Spells", statOrder = { 1403 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2"] = { type = "Spawn", tier = 2, "Adds 2 to 6 Physical Damage to Spells", statOrder = { 1403 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical3"] = { type = "Spawn", tier = 3, "Adds 6 to 10 Physical Damage to Spells", statOrder = { 1403 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", statOrder = { 1403 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical5"] = { type = "Spawn", tier = 5, "Adds 21 to 33 Physical Damage to Spells", statOrder = { 1403 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2h1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Physical Damage to Spells", statOrder = { 1403 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2h2"] = { type = "Spawn", tier = 2, "Adds 5 to 10 Physical Damage to Spells", statOrder = { 1403 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2h3"] = { type = "Spawn", tier = 3, "Adds 10 to 17 Physical Damage to Spells", statOrder = { 1403 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2h4"] = { type = "Spawn", tier = 4, "Adds 18 to 28 Physical Damage to Spells", statOrder = { 1403 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2h5"] = { type = "Spawn", tier = 5, "Adds 36 to 55 Physical Damage to Spells", statOrder = { 1403 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowFireConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowFireConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowFireConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowFireConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowFireConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowFireConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowFireConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowFireConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowFireConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowFireConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowColdConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowColdConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowColdConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowColdConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowColdConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowColdConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowColdConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowColdConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowColdConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowColdConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowLightningConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowLightningConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowLightningConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowLightningConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowLightningConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowLightningConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowLightningConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowLightningConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowLightningConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowLightningConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowChaosConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowChaosConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowChaosConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowChaosConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowChaosConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowChaosConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowChaosConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowChaosConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowChaosConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowChaosConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowOverwhelm1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowOverwhelm2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowOverwhelm3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowOverwhelm4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowOverwhelm5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowOverwhelm1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowOverwhelm2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowOverwhelm3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowOverwhelm4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowOverwhelm5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 6 to 10 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 12 to 18 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 19 to 30 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 39 to 59 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 7 to 10 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 11 to 17 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 21 to 34 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 37 to 55 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 73 to 109 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2"] = { type = "Spawn", tier = 2, "Adds 5 to 7 Fire Damage to Spells", statOrder = { 1404 }, level = 26, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire3"] = { type = "Spawn", tier = 3, "Adds 9 to 14 Fire Damage to Spells", statOrder = { 1404 }, level = 42, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Fire Damage to Spells", statOrder = { 1404 }, level = 62, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire5"] = { type = "Spawn", tier = 5, "Adds 30 to 45 Fire Damage to Spells", statOrder = { 1404 }, level = 82, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2h1"] = { type = "Spawn", tier = 1, "Adds 5 to 7 Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2h2"] = { type = "Spawn", tier = 2, "Adds 9 to 13 Fire Damage to Spells", statOrder = { 1404 }, level = 26, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2h3"] = { type = "Spawn", tier = 3, "Adds 16 to 26 Fire Damage to Spells", statOrder = { 1404 }, level = 42, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2h4"] = { type = "Spawn", tier = 4, "Adds 28 to 43 Fire Damage to Spells", statOrder = { 1404 }, level = 62, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2h5"] = { type = "Spawn", tier = 5, "Adds 56 to 84 Fire Damage to Spells", statOrder = { 1404 }, level = 82, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1404, 2026 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1404, 2026 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 4 to 9 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1404, 2026 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 8 to 14 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1404, 2026 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 18 to 28 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1404, 2026 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1404, 2026 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1404, 2026 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 9 to 16 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1404, 2026 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 16 to 26 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1404, 2026 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 34 to 51 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1404, 2026 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 1 to 3 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 10, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 2 to 4 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 30, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 4 to 9 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 48, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 8 to 14 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 66, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 18 to 28 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 84, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 2 to 6 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 10, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 5 to 8 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 30, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 9 to 16 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 48, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 16 to 26 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 66, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 34 to 51 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 84, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 10 to 17 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 18 to 28 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 37 to 56 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 10 to 16 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 20 to 32 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 34 to 52 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 68 to 103 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2"] = { type = "Spawn", tier = 2, "Adds 3 to 7 Cold Damage to Spells", statOrder = { 1405 }, level = 26, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Cold Damage to Spells", statOrder = { 1405 }, level = 42, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold4"] = { type = "Spawn", tier = 4, "Adds 14 to 21 Cold Damage to Spells", statOrder = { 1405 }, level = 62, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold5"] = { type = "Spawn", tier = 5, "Adds 29 to 43 Cold Damage to Spells", statOrder = { 1405 }, level = 82, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2h1"] = { type = "Spawn", tier = 1, "Adds 4 to 7 Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2h2"] = { type = "Spawn", tier = 2, "Adds 7 to 12 Cold Damage to Spells", statOrder = { 1405 }, level = 26, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2h3"] = { type = "Spawn", tier = 3, "Adds 15 to 24 Cold Damage to Spells", statOrder = { 1405 }, level = 42, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2h4"] = { type = "Spawn", tier = 4, "Adds 26 to 40 Cold Damage to Spells", statOrder = { 1405 }, level = 62, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2h5"] = { type = "Spawn", tier = 5, "Adds 53 to 79 Cold Damage to Spells", statOrder = { 1405 }, level = 82, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1405, 2029 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1405, 2029 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 4 to 8 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1405, 2029 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 8 to 14 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1405, 2029 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 17 to 25 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1405, 2029 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1405, 2029 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1405, 2029 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 9 to 15 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1405, 2029 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 16 to 25 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1405, 2029 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 32 to 47 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1405, 2029 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1405, 1446 }, level = 10, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1405, 1446 }, level = 30, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 4 to 8 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1405, 1446 }, level = 48, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 8 to 14 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1405, 1446 }, level = 66, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 17 to 25 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1405, 1446 }, level = 84, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1405, 1446 }, level = 10, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1405, 1446 }, level = 30, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 9 to 15 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1405, 1446 }, level = 48, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 16 to 25 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1405, 1446 }, level = 66, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 32 to 47 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1405, 1446 }, level = 84, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningHighDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 9 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningHighDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 15 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningHighDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 1 to 29 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningHighDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 2 to 48 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningHighDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 5 to 94 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hHighDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 16 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hHighDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 28 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hHighDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 2 to 53 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hHighDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 4 to 88 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hHighDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 9 to 173 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2"] = { type = "Spawn", tier = 2, "Adds 1 to 12 Lightning Damage to Spells", statOrder = { 1406 }, level = 26, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning3"] = { type = "Spawn", tier = 3, "Adds 1 to 22 Lightning Damage to Spells", statOrder = { 1406 }, level = 42, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning4"] = { type = "Spawn", tier = 4, "Adds 2 to 37 Lightning Damage to Spells", statOrder = { 1406 }, level = 62, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning5"] = { type = "Spawn", tier = 5, "Adds 4 to 72 Lightning Damage to Spells", statOrder = { 1406 }, level = 82, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2h1"] = { type = "Spawn", tier = 1, "Adds 1 to 12 Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2h2"] = { type = "Spawn", tier = 2, "Adds 1 to 21 Lightning Damage to Spells", statOrder = { 1406 }, level = 26, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2h3"] = { type = "Spawn", tier = 3, "Adds 2 to 41 Lightning Damage to Spells", statOrder = { 1406 }, level = 42, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2h4"] = { type = "Spawn", tier = 4, "Adds 3 to 68 Lightning Damage to Spells", statOrder = { 1406 }, level = 62, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2h5"] = { type = "Spawn", tier = 5, "Adds 7 to 133 Lightning Damage to Spells", statOrder = { 1406 }, level = 82, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1406, 2033 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 7 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1406, 2033 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 14 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1406, 2033 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 2 to 22 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1406, 2033 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 2 to 43 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1406, 2033 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 7 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1406, 2033 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 13 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1406, 2033 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 24 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1406, 2033 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 41 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1406, 2033 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 4 to 80 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1406, 2033 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 10, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 7 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 30, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 14 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 48, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 2 to 22 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 66, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 2 to 43 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 84, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 7 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 10, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 13 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 30, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 24 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 48, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 41 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 66, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 4 to 80 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 84, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1407, 1571 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 5 to 7 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1407, 1571 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1407, 1571 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 14 to 22 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1407, 1571 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 28 to 42 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1407, 1571 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 4 to 7 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1407, 1571 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 7 to 12 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1407, 1571 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 14 to 22 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1407, 1571 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 24 to 37 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1407, 1571 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 47 to 71 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1407, 1571 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage to Spells", statOrder = { 1407 }, level = 8, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2"] = { type = "Spawn", tier = 2, "Adds 2 to 6 Chaos Damage to Spells", statOrder = { 1407 }, level = 28, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos3"] = { type = "Spawn", tier = 3, "Adds 6 to 10 Chaos Damage to Spells", statOrder = { 1407 }, level = 44, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Chaos Damage to Spells", statOrder = { 1407 }, level = 70, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos5"] = { type = "Spawn", tier = 5, "Adds 21 to 33 Chaos Damage to Spells", statOrder = { 1407 }, level = 85, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2h1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Chaos Damage to Spells", statOrder = { 1407 }, level = 8, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2h2"] = { type = "Spawn", tier = 2, "Adds 5 to 10 Chaos Damage to Spells", statOrder = { 1407 }, level = 28, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2h3"] = { type = "Spawn", tier = 3, "Adds 10 to 17 Chaos Damage to Spells", statOrder = { 1407 }, level = 44, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2h4"] = { type = "Spawn", tier = 4, "Adds 18 to 28 Chaos Damage to Spells", statOrder = { 1407 }, level = 70, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2h5"] = { type = "Spawn", tier = 5, "Adds 36 to 55 Chaos Damage to Spells", statOrder = { 1407 }, level = 85, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "14% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 1, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "21% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 21, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "28% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 46, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "35% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 65, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 375, 0, 375, 375, 375, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "42% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 77, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 187, 0, 187, 187, 187, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "22% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 1, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "34% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 21, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "45% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 46, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "56% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 65, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "68% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 77, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 187, 0, 187, 0 }, modTags = { }, }, - ["SpellDamage1"] = { tier = 1, "(3-7)% increased Spell Damage", statOrder = { 1223 }, level = 5, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamage2"] = { tier = 2, "(8-12)% increased Spell Damage", statOrder = { 1223 }, level = 20, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamage3"] = { tier = 3, "(13-17)% increased Spell Damage", statOrder = { 1223 }, level = 38, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamage4"] = { tier = 4, "(18-22)% increased Spell Damage", statOrder = { 1223 }, level = 56, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamage5"] = { tier = 5, "(23-26)% increased Spell Damage", statOrder = { 1223 }, level = 76, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["WeaponTreeSpellDamage2h1"] = { type = "Spawn", tier = 1, "16% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0, 1500, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2h2"] = { type = "Spawn", tier = 2, "24% increased Spell Damage", statOrder = { 1223 }, level = 21, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0, 1500, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2h3"] = { type = "Spawn", tier = 3, "32% increased Spell Damage", statOrder = { 1223 }, level = 46, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0, 1500, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2h4"] = { type = "Spawn", tier = 4, "40% increased Spell Damage", statOrder = { 1223 }, level = 65, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2h5"] = { type = "Spawn", tier = 5, "48% increased Spell Damage", statOrder = { 1223 }, level = 77, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowMana1"] = { type = "Spawn", tier = 1, "7% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1223, 1580 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowMana2"] = { type = "Spawn", tier = 2, "10% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1223, 1580 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowMana3"] = { type = "Spawn", tier = 3, "13% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1223, 1580 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowMana4"] = { type = "Spawn", tier = 4, "17% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1223, 1580 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 375, 0, 375, 375, 375, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowMana5"] = { type = "Spawn", tier = 5, "20% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1223, 1580 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 187, 0, 187, 187, 187, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowMana1"] = { type = "Spawn", tier = 1, "11% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1223, 1580 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowMana2"] = { type = "Spawn", tier = 2, "16% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1223, 1580 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowMana3"] = { type = "Spawn", tier = 3, "21% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1223, 1580 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowMana4"] = { type = "Spawn", tier = 4, "26% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1223, 1580 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowMana5"] = { type = "Spawn", tier = 5, "32% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1223, 1580 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 187, 0, 187, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowEnergyShield1"] = { type = "Spawn", tier = 1, "7% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowEnergyShield2"] = { type = "Spawn", tier = 2, "10% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowEnergyShield3"] = { type = "Spawn", tier = 3, "13% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowEnergyShield4"] = { type = "Spawn", tier = 4, "17% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 375, 0, 375, 375, 375, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowEnergyShield5"] = { type = "Spawn", tier = 5, "20% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 187, 0, 187, 187, 187, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowEnergyShield1"] = { type = "Spawn", tier = 1, "11% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowEnergyShield2"] = { type = "Spawn", tier = 2, "16% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowEnergyShield3"] = { type = "Spawn", tier = 3, "21% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowEnergyShield4"] = { type = "Spawn", tier = 4, "26% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowEnergyShield5"] = { type = "Spawn", tier = 5, "32% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 187, 0, 187, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeHighLifeRecoveryRate1"] = { type = "Spawn", tier = 1, "14% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 5, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeHighLifeRecoveryRate2"] = { type = "Spawn", tier = 2, "21% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 23, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeHighLifeRecoveryRate3"] = { type = "Spawn", tier = 3, "28% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 51, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeHighLifeRecoveryRate4"] = { type = "Spawn", tier = 4, "35% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 69, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeHighLifeRecoveryRate5"] = { type = "Spawn", tier = 5, "42% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 80, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate1"] = { type = "Spawn", tier = 1, "22% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 5, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate2"] = { type = "Spawn", tier = 2, "34% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 23, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate3"] = { type = "Spawn", tier = 3, "45% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 51, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate4"] = { type = "Spawn", tier = 4, "56% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 69, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate5"] = { type = "Spawn", tier = 5, "68% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 80, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime1"] = { type = "Spawn", tier = 1, "10% increased Damage over Time", statOrder = { 1210 }, level = 5, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2"] = { type = "Spawn", tier = 2, "15% increased Damage over Time", statOrder = { 1210 }, level = 23, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime3"] = { type = "Spawn", tier = 3, "20% increased Damage over Time", statOrder = { 1210 }, level = 51, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime4"] = { type = "Spawn", tier = 4, "25% increased Damage over Time", statOrder = { 1210 }, level = 69, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime5"] = { type = "Spawn", tier = 5, "30% increased Damage over Time", statOrder = { 1210 }, level = 80, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2h1"] = { type = "Spawn", tier = 1, "16% increased Damage over Time", statOrder = { 1210 }, level = 5, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2h2"] = { type = "Spawn", tier = 2, "24% increased Damage over Time", statOrder = { 1210 }, level = 23, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2h3"] = { type = "Spawn", tier = 3, "32% increased Damage over Time", statOrder = { 1210 }, level = 51, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2h4"] = { type = "Spawn", tier = 4, "40% increased Damage over Time", statOrder = { 1210 }, level = 69, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2h5"] = { type = "Spawn", tier = 5, "48% increased Damage over Time", statOrder = { 1210 }, level = 80, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowSkillEffectDuration1"] = { type = "Spawn", tier = 1, "7% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 5, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowSkillEffectDuration2"] = { type = "Spawn", tier = 2, "10% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 23, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowSkillEffectDuration3"] = { type = "Spawn", tier = 3, "13% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 51, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowSkillEffectDuration4"] = { type = "Spawn", tier = 4, "17% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 69, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowSkillEffectDuration5"] = { type = "Spawn", tier = 5, "20% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 80, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowSkillEffectDuration1"] = { type = "Spawn", tier = 1, "11% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 5, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowSkillEffectDuration2"] = { type = "Spawn", tier = 2, "16% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 23, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowSkillEffectDuration3"] = { type = "Spawn", tier = 3, "21% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 51, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowSkillEffectDuration4"] = { type = "Spawn", tier = 4, "26% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 69, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowSkillEffectDuration5"] = { type = "Spawn", tier = 5, "32% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 80, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou1"] = { type = "Spawn", tier = 1, "7% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 5, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou2"] = { type = "Spawn", tier = 2, "10% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 23, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou3"] = { type = "Spawn", tier = 3, "13% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 51, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou4"] = { type = "Spawn", tier = 4, "17% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 69, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou5"] = { type = "Spawn", tier = 5, "20% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 80, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou1"] = { type = "Spawn", tier = 1, "11% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 5, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou2"] = { type = "Spawn", tier = 2, "16% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 23, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou3"] = { type = "Spawn", tier = 3, "21% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 51, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou4"] = { type = "Spawn", tier = 4, "26% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 69, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou5"] = { type = "Spawn", tier = 5, "32% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 80, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 7 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 8 to 14 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 14 to 22 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 28 to 42 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 7 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 7 to 12 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 14 to 22 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 24 to 37 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 47 to 71 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Physical Damage", statOrder = { 3773 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 6 additional Physical Damage", statOrder = { 3773 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical3"] = { type = "Spawn", tier = 3, "Minions deal 6 to 10 additional Physical Damage", statOrder = { 3773 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical4"] = { type = "Spawn", tier = 4, "Minions deal 11 to 17 additional Physical Damage", statOrder = { 3773 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical5"] = { type = "Spawn", tier = 5, "Minions deal 21 to 33 additional Physical Damage", statOrder = { 3773 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2h1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Physical Damage", statOrder = { 3773 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2h2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 10 additional Physical Damage", statOrder = { 3773 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2h3"] = { type = "Spawn", tier = 3, "Minions deal 10 to 17 additional Physical Damage", statOrder = { 3773 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2h4"] = { type = "Spawn", tier = 4, "Minions deal 18 to 28 additional Physical Damage", statOrder = { 3773 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2h5"] = { type = "Spawn", tier = 5, "Minions deal 36 to 55 additional Physical Damage", statOrder = { 3773 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1956, 3773 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 2 to 4 additional Physical Damage", statOrder = { 1956, 3773 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 4 to 6 additional Physical Damage", statOrder = { 1956, 3773 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 6 to 10 additional Physical Damage", statOrder = { 1956, 3773 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 13 to 20 additional Physical Damage", statOrder = { 1956, 3773 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1956, 3773 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 3 to 6 additional Physical Damage", statOrder = { 1956, 3773 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 7 to 10 additional Physical Damage", statOrder = { 1956, 3773 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 11 to 17 additional Physical Damage", statOrder = { 1956, 3773 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 22 to 33 additional Physical Damage", statOrder = { 1956, 3773 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1958, 3773 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 2 to 4 additional Physical Damage", statOrder = { 1958, 3773 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 4 to 6 additional Physical Damage", statOrder = { 1958, 3773 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 6 to 10 additional Physical Damage", statOrder = { 1958, 3773 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 13 to 20 additional Physical Damage", statOrder = { 1958, 3773 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1958, 3773 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 3 to 6 additional Physical Damage", statOrder = { 1958, 3773 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 7 to 10 additional Physical Damage", statOrder = { 1958, 3773 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 11 to 17 additional Physical Damage", statOrder = { 1958, 3773 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 22 to 33 additional Physical Damage", statOrder = { 1958, 3773 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1960, 3773 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 2 to 4 additional Physical Damage", statOrder = { 1960, 3773 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 4 to 6 additional Physical Damage", statOrder = { 1960, 3773 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 6 to 10 additional Physical Damage", statOrder = { 1960, 3773 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 13 to 20 additional Physical Damage", statOrder = { 1960, 3773 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1960, 3773 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 3 to 6 additional Physical Damage", statOrder = { 1960, 3773 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 7 to 10 additional Physical Damage", statOrder = { 1960, 3773 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 11 to 17 additional Physical Damage", statOrder = { 1960, 3773 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 22 to 33 additional Physical Damage", statOrder = { 1960, 3773 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1963, 3773 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 2 to 4 additional Physical Damage", statOrder = { 1963, 3773 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 4 to 6 additional Physical Damage", statOrder = { 1963, 3773 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 6 to 10 additional Physical Damage", statOrder = { 1963, 3773 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 13 to 20 additional Physical Damage", statOrder = { 1963, 3773 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1963, 3773 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 3 to 6 additional Physical Damage", statOrder = { 1963, 3773 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 7 to 10 additional Physical Damage", statOrder = { 1963, 3773 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 11 to 17 additional Physical Damage", statOrder = { 1963, 3773 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 22 to 33 additional Physical Damage", statOrder = { 1963, 3773 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 4 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm3"] = { type = "Spawn", tier = 3, "Minions deal 4 to 6 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm4"] = { type = "Spawn", tier = 4, "Minions deal 6 to 10 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm5"] = { type = "Spawn", tier = 5, "Minions deal 13 to 20 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm2"] = { type = "Spawn", tier = 2, "Minions deal 3 to 6 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm3"] = { type = "Spawn", tier = 3, "Minions deal 7 to 10 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm4"] = { type = "Spawn", tier = 4, "Minions deal 11 to 17 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm5"] = { type = "Spawn", tier = 5, "Minions deal 22 to 33 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 6 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 6 to 10 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 12 to 18 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 19 to 30 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 39 to 59 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 7 to 10 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 11 to 17 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 21 to 34 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 37 to 55 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 73 to 109 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Fire Damage", statOrder = { 3771 }, level = 1, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 7 additional Fire Damage", statOrder = { 3771 }, level = 26, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire3"] = { type = "Spawn", tier = 3, "Minions deal 9 to 14 additional Fire Damage", statOrder = { 3771 }, level = 42, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire4"] = { type = "Spawn", tier = 4, "Minions deal 15 to 24 additional Fire Damage", statOrder = { 3771 }, level = 62, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire5"] = { type = "Spawn", tier = 5, "Minions deal 30 to 45 additional Fire Damage", statOrder = { 3771 }, level = 82, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2h1"] = { type = "Spawn", tier = 1, "Minions deal 5 to 7 additional Fire Damage", statOrder = { 3771 }, level = 1, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2h2"] = { type = "Spawn", tier = 2, "Minions deal 9 to 13 additional Fire Damage", statOrder = { 3771 }, level = 26, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2h3"] = { type = "Spawn", tier = 3, "Minions deal 16 to 26 additional Fire Damage", statOrder = { 3771 }, level = 42, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2h4"] = { type = "Spawn", tier = 4, "Minions deal 28 to 43 additional Fire Damage", statOrder = { 3771 }, level = 62, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2h5"] = { type = "Spawn", tier = 5, "Minions deal 56 to 84 additional Fire Damage", statOrder = { 3771 }, level = 82, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowMinionIgniteChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3771, 9285 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowMinionIgniteChance2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 4 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3771, 9285 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowMinionIgniteChance3"] = { type = "Spawn", tier = 3, "Minions deal 4 to 9 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3771, 9285 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowMinionIgniteChance4"] = { type = "Spawn", tier = 4, "Minions deal 8 to 14 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3771, 9285 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowMinionIgniteChance5"] = { type = "Spawn", tier = 5, "Minions deal 18 to 28 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3771, 9285 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 6 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3771, 9285 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 8 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3771, 9285 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance3"] = { type = "Spawn", tier = 3, "Minions deal 9 to 16 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3771, 9285 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance4"] = { type = "Spawn", tier = 4, "Minions deal 16 to 26 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3771, 9285 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance5"] = { type = "Spawn", tier = 5, "Minions deal 34 to 51 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3771, 9285 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Minions deal 1 to 3 additional Fire Damage", statOrder = { 58, 3771 }, level = 10, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Minions deal 2 to 4 additional Fire Damage", statOrder = { 58, 3771 }, level = 30, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Minions deal 4 to 9 additional Fire Damage", statOrder = { 58, 3771 }, level = 48, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Minions deal 8 to 14 additional Fire Damage", statOrder = { 58, 3771 }, level = 66, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Minions deal 18 to 28 additional Fire Damage", statOrder = { 58, 3771 }, level = 84, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Minions deal 2 to 6 additional Fire Damage", statOrder = { 58, 3771 }, level = 10, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Minions deal 5 to 8 additional Fire Damage", statOrder = { 58, 3771 }, level = 30, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Minions deal 9 to 16 additional Fire Damage", statOrder = { 58, 3771 }, level = 48, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Minions deal 16 to 26 additional Fire Damage", statOrder = { 58, 3771 }, level = 66, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Minions deal 34 to 51 additional Fire Damage", statOrder = { 58, 3771 }, level = 84, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 6 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 6 to 10 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 12 to 18 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 19 to 30 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 39 to 59 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 7 to 10 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 11 to 17 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 21 to 34 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 37 to 55 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 73 to 109 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 6 additional Cold Damage", statOrder = { 3770 }, level = 1, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 8 additional Cold Damage", statOrder = { 3770 }, level = 26, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold3"] = { type = "Spawn", tier = 3, "Minions deal 10 to 17 additional Cold Damage", statOrder = { 3770 }, level = 42, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold4"] = { type = "Spawn", tier = 4, "Minions deal 18 to 28 additional Cold Damage", statOrder = { 3770 }, level = 62, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold5"] = { type = "Spawn", tier = 5, "Minions deal 37 to 56 additional Cold Damage", statOrder = { 3770 }, level = 82, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2h1"] = { type = "Spawn", tier = 1, "Minions deal 5 to 10 additional Cold Damage", statOrder = { 3770 }, level = 1, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2h2"] = { type = "Spawn", tier = 2, "Minions deal 10 to 16 additional Cold Damage", statOrder = { 3770 }, level = 26, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2h3"] = { type = "Spawn", tier = 3, "Minions deal 20 to 32 additional Cold Damage", statOrder = { 3770 }, level = 42, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2h4"] = { type = "Spawn", tier = 4, "Minions deal 34 to 52 additional Cold Damage", statOrder = { 3770 }, level = 62, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2h5"] = { type = "Spawn", tier = 5, "Minions deal 68 to 103 additional Cold Damage", statOrder = { 3770 }, level = 82, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionFreezeChance1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3770, 9282 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionFreezeChance2"] = { type = "Spawn", tier = 2, "Minions deal 3 to 7 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3770, 9282 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionFreezeChance3"] = { type = "Spawn", tier = 3, "Minions deal 8 to 14 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3770, 9282 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionFreezeChance4"] = { type = "Spawn", tier = 4, "Minions deal 14 to 21 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3770, 9282 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionFreezeChance5"] = { type = "Spawn", tier = 5, "Minions deal 29 to 43 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3770, 9282 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 7 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3770, 9282 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance2"] = { type = "Spawn", tier = 2, "Minions deal 7 to 12 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3770, 9282 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance3"] = { type = "Spawn", tier = 3, "Minions deal 15 to 24 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3770, 9282 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance4"] = { type = "Spawn", tier = 4, "Minions deal 26 to 40 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3770, 9282 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance5"] = { type = "Spawn", tier = 5, "Minions deal 53 to 79 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3770, 9282 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 10, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 4 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 30, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 4 to 8 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 48, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 8 to 14 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 66, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 17 to 25 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 84, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 10, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 8 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 30, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 9 to 15 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 48, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 16 to 25 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 66, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 32 to 47 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 84, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningHighDamageTaken1"] = { type = "Spawn", tier = 1, "4% increased Lightning Damage taken", "Minions deal 1 to 9 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningHighDamageTaken2"] = { type = "Spawn", tier = 2, "4% increased Lightning Damage taken", "Minions deal 1 to 15 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningHighDamageTaken3"] = { type = "Spawn", tier = 3, "4% increased Lightning Damage taken", "Minions deal 1 to 29 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningHighDamageTaken4"] = { type = "Spawn", tier = 4, "4% increased Lightning Damage taken", "Minions deal 2 to 48 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningHighDamageTaken5"] = { type = "Spawn", tier = 5, "4% increased Lightning Damage taken", "Minions deal 5 to 94 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hHighDamageTaken1"] = { type = "Spawn", tier = 1, "6% increased Lightning Damage taken", "Minions deal 1 to 16 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hHighDamageTaken2"] = { type = "Spawn", tier = 2, "6% increased Lightning Damage taken", "Minions deal 1 to 28 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hHighDamageTaken3"] = { type = "Spawn", tier = 3, "6% increased Lightning Damage taken", "Minions deal 2 to 53 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hHighDamageTaken4"] = { type = "Spawn", tier = 4, "6% increased Lightning Damage taken", "Minions deal 4 to 88 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hHighDamageTaken5"] = { type = "Spawn", tier = 5, "6% increased Lightning Damage taken", "Minions deal 9 to 173 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 6 additional Lightning Damage", statOrder = { 3772 }, level = 1, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 12 additional Lightning Damage", statOrder = { 3772 }, level = 26, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning3"] = { type = "Spawn", tier = 3, "Minions deal 1 to 22 additional Lightning Damage", statOrder = { 3772 }, level = 42, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning4"] = { type = "Spawn", tier = 4, "Minions deal 2 to 37 additional Lightning Damage", statOrder = { 3772 }, level = 62, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning5"] = { type = "Spawn", tier = 5, "Minions deal 4 to 72 additional Lightning Damage", statOrder = { 3772 }, level = 82, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2h1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 12 additional Lightning Damage", statOrder = { 3772 }, level = 1, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2h2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 21 additional Lightning Damage", statOrder = { 3772 }, level = 26, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2h3"] = { type = "Spawn", tier = 3, "Minions deal 2 to 41 additional Lightning Damage", statOrder = { 3772 }, level = 42, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2h4"] = { type = "Spawn", tier = 4, "Minions deal 3 to 68 additional Lightning Damage", statOrder = { 3772 }, level = 62, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2h5"] = { type = "Spawn", tier = 5, "Minions deal 7 to 133 additional Lightning Damage", statOrder = { 3772 }, level = 82, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionShockChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3772, 9287 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionShockChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3772, 9287 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionShockChance3"] = { type = "Spawn", tier = 3, "Minions deal 1 to 14 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3772, 9287 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionShockChance4"] = { type = "Spawn", tier = 4, "Minions deal 2 to 22 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3772, 9287 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionShockChance5"] = { type = "Spawn", tier = 5, "Minions deal 2 to 43 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3772, 9287 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionShockChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3772, 9287 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionShockChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 13 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3772, 9287 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionShockChance3"] = { type = "Spawn", tier = 3, "Minions deal 2 to 24 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3772, 9287 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionShockChance4"] = { type = "Spawn", tier = 4, "Minions deal 3 to 41 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3772, 9287 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionShockChance5"] = { type = "Spawn", tier = 5, "Minions deal 4 to 80 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3772, 9287 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 10, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 30, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 1 to 14 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 48, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 2 to 22 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 66, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 2 to 43 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 84, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 10, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 13 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 30, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 2 to 24 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 48, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 3 to 41 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 66, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 4 to 80 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 84, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosHighReducedLife1"] = { type = "Spawn", tier = 1, "6% reduced maximum Life", "Minions deal 2 to 5 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosHighReducedLife2"] = { type = "Spawn", tier = 2, "6% reduced maximum Life", "Minions deal 5 to 7 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosHighReducedLife3"] = { type = "Spawn", tier = 3, "6% reduced maximum Life", "Minions deal 8 to 14 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosHighReducedLife4"] = { type = "Spawn", tier = 4, "6% reduced maximum Life", "Minions deal 14 to 22 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosHighReducedLife5"] = { type = "Spawn", tier = 5, "6% reduced maximum Life", "Minions deal 28 to 42 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hHighReducedLife1"] = { type = "Spawn", tier = 1, "10% reduced maximum Life", "Minions deal 4 to 7 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hHighReducedLife2"] = { type = "Spawn", tier = 2, "10% reduced maximum Life", "Minions deal 7 to 12 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hHighReducedLife3"] = { type = "Spawn", tier = 3, "10% reduced maximum Life", "Minions deal 14 to 22 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hHighReducedLife4"] = { type = "Spawn", tier = 4, "10% reduced maximum Life", "Minions deal 24 to 37 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hHighReducedLife5"] = { type = "Spawn", tier = 5, "10% reduced maximum Life", "Minions deal 47 to 71 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Chaos Damage", statOrder = { 3769 }, level = 8, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 6 additional Chaos Damage", statOrder = { 3769 }, level = 28, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos3"] = { type = "Spawn", tier = 3, "Minions deal 6 to 10 additional Chaos Damage", statOrder = { 3769 }, level = 44, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos4"] = { type = "Spawn", tier = 4, "Minions deal 11 to 17 additional Chaos Damage", statOrder = { 3769 }, level = 70, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos5"] = { type = "Spawn", tier = 5, "Minions deal 21 to 33 additional Chaos Damage", statOrder = { 3769 }, level = 85, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2h1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Chaos Damage", statOrder = { 3769 }, level = 8, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2h2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 10 additional Chaos Damage", statOrder = { 3769 }, level = 28, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2h3"] = { type = "Spawn", tier = 3, "Minions deal 10 to 17 additional Chaos Damage", statOrder = { 3769 }, level = 44, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2h4"] = { type = "Spawn", tier = 4, "Minions deal 18 to 28 additional Chaos Damage", statOrder = { 3769 }, level = 70, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2h5"] = { type = "Spawn", tier = 5, "Minions deal 36 to 55 additional Chaos Damage", statOrder = { 3769 }, level = 85, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowMinionPoisonChance1"] = { type = "Spawn", tier = 1, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 1 to 3 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowMinionPoisonChance2"] = { type = "Spawn", tier = 2, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 2 to 4 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowMinionPoisonChance3"] = { type = "Spawn", tier = 3, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 4 to 6 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowMinionPoisonChance4"] = { type = "Spawn", tier = 4, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 6 to 10 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowMinionPoisonChance5"] = { type = "Spawn", tier = 5, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 13 to 20 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance1"] = { type = "Spawn", tier = 1, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 1 to 3 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance2"] = { type = "Spawn", tier = 2, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 3 to 6 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance3"] = { type = "Spawn", tier = 3, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 7 to 10 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance4"] = { type = "Spawn", tier = 4, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 11 to 17 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance5"] = { type = "Spawn", tier = 5, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 22 to 33 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowChaosResistance1"] = { type = "Spawn", tier = 1, "+7% to Chaos Resistance", "Minions deal 1 to 3 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowChaosResistance2"] = { type = "Spawn", tier = 2, "+7% to Chaos Resistance", "Minions deal 2 to 4 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowChaosResistance3"] = { type = "Spawn", tier = 3, "+7% to Chaos Resistance", "Minions deal 4 to 6 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowChaosResistance4"] = { type = "Spawn", tier = 4, "+7% to Chaos Resistance", "Minions deal 6 to 10 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowChaosResistance5"] = { type = "Spawn", tier = 5, "+7% to Chaos Resistance", "Minions deal 13 to 20 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowChaosResistance1"] = { type = "Spawn", tier = 1, "+13% to Chaos Resistance", "Minions deal 1 to 3 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowChaosResistance2"] = { type = "Spawn", tier = 2, "+13% to Chaos Resistance", "Minions deal 3 to 6 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowChaosResistance3"] = { type = "Spawn", tier = 3, "+13% to Chaos Resistance", "Minions deal 7 to 10 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowChaosResistance4"] = { type = "Spawn", tier = 4, "+13% to Chaos Resistance", "Minions deal 11 to 17 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowChaosResistance5"] = { type = "Spawn", tier = 5, "+13% to Chaos Resistance", "Minions deal 22 to 33 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 14% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 1, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 21% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 21, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 28% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 46, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 35% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 65, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 42% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 77, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 22% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 1, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 34% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 21, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 45% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 46, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 56% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 65, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 68% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 77, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage1"] = { type = "Spawn", tier = 1, "Minions deal 10% increased Damage", statOrder = { 1973 }, level = 1, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2"] = { type = "Spawn", tier = 2, "Minions deal 15% increased Damage", statOrder = { 1973 }, level = 21, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage3"] = { type = "Spawn", tier = 3, "Minions deal 20% increased Damage", statOrder = { 1973 }, level = 46, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage4"] = { type = "Spawn", tier = 4, "Minions deal 25% increased Damage", statOrder = { 1973 }, level = 65, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage5"] = { type = "Spawn", tier = 5, "Minions deal 30% increased Damage", statOrder = { 1973 }, level = 77, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2h1"] = { type = "Spawn", tier = 1, "Minions deal 16% increased Damage", statOrder = { 1973 }, level = 1, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2h2"] = { type = "Spawn", tier = 2, "Minions deal 24% increased Damage", statOrder = { 1973 }, level = 21, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2h3"] = { type = "Spawn", tier = 3, "Minions deal 32% increased Damage", statOrder = { 1973 }, level = 46, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2h4"] = { type = "Spawn", tier = 4, "Minions deal 40% increased Damage", statOrder = { 1973 }, level = 65, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2h5"] = { type = "Spawn", tier = 5, "Minions deal 48% increased Damage", statOrder = { 1973 }, level = 77, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowMana1"] = { type = "Spawn", tier = 1, "10% increased maximum Mana", "Minions deal 7% increased Damage", statOrder = { 1580, 1973 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowMana2"] = { type = "Spawn", tier = 2, "10% increased maximum Mana", "Minions deal 10% increased Damage", statOrder = { 1580, 1973 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowMana3"] = { type = "Spawn", tier = 3, "10% increased maximum Mana", "Minions deal 13% increased Damage", statOrder = { 1580, 1973 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowMana4"] = { type = "Spawn", tier = 4, "10% increased maximum Mana", "Minions deal 17% increased Damage", statOrder = { 1580, 1973 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowMana5"] = { type = "Spawn", tier = 5, "10% increased maximum Mana", "Minions deal 20% increased Damage", statOrder = { 1580, 1973 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowMana1"] = { type = "Spawn", tier = 1, "20% increased maximum Mana", "Minions deal 11% increased Damage", statOrder = { 1580, 1973 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowMana2"] = { type = "Spawn", tier = 2, "20% increased maximum Mana", "Minions deal 16% increased Damage", statOrder = { 1580, 1973 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowMana3"] = { type = "Spawn", tier = 3, "20% increased maximum Mana", "Minions deal 21% increased Damage", statOrder = { 1580, 1973 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowMana4"] = { type = "Spawn", tier = 4, "20% increased maximum Mana", "Minions deal 26% increased Damage", statOrder = { 1580, 1973 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowMana5"] = { type = "Spawn", tier = 5, "20% increased maximum Mana", "Minions deal 32% increased Damage", statOrder = { 1580, 1973 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowEnergyShield1"] = { type = "Spawn", tier = 1, "10% increased maximum Energy Shield", "Minions deal 7% increased Damage", statOrder = { 1561, 1973 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowEnergyShield2"] = { type = "Spawn", tier = 2, "10% increased maximum Energy Shield", "Minions deal 10% increased Damage", statOrder = { 1561, 1973 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowEnergyShield3"] = { type = "Spawn", tier = 3, "10% increased maximum Energy Shield", "Minions deal 13% increased Damage", statOrder = { 1561, 1973 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowEnergyShield4"] = { type = "Spawn", tier = 4, "10% increased maximum Energy Shield", "Minions deal 17% increased Damage", statOrder = { 1561, 1973 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowEnergyShield5"] = { type = "Spawn", tier = 5, "10% increased maximum Energy Shield", "Minions deal 20% increased Damage", statOrder = { 1561, 1973 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowEnergyShield1"] = { type = "Spawn", tier = 1, "20% increased maximum Energy Shield", "Minions deal 11% increased Damage", statOrder = { 1561, 1973 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowEnergyShield2"] = { type = "Spawn", tier = 2, "20% increased maximum Energy Shield", "Minions deal 16% increased Damage", statOrder = { 1561, 1973 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowEnergyShield3"] = { type = "Spawn", tier = 3, "20% increased maximum Energy Shield", "Minions deal 21% increased Damage", statOrder = { 1561, 1973 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowEnergyShield4"] = { type = "Spawn", tier = 4, "20% increased maximum Energy Shield", "Minions deal 26% increased Damage", statOrder = { 1561, 1973 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowEnergyShield5"] = { type = "Spawn", tier = 5, "20% increased maximum Energy Shield", "Minions deal 32% increased Damage", statOrder = { 1561, 1973 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, - ["WeaponTreeBowGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Bow Gems", statOrder = { 178 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedBowGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeMeleeGemLevel"] = { type = "Spawn", tier = 1, "+2 to Level of Socketed Melee Gems", statOrder = { 179 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMeleeGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "mace", "sword", "sceptre", "axe", "dagger", "claw", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMeleeGemLevel2h"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Melee Gems", statOrder = { 179 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMeleeGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSpellGemLevel"] = { type = "Spawn", tier = 1, "+2 to Level of Socketed Spell Gems", statOrder = { 174 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedSpellGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSpellGemLevel2h"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Spell Gems", statOrder = { 174 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedSpellGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionGemLevel"] = { type = "Spawn", tier = 1, "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMinionGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 10000, 10000, 0 }, modTags = { }, }, - ["WeaponTreeMinionGemLevel2h"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMinionGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 10000, 10000, 0 }, modTags = { }, }, - ["WeaponTreeDexterityGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Dexterity Gems", statOrder = { 160 }, level = 45, group = "WeaponTreeLocalIncreaseSocketedDexterityGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 250, 250, 250, 500, 250, 0 }, modTags = { }, }, - ["WeaponTreeStrengthGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Strength Gems", statOrder = { 158 }, level = 45, group = "WeaponTreeLocalIncreaseSocketedStrengthGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 250, 250, 500, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeIntelliegenceGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Intelligence Gems", statOrder = { 161 }, level = 45, group = "WeaponTreeLocalIncreaseSocketedIntelligenceGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 500, 250, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdPerDex"] = { type = "MergeOnly", tier = 1, "Adds 1 to 3 Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4924 }, level = 60, group = "WeaponTreeAddedColdDamagePerDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 0, 500, 500, 500, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdPerDex2h"] = { type = "MergeOnly", tier = 1, "Adds 2 to 4 Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4924 }, level = 60, group = "WeaponTreeAddedColdDamagePerDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 0, 500, 500, 500, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedFirePerStr"] = { type = "MergeOnly", tier = 1, "Adds 1 to 3 Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4869 }, level = 60, group = "WeaponTreeAddedFireDamagePerStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 0, 500, 500, 1000, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedFirePerStr2h"] = { type = "MergeOnly", tier = 1, "Adds 2 to 4 Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4869 }, level = 60, group = "WeaponTreeAddedFireDamagePerStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 0, 500, 500, 1000, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningPerInt"] = { type = "MergeOnly", tier = 1, "Adds 1 to 3 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4872 }, level = 60, group = "WeaponTreeAddedLightningDamagePerIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 0, 1000, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningPerInt2h"] = { type = "MergeOnly", tier = 1, "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4872 }, level = 60, group = "WeaponTreeAddedLightningDamagePerIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 0, 1000, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosPerLowestAttribute"] = { type = "MergeOnly", tier = 1, "Adds 2 to 4 Chaos Damage to Attacks with this Weapon per 10 of your lowest Attribute", statOrder = { 4923 }, level = 60, group = "WeaponTreeLocalAddedChaosDamagePerLowestAttribute", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosPerLowestAttribute2h"] = { type = "MergeOnly", tier = 1, "Adds 3 to 5 Chaos Damage to Attacks with this Weapon per 10 of your lowest Attribute", statOrder = { 4923 }, level = 60, group = "WeaponTreeLocalAddedChaosDamagePerLowestAttribute", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamageHighIncreasedSkillCost1"] = { type = "Spawn", tier = 1, "20% increased Global Damage", "10% increased Cost of Skills", statOrder = { 1192, 1881 }, level = 1, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamageHighIncreasedSkillCost2"] = { type = "Spawn", tier = 2, "30% increased Global Damage", "10% increased Cost of Skills", statOrder = { 1192, 1881 }, level = 45, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamageHighIncreasedSkillCost3"] = { type = "Spawn", tier = 3, "40% increased Global Damage", "10% increased Cost of Skills", statOrder = { 1192, 1881 }, level = 75, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2hHighIncreasedSkillCost1"] = { type = "Spawn", tier = 1, "40% increased Global Damage", "20% increased Cost of Skills", statOrder = { 1192, 1881 }, level = 1, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2hHighIncreasedSkillCost2"] = { type = "Spawn", tier = 2, "50% increased Global Damage", "20% increased Cost of Skills", statOrder = { 1192, 1881 }, level = 45, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2hHighIncreasedSkillCost3"] = { type = "Spawn", tier = 3, "60% increased Global Damage", "20% increased Cost of Skills", statOrder = { 1192, 1881 }, level = 75, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage1"] = { type = "Spawn", tier = 1, "15% increased Global Damage", statOrder = { 1192 }, level = 1, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2"] = { type = "Spawn", tier = 2, "20% increased Global Damage", statOrder = { 1192 }, level = 45, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage3"] = { type = "Spawn", tier = 3, "25% increased Global Damage", statOrder = { 1192 }, level = 75, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2h1"] = { type = "Spawn", tier = 1, "20% increased Global Damage", statOrder = { 1192 }, level = 1, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2h2"] = { type = "Spawn", tier = 2, "30% increased Global Damage", statOrder = { 1192 }, level = 45, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2h3"] = { type = "Spawn", tier = 3, "40% increased Global Damage", statOrder = { 1192 }, level = 75, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamageLowIncreasedAttributes1"] = { type = "Spawn", tier = 1, "4% increased Attributes", "8% increased Global Damage", statOrder = { 1183, 1192 }, level = 1, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamageLowIncreasedAttributes2"] = { type = "Spawn", tier = 2, "4% increased Attributes", "12% increased Global Damage", statOrder = { 1183, 1192 }, level = 45, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamageLowIncreasedAttributes3"] = { type = "Spawn", tier = 3, "4% increased Attributes", "16% increased Global Damage", statOrder = { 1183, 1192 }, level = 75, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2hLowIncreasedAttributes1"] = { type = "Spawn", tier = 1, "6% increased Attributes", "15% increased Global Damage", statOrder = { 1183, 1192 }, level = 1, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2hLowIncreasedAttributes2"] = { type = "Spawn", tier = 2, "6% increased Attributes", "20% increased Global Damage", statOrder = { 1183, 1192 }, level = 45, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2hLowIncreasedAttributes3"] = { type = "Spawn", tier = 3, "6% increased Attributes", "25% increased Global Damage", statOrder = { 1183, 1192 }, level = 75, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLife1"] = { type = "Spawn", tier = 1, "+30 to maximum Life", statOrder = { 1569 }, level = 1, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLife2"] = { type = "Spawn", tier = 2, "+35 to maximum Life", statOrder = { 1569 }, level = 21, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLife3"] = { type = "Spawn", tier = 3, "+40 to maximum Life", statOrder = { 1569 }, level = 46, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLife4"] = { type = "Spawn", tier = 4, "+45 to maximum Life", statOrder = { 1569 }, level = 65, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLife5"] = { type = "Spawn", tier = 5, "+50 to maximum Life", statOrder = { 1569 }, level = 77, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedDamage1"] = { type = "Spawn", tier = 1, "20% reduced Damage", "+60 to maximum Life", statOrder = { 1191, 1569 }, level = 15, group = "WeaponTreeIncreasedLifeReducedDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedDamage2"] = { type = "Spawn", tier = 2, "20% reduced Damage", "+75 to maximum Life", statOrder = { 1191, 1569 }, level = 45, group = "WeaponTreeIncreasedLifeReducedDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedDamage3"] = { type = "Spawn", tier = 3, "20% reduced Damage", "+80 to maximum Life", statOrder = { 1191, 1569 }, level = 70, group = "WeaponTreeIncreasedLifeReducedDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedAllResistance1"] = { type = "Spawn", tier = 1, "+60 to maximum Life", "-5% to all Elemental Resistances", statOrder = { 1569, 1619 }, level = 15, group = "WeaponTreeIncreasedLifeReducedAllResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedAllResistance2"] = { type = "Spawn", tier = 2, "+75 to maximum Life", "-5% to all Elemental Resistances", statOrder = { 1569, 1619 }, level = 45, group = "WeaponTreeIncreasedLifeReducedAllResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedAllResistance3"] = { type = "Spawn", tier = 3, "+80 to maximum Life", "-5% to all Elemental Resistances", statOrder = { 1569, 1619 }, level = 70, group = "WeaponTreeIncreasedLifeReducedAllResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedLocalDefences1"] = { type = "Spawn", tier = 1, "50% reduced Armour, Evasion and Energy Shield", "+60 to maximum Life", statOrder = { 1555, 1569 }, level = 15, group = "WeaponTreeIncreasedLifeReducedLocalDefences", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedLocalDefences2"] = { type = "Spawn", tier = 2, "50% reduced Armour, Evasion and Energy Shield", "+75 to maximum Life", statOrder = { 1555, 1569 }, level = 45, group = "WeaponTreeIncreasedLifeReducedLocalDefences", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedLocalDefences3"] = { type = "Spawn", tier = 3, "50% reduced Armour, Evasion and Energy Shield", "+80 to maximum Life", statOrder = { 1555, 1569 }, level = 70, group = "WeaponTreeIncreasedLifeReducedLocalDefences", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndLifeRegen1"] = { type = "Spawn", tier = 1, "+15 to maximum Life", "Regenerate 0.4% of Life per second", statOrder = { 1569, 1944 }, level = 1, group = "WeaponTreeIncreasedLifeAndLifeRegen", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndLifeRegen2"] = { type = "Spawn", tier = 2, "+20 to maximum Life", "Regenerate 0.4% of Life per second", statOrder = { 1569, 1944 }, level = 40, group = "WeaponTreeIncreasedLifeAndLifeRegen", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndLifeRegen3"] = { type = "Spawn", tier = 3, "+25 to maximum Life", "Regenerate 0.4% of Life per second", statOrder = { 1569, 1944 }, level = 65, group = "WeaponTreeIncreasedLifeAndLifeRegen", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndStunThreshold1"] = { type = "Spawn", tier = 1, "+15 to maximum Life", "20% increased Stun Threshold", statOrder = { 1569, 3272 }, level = 1, group = "WeaponTreeIncreasedLifeAndStunThreshold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndStunThreshold2"] = { type = "Spawn", tier = 2, "+20 to maximum Life", "20% increased Stun Threshold", statOrder = { 1569, 3272 }, level = 40, group = "WeaponTreeIncreasedLifeAndStunThreshold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndStunThreshold3"] = { type = "Spawn", tier = 3, "+25 to maximum Life", "20% increased Stun Threshold", statOrder = { 1569, 3272 }, level = 65, group = "WeaponTreeIncreasedLifeAndStunThreshold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndLifeOnKill1"] = { type = "Spawn", tier = 1, "+15 to maximum Life", "Recover 1% of Life on Kill", statOrder = { 1569, 1749 }, level = 1, group = "WeaponTreeIncreasedLifeAndLifeOnKill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndLifeOnKill2"] = { type = "Spawn", tier = 2, "+20 to maximum Life", "Recover 1% of Life on Kill", statOrder = { 1569, 1749 }, level = 40, group = "WeaponTreeIncreasedLifeAndLifeOnKill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndLifeOnKill3"] = { type = "Spawn", tier = 3, "+25 to maximum Life", "Recover 1% of Life on Kill", statOrder = { 1569, 1749 }, level = 65, group = "WeaponTreeIncreasedLifeAndLifeOnKill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmour1"] = { type = "Spawn", tier = 1, "+20 to Armour", statOrder = { 1540 }, level = 1, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmour2"] = { type = "Spawn", tier = 2, "+35 to Armour", statOrder = { 1540 }, level = 24, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmour3"] = { type = "Spawn", tier = 3, "+50 to Armour", statOrder = { 1540 }, level = 50, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmour4"] = { type = "Spawn", tier = 4, "+65 to Armour", statOrder = { 1540 }, level = 68, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmour5"] = { type = "Spawn", tier = 5, "+80 to Armour", statOrder = { 1540 }, level = 82, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedDamageOverTimeTaken1"] = { type = "Spawn", tier = 1, "+100 to Armour", "10% increased Damage taken from Damage Over Time", statOrder = { 1540, 2245 }, level = 20, group = "WeaponTreeLocalArmourIncreasedDamageOverTimeTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedDamageOverTimeTaken2"] = { type = "Spawn", tier = 2, "+125 to Armour", "10% increased Damage taken from Damage Over Time", statOrder = { 1540, 2245 }, level = 55, group = "WeaponTreeLocalArmourIncreasedDamageOverTimeTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedDamageOverTimeTaken3"] = { type = "Spawn", tier = 3, "+150 to Armour", "10% increased Damage taken from Damage Over Time", statOrder = { 1540, 2245 }, level = 83, group = "WeaponTreeLocalArmourIncreasedDamageOverTimeTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes1"] = { type = "Spawn", tier = 1, "You take 20% increased Extra Damage from Critical Strikes", "+100 to Armour", statOrder = { 1512, 1540 }, level = 20, group = "WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes2"] = { type = "Spawn", tier = 2, "You take 20% increased Extra Damage from Critical Strikes", "+125 to Armour", statOrder = { 1512, 1540 }, level = 55, group = "WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes3"] = { type = "Spawn", tier = 3, "You take 20% increased Extra Damage from Critical Strikes", "+150 to Armour", statOrder = { 1512, 1540 }, level = 83, group = "WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedStrength1"] = { type = "Spawn", tier = 1, "5% increased Strength", "+20 to Armour", statOrder = { 1184, 1540 }, level = 1, group = "WeaponTreeLocalArmourIncreasedStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedStrength2"] = { type = "Spawn", tier = 2, "5% increased Strength", "+30 to Armour", statOrder = { 1184, 1540 }, level = 40, group = "WeaponTreeLocalArmourIncreasedStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedStrength3"] = { type = "Spawn", tier = 3, "5% increased Strength", "+40 to Armour", statOrder = { 1184, 1540 }, level = 65, group = "WeaponTreeLocalArmourIncreasedStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourImplicitEffect1"] = { type = "Spawn", tier = 1, "50% increased Implicit Modifier magnitudes", "+20 to Armour", statOrder = { 58, 1540 }, level = 1, group = "WeaponTreeLocalArmourImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourImplicitEffect2"] = { type = "Spawn", tier = 2, "50% increased Implicit Modifier magnitudes", "+30 to Armour", statOrder = { 58, 1540 }, level = 40, group = "WeaponTreeLocalArmourImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourImplicitEffect3"] = { type = "Spawn", tier = 3, "50% increased Implicit Modifier magnitudes", "+40 to Armour", statOrder = { 58, 1540 }, level = 65, group = "WeaponTreeLocalArmourImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourLocalBlock1"] = { type = "Spawn", tier = 1, "+20 to Armour", "+2% Chance to Block", statOrder = { 1540, 2249 }, level = 1, group = "WeaponTreeLocalArmourLocalBlock", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "crucible_unique_helmet", "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourLocalBlock2"] = { type = "Spawn", tier = 2, "+30 to Armour", "+2% Chance to Block", statOrder = { 1540, 2249 }, level = 40, group = "WeaponTreeLocalArmourLocalBlock", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "crucible_unique_helmet", "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourLocalBlock3"] = { type = "Spawn", tier = 3, "+40 to Armour", "+2% Chance to Block", statOrder = { 1540, 2249 }, level = 65, group = "WeaponTreeLocalArmourLocalBlock", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "crucible_unique_helmet", "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasion1"] = { type = "Spawn", tier = 1, "+20 to Evasion Rating", statOrder = { 1548 }, level = 1, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasion2"] = { type = "Spawn", tier = 2, "+35 to Evasion Rating", statOrder = { 1548 }, level = 24, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasion3"] = { type = "Spawn", tier = 3, "+50 to Evasion Rating", statOrder = { 1548 }, level = 50, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasion4"] = { type = "Spawn", tier = 4, "+65 to Evasion Rating", statOrder = { 1548 }, level = 68, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasion5"] = { type = "Spawn", tier = 5, "+80 to Evasion Rating", statOrder = { 1548 }, level = 82, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf1"] = { type = "Spawn", tier = 1, "+100 to Evasion Rating", "20% increased Duration of Ailments on You", statOrder = { 1548, 4985 }, level = 20, group = "WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf2"] = { type = "Spawn", tier = 2, "+125 to Evasion Rating", "20% increased Duration of Ailments on You", statOrder = { 1548, 4985 }, level = 55, group = "WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf3"] = { type = "Spawn", tier = 3, "+150 to Evasion Rating", "20% increased Duration of Ailments on You", statOrder = { 1548, 4985 }, level = 83, group = "WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingReducedStunRecovery1"] = { type = "Spawn", tier = 1, "+100 to Evasion Rating", "25% reduced Stun and Block Recovery", statOrder = { 1548, 1902 }, level = 20, group = "WeaponTreeLocalEvasionRatingReducedStunRecovery", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingReducedStunRecovery2"] = { type = "Spawn", tier = 2, "+125 to Evasion Rating", "25% reduced Stun and Block Recovery", statOrder = { 1548, 1902 }, level = 55, group = "WeaponTreeLocalEvasionRatingReducedStunRecovery", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingReducedStunRecovery3"] = { type = "Spawn", tier = 3, "+150 to Evasion Rating", "25% reduced Stun and Block Recovery", statOrder = { 1548, 1902 }, level = 83, group = "WeaponTreeLocalEvasionRatingReducedStunRecovery", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingIncreasedDexterity1"] = { type = "Spawn", tier = 1, "5% increased Dexterity", "+20 to Evasion Rating", statOrder = { 1185, 1548 }, level = 1, group = "WeaponTreeLocalEvasionRatingIncreasedDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingIncreasedDexterity2"] = { type = "Spawn", tier = 2, "5% increased Dexterity", "+30 to Evasion Rating", statOrder = { 1185, 1548 }, level = 40, group = "WeaponTreeLocalEvasionRatingIncreasedDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingIncreasedDexterity3"] = { type = "Spawn", tier = 3, "5% increased Dexterity", "+40 to Evasion Rating", statOrder = { 1185, 1548 }, level = 65, group = "WeaponTreeLocalEvasionRatingIncreasedDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingImplicitEffect1"] = { type = "Spawn", tier = 1, "50% increased Implicit Modifier magnitudes", "+20 to Evasion Rating", statOrder = { 58, 1548 }, level = 1, group = "WeaponTreeLocalEvasionRatingImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingImplicitEffect2"] = { type = "Spawn", tier = 2, "50% increased Implicit Modifier magnitudes", "+30 to Evasion Rating", statOrder = { 58, 1548 }, level = 40, group = "WeaponTreeLocalEvasionRatingImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingImplicitEffect3"] = { type = "Spawn", tier = 3, "50% increased Implicit Modifier magnitudes", "+40 to Evasion Rating", statOrder = { 58, 1548 }, level = 65, group = "WeaponTreeLocalEvasionRatingImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingSuppression1"] = { type = "Spawn", tier = 1, "+4% chance to Suppress Spell Damage", "+20 to Evasion Rating", statOrder = { 1143, 1548 }, level = 1, group = "WeaponTreeLocalEvasionRatingSuppression", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingSuppression2"] = { type = "Spawn", tier = 2, "+4% chance to Suppress Spell Damage", "+30 to Evasion Rating", statOrder = { 1143, 1548 }, level = 40, group = "WeaponTreeLocalEvasionRatingSuppression", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingSuppression3"] = { type = "Spawn", tier = 3, "+4% chance to Suppress Spell Damage", "+40 to Evasion Rating", statOrder = { 1143, 1548 }, level = 65, group = "WeaponTreeLocalEvasionRatingSuppression", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShield1"] = { type = "Spawn", tier = 1, "+5 to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShield2"] = { type = "Spawn", tier = 2, "+10 to maximum Energy Shield", statOrder = { 1559 }, level = 24, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShield3"] = { type = "Spawn", tier = 3, "+15 to maximum Energy Shield", statOrder = { 1559 }, level = 50, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShield4"] = { type = "Spawn", tier = 4, "+20 to maximum Energy Shield", statOrder = { 1559 }, level = 68, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShield5"] = { type = "Spawn", tier = 5, "+25 to maximum Energy Shield", statOrder = { 1559 }, level = 82, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldReducedRechargeRate1"] = { type = "Spawn", tier = 1, "+28 to maximum Energy Shield", "25% reduced Energy Shield Recharge Rate", statOrder = { 1559, 1565 }, level = 20, group = "WeaponTreeLocalEnergyShieldReducedRechargeRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldReducedRechargeRate2"] = { type = "Spawn", tier = 2, "+34 to maximum Energy Shield", "25% reduced Energy Shield Recharge Rate", statOrder = { 1559, 1565 }, level = 55, group = "WeaponTreeLocalEnergyShieldReducedRechargeRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldReducedRechargeRate3"] = { type = "Spawn", tier = 3, "+40 to maximum Energy Shield", "25% reduced Energy Shield Recharge Rate", statOrder = { 1559, 1565 }, level = 83, group = "WeaponTreeLocalEnergyShieldReducedRechargeRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldReducedManaRegeneration1"] = { type = "Spawn", tier = 1, "+28 to maximum Energy Shield", "25% reduced Mana Regeneration Rate", statOrder = { 1559, 1584 }, level = 20, group = "WeaponTreeLocalEnergyShieldReducedManaRegeneration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldReducedManaRegeneration2"] = { type = "Spawn", tier = 2, "+34 to maximum Energy Shield", "25% reduced Mana Regeneration Rate", statOrder = { 1559, 1584 }, level = 55, group = "WeaponTreeLocalEnergyShieldReducedManaRegeneration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldReducedManaRegeneration3"] = { type = "Spawn", tier = 3, "+40 to maximum Energy Shield", "25% reduced Mana Regeneration Rate", statOrder = { 1559, 1584 }, level = 83, group = "WeaponTreeLocalEnergyShieldReducedManaRegeneration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldIncreasedIntelligence1"] = { type = "Spawn", tier = 1, "5% increased Intelligence", "+9 to maximum Energy Shield", statOrder = { 1186, 1559 }, level = 1, group = "WeaponTreeLocalEnergyShieldIncreasedIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldIncreasedIntelligence2"] = { type = "Spawn", tier = 2, "5% increased Intelligence", "+12 to maximum Energy Shield", statOrder = { 1186, 1559 }, level = 40, group = "WeaponTreeLocalEnergyShieldIncreasedIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldIncreasedIntelligence3"] = { type = "Spawn", tier = 3, "5% increased Intelligence", "+15 to maximum Energy Shield", statOrder = { 1186, 1559 }, level = 65, group = "WeaponTreeLocalEnergyShieldIncreasedIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldImplicitEffect1"] = { type = "Spawn", tier = 1, "50% increased Implicit Modifier magnitudes", "+9 to maximum Energy Shield", statOrder = { 58, 1559 }, level = 1, group = "WeaponTreeLocalEnergyShieldImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldImplicitEffect2"] = { type = "Spawn", tier = 2, "50% increased Implicit Modifier magnitudes", "+12 to maximum Energy Shield", statOrder = { 58, 1559 }, level = 40, group = "WeaponTreeLocalEnergyShieldImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldImplicitEffect3"] = { type = "Spawn", tier = 3, "50% increased Implicit Modifier magnitudes", "+15 to maximum Energy Shield", statOrder = { 58, 1559 }, level = 65, group = "WeaponTreeLocalEnergyShieldImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldAndMana1"] = { type = "Spawn", tier = 1, "+9 to maximum Energy Shield", "8% increased maximum Mana", statOrder = { 1559, 1580 }, level = 1, group = "WeaponTreeLocalEnergyShieldAndMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldAndMana2"] = { type = "Spawn", tier = 2, "+12 to maximum Energy Shield", "8% increased maximum Mana", statOrder = { 1559, 1580 }, level = 40, group = "WeaponTreeLocalEnergyShieldAndMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldAndMana3"] = { type = "Spawn", tier = 3, "+15 to maximum Energy Shield", "8% increased maximum Mana", statOrder = { 1559, 1580 }, level = 65, group = "WeaponTreeLocalEnergyShieldAndMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeFireDamagePercentageMinusFireResistance1"] = { type = "Spawn", tier = 1, "30% increased Fire Damage", "-10% to Fire Resistance", statOrder = { 1357, 1625 }, level = 8, group = "WeaponTreeFireDamagePercentageMinusFireResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeFireDamagePercentageMinusFireResistance2"] = { type = "Spawn", tier = 2, "35% increased Fire Damage", "-10% to Fire Resistance", statOrder = { 1357, 1625 }, level = 42, group = "WeaponTreeFireDamagePercentageMinusFireResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeFireDamagePercentageMinusFireResistance3"] = { type = "Spawn", tier = 3, "40% increased Fire Damage", "-10% to Fire Resistance", statOrder = { 1357, 1625 }, level = 72, group = "WeaponTreeFireDamagePercentageMinusFireResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeFireDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "WeaponTreeFireDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeFireDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Fire Damage", statOrder = { 1357 }, level = 50, group = "WeaponTreeFireDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeFireDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Fire Damage", statOrder = { 1357 }, level = 77, group = "WeaponTreeFireDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeFireDamagePercentageDamageTakenAsFire1"] = { type = "Spawn", tier = 1, "9% increased Fire Damage", "3% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1357, 2447 }, level = 1, group = "WeaponTreeFireDamagePercentageDamageTakenAsFire", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeFireDamagePercentageDamageTakenAsFire2"] = { type = "Spawn", tier = 2, "12% increased Fire Damage", "3% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1357, 2447 }, level = 36, group = "WeaponTreeFireDamagePercentageDamageTakenAsFire", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeFireDamagePercentageDamageTakenAsFire3"] = { type = "Spawn", tier = 3, "15% increased Fire Damage", "3% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1357, 2447 }, level = 68, group = "WeaponTreeFireDamagePercentageDamageTakenAsFire", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeColdDamagePercentageMinusColdResistance1"] = { type = "Spawn", tier = 1, "30% increased Cold Damage", "-10% to Cold Resistance", statOrder = { 1366, 1631 }, level = 8, group = "WeaponTreeColdDamagePercentageMinusColdResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeColdDamagePercentageMinusColdResistance2"] = { type = "Spawn", tier = 2, "35% increased Cold Damage", "-10% to Cold Resistance", statOrder = { 1366, 1631 }, level = 42, group = "WeaponTreeColdDamagePercentageMinusColdResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeColdDamagePercentageMinusColdResistance3"] = { type = "Spawn", tier = 3, "40% increased Cold Damage", "-10% to Cold Resistance", statOrder = { 1366, 1631 }, level = 72, group = "WeaponTreeColdDamagePercentageMinusColdResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeColdDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "WeaponTreeColdDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeColdDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Cold Damage", statOrder = { 1366 }, level = 50, group = "WeaponTreeColdDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeColdDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Cold Damage", statOrder = { 1366 }, level = 77, group = "WeaponTreeColdDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeColdDamagePercentageDamageTakenAsCold1"] = { type = "Spawn", tier = 1, "9% increased Cold Damage", "3% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1366, 2448 }, level = 1, group = "WeaponTreeColdDamagePercentageDamageTakenAsCold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeColdDamagePercentageDamageTakenAsCold2"] = { type = "Spawn", tier = 2, "12% increased Cold Damage", "3% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1366, 2448 }, level = 36, group = "WeaponTreeColdDamagePercentageDamageTakenAsCold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeColdDamagePercentageDamageTakenAsCold3"] = { type = "Spawn", tier = 3, "15% increased Cold Damage", "3% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1366, 2448 }, level = 68, group = "WeaponTreeColdDamagePercentageDamageTakenAsCold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentageMinusLightningResistance1"] = { type = "Spawn", tier = 1, "30% increased Lightning Damage", "-10% to Lightning Resistance", statOrder = { 1377, 1636 }, level = 8, group = "WeaponTreeLightningDamagePercentageMinusLightningResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentageMinusLightningResistance2"] = { type = "Spawn", tier = 2, "35% increased Lightning Damage", "-10% to Lightning Resistance", statOrder = { 1377, 1636 }, level = 42, group = "WeaponTreeLightningDamagePercentageMinusLightningResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentageMinusLightningResistance3"] = { type = "Spawn", tier = 3, "40% increased Lightning Damage", "-10% to Lightning Resistance", statOrder = { 1377, 1636 }, level = 72, group = "WeaponTreeLightningDamagePercentageMinusLightningResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "WeaponTreeLightningDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Lightning Damage", statOrder = { 1377 }, level = 50, group = "WeaponTreeLightningDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Lightning Damage", statOrder = { 1377 }, level = 77, group = "WeaponTreeLightningDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentageDamageTakenAsLightning1"] = { type = "Spawn", tier = 1, "9% increased Lightning Damage", "3% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1377, 2449 }, level = 1, group = "WeaponTreeLightningDamagePercentageDamageTakenAsLightning", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentageDamageTakenAsLightning2"] = { type = "Spawn", tier = 2, "12% increased Lightning Damage", "3% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1377, 2449 }, level = 36, group = "WeaponTreeLightningDamagePercentageDamageTakenAsLightning", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentageDamageTakenAsLightning3"] = { type = "Spawn", tier = 3, "15% increased Lightning Damage", "3% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1377, 2449 }, level = 68, group = "WeaponTreeLightningDamagePercentageDamageTakenAsLightning", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentageMinusChaosResistance1"] = { type = "Spawn", tier = 1, "30% increased Chaos Damage", "-10% to Chaos Resistance", statOrder = { 1385, 1641 }, level = 8, group = "WeaponTreeChaosDamagePercentageMinusChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentageMinusChaosResistance2"] = { type = "Spawn", tier = 2, "35% increased Chaos Damage", "-10% to Chaos Resistance", statOrder = { 1385, 1641 }, level = 42, group = "WeaponTreeChaosDamagePercentageMinusChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentageMinusChaosResistance3"] = { type = "Spawn", tier = 3, "40% increased Chaos Damage", "-10% to Chaos Resistance", statOrder = { 1385, 1641 }, level = 72, group = "WeaponTreeChaosDamagePercentageMinusChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "WeaponTreeIncreasedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Chaos Damage", statOrder = { 1385 }, level = 50, group = "WeaponTreeIncreasedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Chaos Damage", statOrder = { 1385 }, level = 77, group = "WeaponTreeIncreasedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentageDamageTakenAsChaos1"] = { type = "Spawn", tier = 1, "9% increased Chaos Damage", "3% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 1385, 2451 }, level = 1, group = "WeaponTreeChaosDamagePercentageDamageTakenAsChaos", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentageDamageTakenAsChaos2"] = { type = "Spawn", tier = 2, "12% increased Chaos Damage", "3% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 1385, 2451 }, level = 36, group = "WeaponTreeChaosDamagePercentageDamageTakenAsChaos", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentageDamageTakenAsChaos3"] = { type = "Spawn", tier = 3, "15% increased Chaos Damage", "3% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 1385, 2451 }, level = 68, group = "WeaponTreeChaosDamagePercentageDamageTakenAsChaos", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate1"] = { type = "Spawn", tier = 1, "30% increased Global Physical Damage", "10% reduced Life Regeneration rate", statOrder = { 1231, 1577 }, level = 8, group = "WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate2"] = { type = "Spawn", tier = 2, "35% increased Global Physical Damage", "10% reduced Life Regeneration rate", statOrder = { 1231, 1577 }, level = 42, group = "WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate3"] = { type = "Spawn", tier = 3, "40% increased Global Physical Damage", "10% reduced Life Regeneration rate", statOrder = { 1231, 1577 }, level = 72, group = "WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercent1"] = { type = "Spawn", tier = 1, "15% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "WeaponTreePhysicalDamagePercent", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercent2"] = { type = "Spawn", tier = 2, "20% increased Global Physical Damage", statOrder = { 1231 }, level = 50, group = "WeaponTreePhysicalDamagePercent", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercent3"] = { type = "Spawn", tier = 3, "25% increased Global Physical Damage", statOrder = { 1231 }, level = 77, group = "WeaponTreePhysicalDamagePercent", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercentPhysicalDamageReduction1"] = { type = "Spawn", tier = 1, "9% increased Global Physical Damage", "2% additional Physical Damage Reduction", statOrder = { 1231, 2273 }, level = 1, group = "WeaponTreePhysicalDamagePercentPhysicalDamageReduction", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercentPhysicalDamageReduction2"] = { type = "Spawn", tier = 2, "12% increased Global Physical Damage", "2% additional Physical Damage Reduction", statOrder = { 1231, 2273 }, level = 36, group = "WeaponTreePhysicalDamagePercentPhysicalDamageReduction", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercentPhysicalDamageReduction3"] = { type = "Spawn", tier = 3, "15% increased Global Physical Damage", "2% additional Physical Damage Reduction", statOrder = { 1231, 2273 }, level = 68, group = "WeaponTreePhysicalDamagePercentPhysicalDamageReduction", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritsDealNoExtraDamage1"] = { type = "Spawn", tier = 1, "+4% to Critical Strike Chance", "Your Critical Strikes do not deal extra Damage", statOrder = { 1463, 2678 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndNoExtraDamageFromCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritsDealNoExtraDamage2"] = { type = "Spawn", tier = 2, "+5% to Critical Strike Chance", "Your Critical Strikes do not deal extra Damage", statOrder = { 1463, 2678 }, level = 55, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndNoExtraDamageFromCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritsDealNoExtraDamage3"] = { type = "Spawn", tier = 3, "+6% to Critical Strike Chance", "Your Critical Strikes do not deal extra Damage", statOrder = { 1463, 2678 }, level = 82, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndNoExtraDamageFromCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritMulti1"] = { type = "Spawn", tier = 1, "-3% to Critical Strike Chance", "+40% to Global Critical Strike Multiplier", statOrder = { 1463, 1488 }, level = 10, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritMulti2"] = { type = "Spawn", tier = 2, "-3% to Critical Strike Chance", "+50% to Global Critical Strike Multiplier", statOrder = { 1463, 1488 }, level = 50, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritMulti3"] = { type = "Spawn", tier = 3, "-3% to Critical Strike Chance", "+60% to Global Critical Strike Multiplier", statOrder = { 1463, 1488 }, level = 80, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritMulti2h1"] = { type = "Spawn", tier = 1, "-3% to Critical Strike Chance", "+60% to Global Critical Strike Multiplier", statOrder = { 1463, 1488 }, level = 10, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritMulti2h2"] = { type = "Spawn", tier = 2, "-3% to Critical Strike Chance", "+80% to Global Critical Strike Multiplier", statOrder = { 1463, 1488 }, level = 50, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritMulti2h3"] = { type = "Spawn", tier = 3, "-3% to Critical Strike Chance", "+100% to Global Critical Strike Multiplier", statOrder = { 1463, 1488 }, level = 80, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChance1"] = { type = "Spawn", tier = 1, "+0.4% to Critical Strike Chance", statOrder = { 1463 }, level = 1, group = "WeaponTreeLocalBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChance2"] = { type = "Spawn", tier = 2, "+0.6% to Critical Strike Chance", statOrder = { 1463 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChance3"] = { type = "Spawn", tier = 3, "+0.8% to Critical Strike Chance", statOrder = { 1463 }, level = 60, group = "WeaponTreeLocalBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "15% reduced Attack Speed", "+0.9% to Critical Strike Chance", statOrder = { 1413, 1463 }, level = 1, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "15% reduced Attack Speed", "+1.2% to Critical Strike Chance", statOrder = { 1413, 1463 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "15% reduced Attack Speed", "+1.5% to Critical Strike Chance", statOrder = { 1413, 1463 }, level = 60, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritReducedAccuracy1"] = { type = "Spawn", tier = 1, "+0.9% to Critical Strike Chance", "-500 to Accuracy Rating", statOrder = { 1463, 2024 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAccuracy", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritReducedAccuracy2"] = { type = "Spawn", tier = 2, "+1.2% to Critical Strike Chance", "-500 to Accuracy Rating", statOrder = { 1463, 2024 }, level = 55, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAccuracy", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritReducedAccuracy3"] = { type = "Spawn", tier = 3, "+1.5% to Critical Strike Chance", "-500 to Accuracy Rating", statOrder = { 1463, 2024 }, level = 82, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAccuracy", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedLessDamage1"] = { type = "Spawn", tier = 1, "30% increased Attack Speed", "20% less Global Damage", statOrder = { 1413, 10589 }, level = 1, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedLessDamage2"] = { type = "Spawn", tier = 2, "35% increased Attack Speed", "20% less Global Damage", statOrder = { 1413, 10589 }, level = 30, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedLessDamage3"] = { type = "Spawn", tier = 3, "40% increased Attack Speed", "20% less Global Damage", statOrder = { 1413, 10589 }, level = 60, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedLessDamage1"] = { type = "Spawn", tier = 1, "24% increased Attack Speed", "15% less Global Damage", statOrder = { 1413, 10589 }, level = 1, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedLessDamage2"] = { type = "Spawn", tier = 2, "27% increased Attack Speed", "15% less Global Damage", statOrder = { 1413, 10589 }, level = 30, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedLessDamage3"] = { type = "Spawn", tier = 3, "30% increased Attack Speed", "15% less Global Damage", statOrder = { 1413, 10589 }, level = 60, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeed1"] = { type = "Spawn", tier = 1, "8% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeed2"] = { type = "Spawn", tier = 2, "9% increased Attack Speed", statOrder = { 1413 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeed3"] = { type = "Spawn", tier = 3, "10% increased Attack Speed", statOrder = { 1413 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRanged1"] = { type = "Spawn", tier = 1, "5% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRanged2"] = { type = "Spawn", tier = 2, "6% increased Attack Speed", statOrder = { 1413 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRanged3"] = { type = "Spawn", tier = 3, "7% increased Attack Speed", statOrder = { 1413 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedOnslaughtOnKill1"] = { type = "Spawn", tier = 1, "4% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1413, 2993 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedOnslaughtOnKill2"] = { type = "Spawn", tier = 2, "5% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1413, 2993 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedOnslaughtOnKill3"] = { type = "Spawn", tier = 3, "6% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1413, 2993 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedOnslaughtOnKill1"] = { type = "Spawn", tier = 1, "3% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1413, 2993 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedOnslaughtOnKill2"] = { type = "Spawn", tier = 2, "4% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1413, 2993 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedOnslaughtOnKill3"] = { type = "Spawn", tier = 3, "5% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1413, 2993 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedFrenzyChargeOnKill1"] = { type = "Spawn", tier = 1, "4% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1413, 2631 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedFrenzyChargeOnKill2"] = { type = "Spawn", tier = 2, "5% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1413, 2631 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedFrenzyChargeOnKill3"] = { type = "Spawn", tier = 3, "6% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1413, 2631 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedFrenzyChargeOnKill1"] = { type = "Spawn", tier = 1, "3% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1413, 2631 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedFrenzyChargeOnKill2"] = { type = "Spawn", tier = 2, "4% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1413, 2631 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedFrenzyChargeOnKill3"] = { type = "Spawn", tier = 3, "5% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1413, 2631 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedLocalDoubleDamageChance1"] = { type = "Spawn", tier = 1, "25% reduced Attack Speed", "Attacks with this Weapon have 20% chance to deal Double Damage", statOrder = { 1413, 7927 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedLocalDoubleDamageChance2"] = { type = "Spawn", tier = 2, "25% reduced Attack Speed", "Attacks with this Weapon have 25% chance to deal Double Damage", statOrder = { 1413, 7927 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedLocalDoubleDamageChance3"] = { type = "Spawn", tier = 3, "25% reduced Attack Speed", "Attacks with this Weapon have 30% chance to deal Double Damage", statOrder = { 1413, 7927 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedLocalDoubleDamageChance1"] = { type = "Spawn", tier = 1, "20% reduced Attack Speed", "Attacks with this Weapon have 15% chance to deal Double Damage", statOrder = { 1413, 7927 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedLocalDoubleDamageChance2"] = { type = "Spawn", tier = 2, "20% reduced Attack Speed", "Attacks with this Weapon have 20% chance to deal Double Damage", statOrder = { 1413, 7927 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedLocalDoubleDamageChance3"] = { type = "Spawn", tier = 3, "20% reduced Attack Speed", "Attacks with this Weapon have 25% chance to deal Double Damage", statOrder = { 1413, 7927 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAlwaysHitReducedAttackSpeed"] = { type = "MergeOnly", tier = 1, "50% reduced Attack Speed", "Hits can't be Evaded", statOrder = { 1413, 2043 }, level = 60, group = "WeaponTreeAlwaysHitsAndLocalAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 625, 0 }, modTags = { }, }, - ["WeaponTreeLocalAlwaysHitReducedCriticalStrikeChance"] = { type = "MergeOnly", tier = 1, "-5% to Critical Strike Chance", "Hits can't be Evaded", statOrder = { 1463, 2043 }, level = 60, group = "WeaponTreeAlwaysHitsAndLocalCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 625, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRating1"] = { type = "Spawn", tier = 1, "+150 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "WeaponTreeLocalAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRating2"] = { type = "Spawn", tier = 2, "+250 to Accuracy Rating", statOrder = { 2024 }, level = 30, group = "WeaponTreeLocalAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRating3"] = { type = "Spawn", tier = 3, "+350 to Accuracy Rating", statOrder = { 2024 }, level = 60, group = "WeaponTreeLocalAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity1"] = { type = "Spawn", tier = 1, "5% increased Dexterity", "+80 to Accuracy Rating", statOrder = { 1185, 2024 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2"] = { type = "Spawn", tier = 2, "5% increased Dexterity", "+160 to Accuracy Rating", statOrder = { 1185, 2024 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity3"] = { type = "Spawn", tier = 3, "5% increased Dexterity", "+240 to Accuracy Rating", statOrder = { 1185, 2024 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2h1"] = { type = "Spawn", tier = 1, "10% increased Dexterity", "+80 to Accuracy Rating", statOrder = { 1185, 2024 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2h2"] = { type = "Spawn", tier = 2, "10% increased Dexterity", "+160 to Accuracy Rating", statOrder = { 1185, 2024 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2h3"] = { type = "Spawn", tier = 3, "10% increased Dexterity", "+240 to Accuracy Rating", statOrder = { 1185, 2024 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndEvasion1"] = { type = "Spawn", tier = 1, "15% increased Evasion Rating", "+80 to Accuracy Rating", statOrder = { 1549, 2024 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndEvasion2"] = { type = "Spawn", tier = 2, "15% increased Evasion Rating", "+160 to Accuracy Rating", statOrder = { 1549, 2024 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndEvasion3"] = { type = "Spawn", tier = 3, "15% increased Evasion Rating", "+240 to Accuracy Rating", statOrder = { 1549, 2024 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndEvasion2h1"] = { type = "Spawn", tier = 1, "30% increased Evasion Rating", "+80 to Accuracy Rating", statOrder = { 1549, 2024 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndEvasion2h2"] = { type = "Spawn", tier = 2, "30% increased Evasion Rating", "+160 to Accuracy Rating", statOrder = { 1549, 2024 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndEvasion2h3"] = { type = "Spawn", tier = 3, "30% increased Evasion Rating", "+240 to Accuracy Rating", statOrder = { 1549, 2024 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "+40% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "+50% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "+60% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "+60% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "+80% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "+100% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceCriticalsDealNoExtraDamage1"] = { type = "Spawn", tier = 1, "Your Critical Strikes do not deal extra Damage", "+5% to Spell Critical Strike Chance", statOrder = { 2678, 10126 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceCriticalsDealNoExtraDamage2"] = { type = "Spawn", tier = 2, "Your Critical Strikes do not deal extra Damage", "+5.5% to Spell Critical Strike Chance", statOrder = { 2678, 10126 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceCriticalsDealNoExtraDamage3"] = { type = "Spawn", tier = 3, "Your Critical Strikes do not deal extra Damage", "+6% to Spell Critical Strike Chance", statOrder = { 2678, 10126 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hCriticalsDealNoExtraDamage1"] = { type = "Spawn", tier = 1, "Your Critical Strikes do not deal extra Damage", "+7% to Spell Critical Strike Chance", statOrder = { 2678, 10126 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hCriticalsDealNoExtraDamage2"] = { type = "Spawn", tier = 2, "Your Critical Strikes do not deal extra Damage", "+8% to Spell Critical Strike Chance", statOrder = { 2678, 10126 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hCriticalsDealNoExtraDamage3"] = { type = "Spawn", tier = 3, "Your Critical Strikes do not deal extra Damage", "+9% to Spell Critical Strike Chance", statOrder = { 2678, 10126 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "+0.4% to Spell Critical Strike Chance", statOrder = { 10126 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "+0.5% to Spell Critical Strike Chance", statOrder = { 10126 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "+0.6% to Spell Critical Strike Chance", statOrder = { 10126 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2h1"] = { type = "Spawn", tier = 1, "+0.8% to Spell Critical Strike Chance", statOrder = { 10126 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2h2"] = { type = "Spawn", tier = 2, "+0.9% to Spell Critical Strike Chance", statOrder = { 10126 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2h3"] = { type = "Spawn", tier = 3, "+1% to Spell Critical Strike Chance", statOrder = { 10126 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceReducedSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "-30% to Critical Strike Multiplier for Spell Damage", "+1% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceReducedSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "-30% to Critical Strike Multiplier for Spell Damage", "+1.25% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceReducedSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "-30% to Critical Strike Multiplier for Spell Damage", "+1.5% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hReducedSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "-60% to Critical Strike Multiplier for Spell Damage", "+1.8% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hReducedSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "-60% to Critical Strike Multiplier for Spell Damage", "+2.2% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hReducedSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "-60% to Critical Strike Multiplier for Spell Damage", "+2.6% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "15% reduced Reservation Efficiency of Skills", "+0.8% to Spell Critical Strike Chance", statOrder = { 2230, 10126 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "15% reduced Reservation Efficiency of Skills", "+1% to Spell Critical Strike Chance", statOrder = { 2230, 10126 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "15% reduced Reservation Efficiency of Skills", "+1.2% to Spell Critical Strike Chance", statOrder = { 2230, 10126 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "25% reduced Reservation Efficiency of Skills", "+1.2% to Spell Critical Strike Chance", statOrder = { 2230, 10126 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "25% reduced Reservation Efficiency of Skills", "+1.6% to Spell Critical Strike Chance", statOrder = { 2230, 10126 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "25% reduced Reservation Efficiency of Skills", "+2% to Spell Critical Strike Chance", statOrder = { 2230, 10126 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeedLessDamage1"] = { type = "Spawn", tier = 1, "18% more Cast Speed", "10% less Global Damage", statOrder = { 10587, 10589 }, level = 1, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeedLessDamage2"] = { type = "Spawn", tier = 2, "20% more Cast Speed", "10% less Global Damage", statOrder = { 10587, 10589 }, level = 30, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeedLessDamage3"] = { type = "Spawn", tier = 3, "22% more Cast Speed", "10% less Global Damage", statOrder = { 10587, 10589 }, level = 60, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2hLessDamage1"] = { type = "Spawn", tier = 1, "24% more Cast Speed", "15% less Global Damage", statOrder = { 10587, 10589 }, level = 1, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2hLessDamage2"] = { type = "Spawn", tier = 2, "27% more Cast Speed", "15% less Global Damage", statOrder = { 10587, 10589 }, level = 30, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2hLessDamage3"] = { type = "Spawn", tier = 3, "30% more Cast Speed", "15% less Global Damage", statOrder = { 10587, 10589 }, level = 60, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed1"] = { type = "Spawn", tier = 1, "4% more Cast Speed", statOrder = { 10587 }, level = 1, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2"] = { type = "Spawn", tier = 2, "5% more Cast Speed", statOrder = { 10587 }, level = 30, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed3"] = { type = "Spawn", tier = 3, "6% more Cast Speed", statOrder = { 10587 }, level = 60, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2h1"] = { type = "Spawn", tier = 1, "8% more Cast Speed", statOrder = { 10587 }, level = 1, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2h2"] = { type = "Spawn", tier = 2, "9% more Cast Speed", statOrder = { 10587 }, level = 30, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2h3"] = { type = "Spawn", tier = 3, "10% more Cast Speed", statOrder = { 10587 }, level = 60, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeedSkillCost1"] = { type = "Spawn", tier = 1, "12% increased Cost of Skills", "6% more Cast Speed", statOrder = { 1881, 10587 }, level = 1, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeedSkillCost2"] = { type = "Spawn", tier = 2, "12% increased Cost of Skills", "7% more Cast Speed", statOrder = { 1881, 10587 }, level = 30, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeedSkillCost3"] = { type = "Spawn", tier = 3, "12% increased Cost of Skills", "8% more Cast Speed", statOrder = { 1881, 10587 }, level = 60, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2hSkillCost1"] = { type = "Spawn", tier = 1, "20% increased Cost of Skills", "10% more Cast Speed", statOrder = { 1881, 10587 }, level = 1, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2hSkillCost2"] = { type = "Spawn", tier = 2, "20% increased Cost of Skills", "12% more Cast Speed", statOrder = { 1881, 10587 }, level = 30, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2hSkillCost3"] = { type = "Spawn", tier = 3, "20% increased Cost of Skills", "14% more Cast Speed", statOrder = { 1881, 10587 }, level = 60, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeedAddedSpellDamageFromWeaponDamage1"] = { type = "Spawn", tier = 1, "Spells you Cast have Added Spell Damage equal to 12% of the Damage of this Weapon", "10% less Cast Speed", statOrder = { 10195, 10587 }, level = 10, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeedAddedSpellDamageFromWeaponDamage2"] = { type = "Spawn", tier = 2, "Spells you Cast have Added Spell Damage equal to 16% of the Damage of this Weapon", "10% less Cast Speed", statOrder = { 10195, 10587 }, level = 50, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeedAddedSpellDamageFromWeaponDamage3"] = { type = "Spawn", tier = 3, "Spells you Cast have Added Spell Damage equal to 20% of the Damage of this Weapon", "10% less Cast Speed", statOrder = { 10195, 10587 }, level = 80, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2hAddedSpellDamageFromWeaponDamage1"] = { type = "Spawn", tier = 1, "Spells you Cast have Added Spell Damage equal to 20% of the Damage of this Weapon", "15% less Cast Speed", statOrder = { 10195, 10587 }, level = 10, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2hAddedSpellDamageFromWeaponDamage2"] = { type = "Spawn", tier = 2, "Spells you Cast have Added Spell Damage equal to 25% of the Damage of this Weapon", "15% less Cast Speed", statOrder = { 10195, 10587 }, level = 50, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2hAddedSpellDamageFromWeaponDamage3"] = { type = "Spawn", tier = 3, "Spells you Cast have Added Spell Damage equal to 30% of the Damage of this Weapon", "15% less Cast Speed", statOrder = { 10195, 10587 }, level = 80, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenLessMana1"] = { type = "Spawn", tier = 1, "Regenerate 1.5% of Mana per second", "15% less maximum Mana", statOrder = { 1581, 10611 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenLessMana2"] = { type = "Spawn", tier = 2, "Regenerate 1.8% of Mana per second", "15% less maximum Mana", statOrder = { 1581, 10611 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenLessMana3"] = { type = "Spawn", tier = 3, "Regenerate 2% of Mana per second", "15% less maximum Mana", statOrder = { 1581, 10611 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hLessMana1"] = { type = "Spawn", tier = 1, "Regenerate 2% of Mana per second", "25% less maximum Mana", statOrder = { 1581, 10611 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hLessMana2"] = { type = "Spawn", tier = 2, "Regenerate 2.5% of Mana per second", "25% less maximum Mana", statOrder = { 1581, 10611 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hLessMana3"] = { type = "Spawn", tier = 3, "Regenerate 3% of Mana per second", "25% less maximum Mana", statOrder = { 1581, 10611 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 1% of Mana per second", "20% reduced Reservation Efficiency of Skills", statOrder = { 1581, 2230 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 1.3% of Mana per second", "20% reduced Reservation Efficiency of Skills", statOrder = { 1581, 2230 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 1.5% of Mana per second", "20% reduced Reservation Efficiency of Skills", statOrder = { 1581, 2230 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 1.5% of Mana per second", "30% reduced Reservation Efficiency of Skills", statOrder = { 1581, 2230 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 2% of Mana per second", "30% reduced Reservation Efficiency of Skills", statOrder = { 1581, 2230 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 2.5% of Mana per second", "30% reduced Reservation Efficiency of Skills", statOrder = { 1581, 2230 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen1"] = { type = "Spawn", tier = 1, "Regenerate 0.5% of Mana per second", statOrder = { 1581 }, level = 1, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2"] = { type = "Spawn", tier = 2, "Regenerate 0.6% of Mana per second", statOrder = { 1581 }, level = 30, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen3"] = { type = "Spawn", tier = 3, "Regenerate 0.7% of Mana per second", statOrder = { 1581 }, level = 60, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2h1"] = { type = "Spawn", tier = 1, "Regenerate 0.8% of Mana per second", statOrder = { 1581 }, level = 1, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2h2"] = { type = "Spawn", tier = 2, "Regenerate 0.9% of Mana per second", statOrder = { 1581 }, level = 30, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2h3"] = { type = "Spawn", tier = 3, "Regenerate 1% of Mana per second", statOrder = { 1581 }, level = 60, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenMoreMana1"] = { type = "Spawn", tier = 1, "Regenerate 0.2% of Mana per second", "5% more maximum Mana", statOrder = { 1581, 10611 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenMoreMana2"] = { type = "Spawn", tier = 2, "Regenerate 0.3% of Mana per second", "5% more maximum Mana", statOrder = { 1581, 10611 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenMoreMana3"] = { type = "Spawn", tier = 3, "Regenerate 0.4% of Mana per second", "5% more maximum Mana", statOrder = { 1581, 10611 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hMoreMana1"] = { type = "Spawn", tier = 1, "Regenerate 0.5% of Mana per second", "8% more maximum Mana", statOrder = { 1581, 10611 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hMoreMana2"] = { type = "Spawn", tier = 2, "Regenerate 0.6% of Mana per second", "8% more maximum Mana", statOrder = { 1581, 10611 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hMoreMana3"] = { type = "Spawn", tier = 3, "Regenerate 0.7% of Mana per second", "8% more maximum Mana", statOrder = { 1581, 10611 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenManaCostOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 0.2% of Mana per second", "10% increased Mana Cost of Skills", statOrder = { 1581, 1883 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenManaCostOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 0.3% of Mana per second", "10% increased Mana Cost of Skills", statOrder = { 1581, 1883 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenManaCostOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 0.4% of Mana per second", "10% increased Mana Cost of Skills", statOrder = { 1581, 1883 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hManaCostOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 0.5% of Mana per second", "15% increased Mana Cost of Skills", statOrder = { 1581, 1883 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hManaCostOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 0.6% of Mana per second", "15% increased Mana Cost of Skills", statOrder = { 1581, 1883 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hManaCostOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 0.7% of Mana per second", "15% increased Mana Cost of Skills", statOrder = { 1581, 1883 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions have +1% to Critical Strike Chance", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 9267, 9270 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions have +1.2% to Critical Strike Chance", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 9267, 9270 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions have +1.4% to Critical Strike Chance", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 9267, 9270 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions have +1.7% to Critical Strike Chance", "Minions have 15% reduced Attack and Cast Speed", statOrder = { 9267, 9270 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions have +2% to Critical Strike Chance", "Minions have 15% reduced Attack and Cast Speed", statOrder = { 9267, 9270 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions have +2.3% to Critical Strike Chance", "Minions have 15% reduced Attack and Cast Speed", statOrder = { 9267, 9270 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionReducedCriticalStrikeChanceMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have -1.5% to Critical Strike Chance", "Minions have +60% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionReducedCriticalStrikeChanceMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have -1.5% to Critical Strike Chance", "Minions have +80% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionReducedCriticalStrikeChanceMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have -1.5% to Critical Strike Chance", "Minions have +100% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionReducedCriticalStrikeChance2hMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have -1.5% to Critical Strike Chance", "Minions have +100% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionReducedCriticalStrikeChance2hMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have -1.5% to Critical Strike Chance", "Minions have +130% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionReducedCriticalStrikeChance2hMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have -1.5% to Critical Strike Chance", "Minions have +160% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions have +0.4% to Critical Strike Chance", statOrder = { 9267 }, level = 1, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions have +0.6% to Critical Strike Chance", statOrder = { 9267 }, level = 30, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions have +0.8% to Critical Strike Chance", statOrder = { 9267 }, level = 60, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2h1"] = { type = "Spawn", tier = 1, "Minions have +0.7% to Critical Strike Chance", statOrder = { 9267 }, level = 1, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2h2"] = { type = "Spawn", tier = 2, "Minions have +1% to Critical Strike Chance", statOrder = { 9267 }, level = 30, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2h3"] = { type = "Spawn", tier = 3, "Minions have +1.3% to Critical Strike Chance", statOrder = { 9267 }, level = 60, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have +0.2% to Critical Strike Chance", "Minions have +25% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have +0.3% to Critical Strike Chance", "Minions have +25% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have +0.4% to Critical Strike Chance", "Minions have +25% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have +0.3% to Critical Strike Chance", "Minions have +35% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have +0.5% to Critical Strike Chance", "Minions have +35% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have +0.7% to Critical Strike Chance", "Minions have +35% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1% to Critical Strike Chance", statOrder = { 2145, 9267 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1.2% to Critical Strike Chance", statOrder = { 2145, 9267 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1.4% to Critical Strike Chance", statOrder = { 2145, 9267 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "25% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1.7% to Critical Strike Chance", statOrder = { 2145, 9267 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "25% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +2% to Critical Strike Chance", statOrder = { 2145, 9267 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "25% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +2.3% to Critical Strike Chance", statOrder = { 2145, 9267 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedMinionNoExtraCritDamage1"] = { type = "Spawn", tier = 1, "Minions have 12% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9270, 9324 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedMinionNoExtraCritDamage2"] = { type = "Spawn", tier = 2, "Minions have 16% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9270, 9324 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedMinionNoExtraCritDamage3"] = { type = "Spawn", tier = 3, "Minions have 20% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9270, 9324 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hMinionNoExtraCritDamage1"] = { type = "Spawn", tier = 1, "Minions have 18% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9270, 9324 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hMinionNoExtraCritDamage2"] = { type = "Spawn", tier = 2, "Minions have 24% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9270, 9324 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hMinionNoExtraCritDamage3"] = { type = "Spawn", tier = 3, "Minions have 30% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9270, 9324 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions have 8% increased Attack and Cast Speed", statOrder = { 9270 }, level = 1, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions have 10% increased Attack and Cast Speed", statOrder = { 9270 }, level = 30, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions have 12% increased Attack and Cast Speed", statOrder = { 9270 }, level = 60, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 14% increased Attack and Cast Speed", statOrder = { 9270 }, level = 1, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 18% increased Attack and Cast Speed", statOrder = { 9270 }, level = 30, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2h3"] = { type = "Spawn", tier = 3, "Minions have 22% increased Attack and Cast Speed", statOrder = { 9270 }, level = 60, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 12% increased Attack and Cast Speed", "Minions take 15% increased Damage", statOrder = { 9270, 9299 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 16% increased Attack and Cast Speed", "Minions take 15% increased Damage", statOrder = { 9270, 9299 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 20% increased Attack and Cast Speed", "Minions take 15% increased Damage", statOrder = { 9270, 9299 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 18% increased Attack and Cast Speed", "Minions take 25% increased Damage", statOrder = { 9270, 9299 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 24% increased Attack and Cast Speed", "Minions take 25% increased Damage", statOrder = { 9270, 9299 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 30% increased Attack and Cast Speed", "Minions take 25% increased Damage", statOrder = { 9270, 9299 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedReducedMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 4% increased Attack and Cast Speed", "Minions take 10% reduced Damage", statOrder = { 9270, 9299 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedReducedMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 5% increased Attack and Cast Speed", "Minions take 10% reduced Damage", statOrder = { 9270, 9299 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedReducedMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 6% increased Attack and Cast Speed", "Minions take 10% reduced Damage", statOrder = { 9270, 9299 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hReducedMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 8% increased Attack and Cast Speed", "Minions take 15% reduced Damage", statOrder = { 9270, 9299 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hReducedMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 10% increased Attack and Cast Speed", "Minions take 15% reduced Damage", statOrder = { 9270, 9299 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hReducedMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 12% increased Attack and Cast Speed", "Minions take 15% reduced Damage", statOrder = { 9270, 9299 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracyReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +400 to Accuracy Rating", statOrder = { 2145, 9264 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracyReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +500 to Accuracy Rating", statOrder = { 2145, 9264 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracyReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +600 to Accuracy Rating", statOrder = { 2145, 9264 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2hReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +700 to Accuracy Rating", statOrder = { 2145, 9264 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2hReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +850 to Accuracy Rating", statOrder = { 2145, 9264 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2hReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1000 to Accuracy Rating", statOrder = { 2145, 9264 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy1"] = { type = "Spawn", tier = 1, "Minions have +200 to Accuracy Rating", statOrder = { 9264 }, level = 1, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2"] = { type = "Spawn", tier = 2, "Minions have +250 to Accuracy Rating", statOrder = { 9264 }, level = 30, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy3"] = { type = "Spawn", tier = 3, "Minions have +300 to Accuracy Rating", statOrder = { 9264 }, level = 60, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2h1"] = { type = "Spawn", tier = 1, "Minions have +300 to Accuracy Rating", statOrder = { 9264 }, level = 1, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2h2"] = { type = "Spawn", tier = 2, "Minions have +400 to Accuracy Rating", statOrder = { 9264 }, level = 30, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2h3"] = { type = "Spawn", tier = 3, "Minions have +500 to Accuracy Rating", statOrder = { 9264 }, level = 60, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracyMinionEvasion1"] = { type = "Spawn", tier = 1, "Minions have +100 to Accuracy Rating", "Minions have 25% increased Evasion Rating", statOrder = { 9264, 9304 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracyMinionEvasion2"] = { type = "Spawn", tier = 2, "Minions have +150 to Accuracy Rating", "Minions have 25% increased Evasion Rating", statOrder = { 9264, 9304 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracyMinionEvasion3"] = { type = "Spawn", tier = 3, "Minions have +200 to Accuracy Rating", "Minions have 25% increased Evasion Rating", statOrder = { 9264, 9304 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2hMinionEvasion1"] = { type = "Spawn", tier = 1, "Minions have +160 to Accuracy Rating", "Minions have 40% increased Evasion Rating", statOrder = { 9264, 9304 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2hMinionEvasion2"] = { type = "Spawn", tier = 2, "Minions have +240 to Accuracy Rating", "Minions have 40% increased Evasion Rating", statOrder = { 9264, 9304 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2hMinionEvasion3"] = { type = "Spawn", tier = 3, "Minions have +320 to Accuracy Rating", "Minions have 40% increased Evasion Rating", statOrder = { 9264, 9304 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAlwaysHitMinionCannotCrit"] = { type = "Spawn", tier = 1, "Minions never deal Critical Strikes", "Minions' Hits can't be Evaded", statOrder = { 9279, 9307 }, level = 60, group = "WeaponTreeMinionAlwaysHitAndCannotCrit", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockNoChanceToBlock1"] = { type = "Spawn", tier = 1, "16% Chance to Block Spell Damage", "No Chance to Block", statOrder = { 1160, 3266 }, level = 15, group = "WeaponTreeSpellBlockNoChanceToBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockNoChanceToBlock2"] = { type = "Spawn", tier = 2, "20% Chance to Block Spell Damage", "No Chance to Block", statOrder = { 1160, 3266 }, level = 48, group = "WeaponTreeSpellBlockNoChanceToBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockNoChanceToBlock3"] = { type = "Spawn", tier = 3, "24% Chance to Block Spell Damage", "No Chance to Block", statOrder = { 1160, 3266 }, level = 78, group = "WeaponTreeSpellBlockNoChanceToBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockReducedLocalBlock1"] = { type = "Spawn", tier = 1, "8% Chance to Block Spell Damage", "-5% Chance to Block", statOrder = { 1160, 2249 }, level = 1, group = "WeaponTreeSpellBlockReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockReducedLocalBlock2"] = { type = "Spawn", tier = 2, "10% Chance to Block Spell Damage", "-5% Chance to Block", statOrder = { 1160, 2249 }, level = 35, group = "WeaponTreeSpellBlockReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockReducedLocalBlock3"] = { type = "Spawn", tier = 3, "12% Chance to Block Spell Damage", "-5% Chance to Block", statOrder = { 1160, 2249 }, level = 70, group = "WeaponTreeSpellBlockReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "8% Chance to Block Spell Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 1160, 4996 }, level = 1, group = "WeaponTreeSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "10% Chance to Block Spell Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 1160, 4996 }, level = 35, group = "WeaponTreeSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockDamageFromBlockedHits3"] = { type = "Spawn", tier = 3, "12% Chance to Block Spell Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 1160, 4996 }, level = 70, group = "WeaponTreeSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlock1"] = { type = "Spawn", tier = 1, "3% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "WeaponTreeSpellBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlock2"] = { type = "Spawn", tier = 2, "4% Chance to Block Spell Damage", statOrder = { 1160 }, level = 35, group = "WeaponTreeSpellBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlock3"] = { type = "Spawn", tier = 3, "5% Chance to Block Spell Damage", statOrder = { 1160 }, level = 70, group = "WeaponTreeSpellBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockMoreMana1"] = { type = "Spawn", tier = 1, "2% Chance to Block Spell Damage", "5% more maximum Mana", statOrder = { 1160, 10611 }, level = 48, group = "WeaponTreeSpellBlockMoreMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockMoreMana2"] = { type = "Spawn", tier = 2, "3% Chance to Block Spell Damage", "5% more maximum Mana", statOrder = { 1160, 10611 }, level = 78, group = "WeaponTreeSpellBlockMoreMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockCannotBlockSpells1"] = { type = "Spawn", tier = 1, "+8% Chance to Block", "Cannot Block Spell Damage", statOrder = { 2249, 5428 }, level = 15, group = "WeaponTreeLocalBlockCannotBlockSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockCannotBlockSpells2"] = { type = "Spawn", tier = 2, "+10% Chance to Block", "Cannot Block Spell Damage", statOrder = { 2249, 5428 }, level = 48, group = "WeaponTreeLocalBlockCannotBlockSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockCannotBlockSpells3"] = { type = "Spawn", tier = 3, "+12% Chance to Block", "Cannot Block Spell Damage", statOrder = { 2249, 5428 }, level = 78, group = "WeaponTreeLocalBlockCannotBlockSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "+8% Chance to Block", "You take 10% of Damage from Blocked Hits", statOrder = { 2249, 4996 }, level = 1, group = "WeaponTreeLocalBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "+10% Chance to Block", "You take 10% of Damage from Blocked Hits", statOrder = { 2249, 4996 }, level = 35, group = "WeaponTreeLocalBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockDamageFromBlockedHits3"] = { type = "Spawn", tier = 3, "+12% Chance to Block", "You take 10% of Damage from Blocked Hits", statOrder = { 2249, 4996 }, level = 70, group = "WeaponTreeLocalBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockReducedLocalDefences1"] = { type = "Spawn", tier = 1, "40% reduced Armour, Evasion and Energy Shield", "+6% Chance to Block", statOrder = { 1555, 2249 }, level = 1, group = "WeaponTreeLocalBlockReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockReducedLocalDefences2"] = { type = "Spawn", tier = 2, "40% reduced Armour, Evasion and Energy Shield", "+7% Chance to Block", statOrder = { 1555, 2249 }, level = 35, group = "WeaponTreeLocalBlockReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockReducedLocalDefences3"] = { type = "Spawn", tier = 3, "40% reduced Armour, Evasion and Energy Shield", "+8% Chance to Block", statOrder = { 1555, 2249 }, level = 70, group = "WeaponTreeLocalBlockReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlock1"] = { type = "Spawn", tier = 1, "+3% Chance to Block", statOrder = { 2249 }, level = 1, group = "WeaponTreeLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlock2"] = { type = "Spawn", tier = 2, "+4% Chance to Block", statOrder = { 2249 }, level = 35, group = "WeaponTreeLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlock3"] = { type = "Spawn", tier = 3, "+5% Chance to Block", statOrder = { 2249 }, level = 70, group = "WeaponTreeLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockLifeOnBlock1"] = { type = "Spawn", tier = 1, "30 Life gained when you Block", "+2% Chance to Block", statOrder = { 1757, 2249 }, level = 10, group = "WeaponTreeLocalBlockLifeOnBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockLifeOnBlock2"] = { type = "Spawn", tier = 2, "30 Life gained when you Block", "+3% Chance to Block", statOrder = { 1757, 2249 }, level = 42, group = "WeaponTreeLocalBlockLifeOnBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockBlockRecovery1"] = { type = "Spawn", tier = 1, "30% increased Block Recovery", "+2% Chance to Block", statOrder = { 1167, 2249 }, level = 1, group = "WeaponTreeLocalBlockBlockRecovery", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockBlockRecovery2"] = { type = "Spawn", tier = 2, "30% increased Block Recovery", "+3% Chance to Block", statOrder = { 1167, 2249 }, level = 35, group = "WeaponTreeLocalBlockBlockRecovery", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesReducedMaximumLife1"] = { type = "Spawn", tier = 1, "40% increased Armour, Evasion and Energy Shield", "5% reduced maximum Life", statOrder = { 1555, 1571 }, level = 10, group = "WeaponTreeLocalDefencesReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesReducedMaximumLife2"] = { type = "Spawn", tier = 2, "50% increased Armour, Evasion and Energy Shield", "5% reduced maximum Life", statOrder = { 1555, 1571 }, level = 42, group = "WeaponTreeLocalDefencesReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesReducedMaximumLife3"] = { type = "Spawn", tier = 3, "60% increased Armour, Evasion and Energy Shield", "5% reduced maximum Life", statOrder = { 1555, 1571 }, level = 75, group = "WeaponTreeLocalDefencesReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesReducedLocalBlock1"] = { type = "Spawn", tier = 1, "40% increased Armour, Evasion and Energy Shield", "-5% Chance to Block", statOrder = { 1555, 2249 }, level = 1, group = "WeaponTreeLocalDefencesReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesReducedLocalBlock2"] = { type = "Spawn", tier = 2, "50% increased Armour, Evasion and Energy Shield", "-5% Chance to Block", statOrder = { 1555, 2249 }, level = 35, group = "WeaponTreeLocalDefencesReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesReducedLocalBlock3"] = { type = "Spawn", tier = 3, "60% increased Armour, Evasion and Energy Shield", "-5% Chance to Block", statOrder = { 1555, 2249 }, level = 70, group = "WeaponTreeLocalDefencesReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefences1"] = { type = "Spawn", tier = 1, "24% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 1, group = "WeaponTreeLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefences2"] = { type = "Spawn", tier = 2, "32% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 35, group = "WeaponTreeLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefences3"] = { type = "Spawn", tier = 3, "40% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 70, group = "WeaponTreeLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesReflectDamageTaken1"] = { type = "Spawn", tier = 1, "40% of Damage from your Hits cannot be Reflected", "15% increased Armour, Evasion and Energy Shield", statOrder = { 7, 1555 }, level = 20, group = "WeaponTreeLocalDefencesReflectDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesReflectDamageTaken2"] = { type = "Spawn", tier = 2, "40% of Damage from your Hits cannot be Reflected", "20% increased Armour, Evasion and Energy Shield", statOrder = { 7, 1555 }, level = 20, group = "WeaponTreeLocalDefencesReflectDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesReflectDamageTaken3"] = { type = "Spawn", tier = 3, "40% of Damage from your Hits cannot be Reflected", "25% increased Armour, Evasion and Energy Shield", statOrder = { 7, 1555 }, level = 20, group = "WeaponTreeLocalDefencesReflectDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesOffHandAttackDamage1"] = { type = "Spawn", tier = 1, "25% increased Attack Damage with Off Hand", "15% increased Armour, Evasion and Energy Shield", statOrder = { 1283, 1555 }, level = 10, group = "WeaponTreeLocalDefencesOffHandAttackDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesOffHandAttackDamage2"] = { type = "Spawn", tier = 2, "25% increased Attack Damage with Off Hand", "20% increased Armour, Evasion and Energy Shield", statOrder = { 1283, 1555 }, level = 42, group = "WeaponTreeLocalDefencesOffHandAttackDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesOffHandAttackDamage3"] = { type = "Spawn", tier = 3, "25% increased Attack Damage with Off Hand", "25% increased Armour, Evasion and Energy Shield", statOrder = { 1283, 1555 }, level = 75, group = "WeaponTreeLocalDefencesOffHandAttackDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeFireResistanceReducedColdResistance1"] = { type = "Spawn", tier = 1, "+30% to Fire Resistance", "-20% to Cold Resistance", statOrder = { 1625, 1631 }, level = 1, group = "WeaponTreeFireResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFireResistanceReducedColdResistance2"] = { type = "Spawn", tier = 2, "+36% to Fire Resistance", "-20% to Cold Resistance", statOrder = { 1625, 1631 }, level = 35, group = "WeaponTreeFireResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFireResistanceReducedColdResistance3"] = { type = "Spawn", tier = 3, "+42% to Fire Resistance", "-20% to Cold Resistance", statOrder = { 1625, 1631 }, level = 70, group = "WeaponTreeFireResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFireResistanceReducedLightningResistance1"] = { type = "Spawn", tier = 1, "+30% to Fire Resistance", "-20% to Lightning Resistance", statOrder = { 1625, 1636 }, level = 1, group = "WeaponTreeFireResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFireResistanceReducedLightningResistance2"] = { type = "Spawn", tier = 2, "+36% to Fire Resistance", "-20% to Lightning Resistance", statOrder = { 1625, 1636 }, level = 35, group = "WeaponTreeFireResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFireResistanceReducedLightningResistance3"] = { type = "Spawn", tier = 3, "+42% to Fire Resistance", "-20% to Lightning Resistance", statOrder = { 1625, 1636 }, level = 70, group = "WeaponTreeFireResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeColdResistanceReducedFireResistance1"] = { type = "Spawn", tier = 1, "-20% to Fire Resistance", "+30% to Cold Resistance", statOrder = { 1625, 1631 }, level = 1, group = "WeaponTreeColdResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeColdResistanceReducedFireResistance2"] = { type = "Spawn", tier = 2, "-20% to Fire Resistance", "+36% to Cold Resistance", statOrder = { 1625, 1631 }, level = 35, group = "WeaponTreeColdResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeColdResistanceReducedFireResistance3"] = { type = "Spawn", tier = 3, "-20% to Fire Resistance", "+42% to Cold Resistance", statOrder = { 1625, 1631 }, level = 70, group = "WeaponTreeColdResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeColdResistanceReducedLightningResistance1"] = { type = "Spawn", tier = 1, "+30% to Cold Resistance", "-20% to Lightning Resistance", statOrder = { 1631, 1636 }, level = 1, group = "WeaponTreeColdResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeColdResistanceReducedLightningResistance2"] = { type = "Spawn", tier = 2, "+36% to Cold Resistance", "-20% to Lightning Resistance", statOrder = { 1631, 1636 }, level = 35, group = "WeaponTreeColdResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeColdResistanceReducedLightningResistance3"] = { type = "Spawn", tier = 3, "+42% to Cold Resistance", "-20% to Lightning Resistance", statOrder = { 1631, 1636 }, level = 70, group = "WeaponTreeColdResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeLightningResistanceReducedColdResistance1"] = { type = "Spawn", tier = 1, "-20% to Cold Resistance", "+30% to Lightning Resistance", statOrder = { 1631, 1636 }, level = 1, group = "WeaponTreeLightningResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeLightningResistanceReducedColdResistance2"] = { type = "Spawn", tier = 2, "-20% to Cold Resistance", "+36% to Lightning Resistance", statOrder = { 1631, 1636 }, level = 35, group = "WeaponTreeLightningResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeLightningResistanceReducedColdResistance3"] = { type = "Spawn", tier = 3, "-20% to Cold Resistance", "+42% to Lightning Resistance", statOrder = { 1631, 1636 }, level = 70, group = "WeaponTreeLightningResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeLightningResistanceReducedFireResistance1"] = { type = "Spawn", tier = 1, "-20% to Fire Resistance", "+30% to Lightning Resistance", statOrder = { 1625, 1636 }, level = 1, group = "WeaponTreeLightningResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeLightningResistanceReducedFireResistance2"] = { type = "Spawn", tier = 2, "-20% to Fire Resistance", "+36% to Lightning Resistance", statOrder = { 1625, 1636 }, level = 35, group = "WeaponTreeLightningResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeLightningResistanceReducedFireResistance3"] = { type = "Spawn", tier = 3, "-20% to Fire Resistance", "+42% to Lightning Resistance", statOrder = { 1625, 1636 }, level = 70, group = "WeaponTreeLightningResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeChaosResistanceReducedElementalResistance1"] = { type = "Spawn", tier = 1, "-6% to all Elemental Resistances", "+19% to Chaos Resistance", statOrder = { 1619, 1641 }, level = 10, group = "WeaponTreeChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeChaosResistanceReducedElementalResistance2"] = { type = "Spawn", tier = 2, "-6% to all Elemental Resistances", "+23% to Chaos Resistance", statOrder = { 1619, 1641 }, level = 42, group = "WeaponTreeChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeChaosResistanceReducedElementalResistance3"] = { type = "Spawn", tier = 3, "-6% to all Elemental Resistances", "+27% to Chaos Resistance", statOrder = { 1619, 1641 }, level = 75, group = "WeaponTreeChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedChaosResistance1"] = { type = "Spawn", tier = 1, "+10% to all Elemental Resistances", "-13% to Chaos Resistance", statOrder = { 1619, 1641 }, level = 10, group = "WeaponTreeElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedChaosResistance2"] = { type = "Spawn", tier = 2, "+12% to all Elemental Resistances", "-13% to Chaos Resistance", statOrder = { 1619, 1641 }, level = 42, group = "WeaponTreeElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedChaosResistance3"] = { type = "Spawn", tier = 3, "+14% to all Elemental Resistances", "-13% to Chaos Resistance", statOrder = { 1619, 1641 }, level = 75, group = "WeaponTreeElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedLocalDefences1"] = { type = "Spawn", tier = 1, "25% reduced Armour, Evasion and Energy Shield", "+10% to all Elemental Resistances", statOrder = { 1555, 1619 }, level = 1, group = "WeaponTreeElementalResistanceReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedLocalDefences2"] = { type = "Spawn", tier = 2, "25% reduced Armour, Evasion and Energy Shield", "+12% to all Elemental Resistances", statOrder = { 1555, 1619 }, level = 35, group = "WeaponTreeElementalResistanceReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedLocalDefences3"] = { type = "Spawn", tier = 3, "25% reduced Armour, Evasion and Energy Shield", "+14% to all Elemental Resistances", statOrder = { 1555, 1619 }, level = 70, group = "WeaponTreeElementalResistanceReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedLocalBlock1"] = { type = "Spawn", tier = 1, "+10% to all Elemental Resistances", "-4% Chance to Block", statOrder = { 1619, 2249 }, level = 1, group = "WeaponTreeElementalResistanceReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedLocalBlock2"] = { type = "Spawn", tier = 2, "+12% to all Elemental Resistances", "-4% Chance to Block", statOrder = { 1619, 2249 }, level = 35, group = "WeaponTreeElementalResistanceReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedLocalBlock3"] = { type = "Spawn", tier = 3, "+14% to all Elemental Resistances", "-4% Chance to Block", statOrder = { 1619, 2249 }, level = 70, group = "WeaponTreeElementalResistanceReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["WeaponTreeChaosResistanceReducedMaximumLife1"] = { type = "Spawn", tier = 1, "5% reduced maximum Life", "+19% to Chaos Resistance", statOrder = { 1571, 1641 }, level = 10, group = "WeaponTreeChaosResistanceReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeChaosResistanceReducedMaximumLife2"] = { type = "Spawn", tier = 2, "5% reduced maximum Life", "+23% to Chaos Resistance", statOrder = { 1571, 1641 }, level = 42, group = "WeaponTreeChaosResistanceReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeChaosResistanceReducedMaximumLife3"] = { type = "Spawn", tier = 3, "5% reduced maximum Life", "+27% to Chaos Resistance", statOrder = { 1571, 1641 }, level = 75, group = "WeaponTreeChaosResistanceReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeMaximumFireResistanceReducedMaximumColdResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Fire Resistance", "-2% to maximum Cold Resistance", statOrder = { 1623, 1629 }, level = 45, group = "WeaponTreeMaximumFireResistanceReducedMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumFireResistanceReducedMaximumColdResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Fire Resistance", "-2% to maximum Cold Resistance", statOrder = { 1623, 1629 }, level = 82, group = "WeaponTreeMaximumFireResistanceReducedMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Fire Resistance", "-2% to maximum Lightning Resistance", statOrder = { 1623, 1634 }, level = 45, group = "WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Fire Resistance", "-2% to maximum Lightning Resistance", statOrder = { 1623, 1634 }, level = 82, group = "WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumColdResistanceReducedMaximumFireResistance1"] = { type = "Spawn", tier = 1, "-2% to maximum Fire Resistance", "+3% to maximum Cold Resistance", statOrder = { 1623, 1629 }, level = 45, group = "WeaponTreeMaximumColdResistanceReducedMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumColdResistanceReducedMaximumFireResistance2"] = { type = "Spawn", tier = 2, "-2% to maximum Fire Resistance", "+4% to maximum Cold Resistance", statOrder = { 1623, 1629 }, level = 82, group = "WeaponTreeMaximumColdResistanceReducedMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Cold Resistance", "-2% to maximum Lightning Resistance", statOrder = { 1629, 1634 }, level = 45, group = "WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Cold Resistance", "-2% to maximum Lightning Resistance", statOrder = { 1629, 1634 }, level = 82, group = "WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumLightningResistanceMaximumColdResistance1"] = { type = "Spawn", tier = 1, "-2% to maximum Cold Resistance", "+3% to maximum Lightning Resistance", statOrder = { 1629, 1634 }, level = 45, group = "WeaponTreeMaximumLightningResistanceMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumLightningResistanceMaximumColdResistance2"] = { type = "Spawn", tier = 2, "-2% to maximum Cold Resistance", "+4% to maximum Lightning Resistance", statOrder = { 1629, 1634 }, level = 82, group = "WeaponTreeMaximumLightningResistanceMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumLightningResistanceMaximumFireResistance1"] = { type = "Spawn", tier = 1, "-2% to maximum Fire Resistance", "+3% to maximum Lightning Resistance", statOrder = { 1623, 1634 }, level = 45, group = "WeaponTreeMaximumLightningResistanceMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumLightningResistanceMaximumFireResistance2"] = { type = "Spawn", tier = 2, "-2% to maximum Fire Resistance", "+4% to maximum Lightning Resistance", statOrder = { 1623, 1634 }, level = 82, group = "WeaponTreeMaximumLightningResistanceMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance1"] = { type = "Spawn", tier = 1, "-5% to maximum Chaos Resistance", "+1% to all maximum Elemental Resistances", statOrder = { 1640, 1643 }, level = 60, group = "WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance2"] = { type = "Spawn", tier = 2, "-5% to maximum Chaos Resistance", "+2% to all maximum Elemental Resistances", statOrder = { 1640, 1643 }, level = 85, group = "WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Chaos Resistance", "-1% to all maximum Elemental Resistances", statOrder = { 1640, 1643 }, level = 60, group = "WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Chaos Resistance", "-1% to all maximum Elemental Resistances", statOrder = { 1640, 1643 }, level = 85, group = "WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneMinionInstability"] = { type = "Spawn", tier = 1, "Minion Instability", statOrder = { 10799 }, level = 30, group = "WeaponTreeMinionInstability", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneResoluteTechnique"] = { type = "Spawn", tier = 1, "Resolute Technique", statOrder = { 10829 }, level = 30, group = "WeaponTreeResoluteTechnique", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneBloodMagic"] = { type = "Spawn", tier = 1, "Blood Magic", statOrder = { 10773 }, level = 30, group = "WeaponTreeBloodMagic", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystonePainAttunement"] = { type = "Spawn", tier = 1, "Pain Attunement", statOrder = { 10801 }, level = 30, group = "WeaponTreePainAttunement", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneElementalEquilibrium"] = { type = "Spawn", tier = 1, "Elemental Equilibrium", statOrder = { 10782 }, level = 30, group = "WeaponTreeElementalEquilibrium", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneIronGrip"] = { type = "Spawn", tier = 1, "Iron Grip", statOrder = { 10817 }, level = 30, group = "WeaponTreeIronGrip", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystonePointBlank"] = { type = "Spawn", tier = 1, "Point Blank", statOrder = { 10802 }, level = 30, group = "WeaponTreePointBlank", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneAcrobatics"] = { type = "Spawn", tier = 1, "Acrobatics", statOrder = { 10768 }, level = 30, group = "WeaponTreeAcrobatics", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneGhostReaver"] = { type = "Spawn", tier = 1, "Ghost Reaver", statOrder = { 10788 }, level = 30, group = "WeaponTreeKeystoneGhostReaver", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneVaalPact"] = { type = "Spawn", tier = 1, "Vaal Pact", statOrder = { 10822 }, level = 30, group = "WeaponTreeVaalPact", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneElementalOverload"] = { type = "Spawn", tier = 1, "Elemental Overload", statOrder = { 10783 }, level = 30, group = "WeaponTreeElementalOverload", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneAvatarOfFire"] = { type = "Spawn", tier = 1, "Avatar of Fire", statOrder = { 10771 }, level = 30, group = "WeaponTreeAvatarOfFire", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneEldritchBattery"] = { type = "Spawn", tier = 1, "Eldritch Battery", statOrder = { 10781 }, level = 30, group = "WeaponTreeEldritchBattery", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneAncestralBond"] = { type = "Spawn", tier = 1, "Ancestral Bond", statOrder = { 10770 }, level = 30, group = "WeaponTreeAncestralBond", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneCrimsonDance"] = { type = "Spawn", tier = 1, "Crimson Dance", statOrder = { 10778 }, level = 30, group = "WeaponTreeCrimsonDance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystonePerfectAgony"] = { type = "Spawn", tier = 1, "Perfect Agony", statOrder = { 10769 }, level = 30, group = "WeaponTreePerfectAgony", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneRunebinder"] = { type = "Spawn", tier = 1, "Runebinder", statOrder = { 10809 }, level = 30, group = "WeaponTreeRunebinder", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneGlancingBlows"] = { type = "Spawn", tier = 1, "Glancing Blows", statOrder = { 10789 }, level = 30, group = "WeaponTreeGlancingBlows", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneCallToArms"] = { type = "Spawn", tier = 1, "Call to Arms", statOrder = { 10774 }, level = 30, group = "WeaponTreeCallToArms", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneTheAgnostic"] = { type = "Spawn", tier = 1, "The Agnostic", statOrder = { 10800 }, level = 30, group = "WeaponTreeTheAgnostic", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneSupremeEgo"] = { type = "Spawn", tier = 1, "Supreme Ego", statOrder = { 10818 }, level = 30, group = "WeaponTreeSupremeEgo", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneTheImpaler"] = { type = "Spawn", tier = 1, "The Impaler", statOrder = { 10793 }, level = 30, group = "WeaponTreeImpaler", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneDoomsday"] = { type = "Spawn", tier = 1, "Hex Master", statOrder = { 10791 }, level = 30, group = "WeaponTreeHexMaster", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneLetheShade"] = { type = "Spawn", tier = 1, "Lethe Shade", statOrder = { 10795 }, level = 30, group = "WeaponTreeLetheShade", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneGhostDance"] = { type = "Spawn", tier = 1, "Ghost Dance", statOrder = { 10787 }, level = 30, group = "WeaponTreeGhostDance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneVersatileCombatant"] = { type = "Spawn", tier = 1, "Versatile Combatant", statOrder = { 10823 }, level = 30, group = "WeaponTreeVersatileCombatant", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneMagebane"] = { type = "Spawn", tier = 1, "Magebane", statOrder = { 10796 }, level = 30, group = "WeaponTreeMagebane", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneSolipsism"] = { type = "Spawn", tier = 1, "Solipsism", statOrder = { 10815 }, level = 30, group = "WeaponTreeSolipsism", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneDivineShield"] = { type = "Spawn", tier = 1, "Divine Shield", statOrder = { 10780 }, level = 30, group = "WeaponTreeDivineShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneIronWill"] = { type = "Spawn", tier = 1, "Iron Will", statOrder = { 10830 }, level = 30, group = "WeaponTreeIronWill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneWickedWard"] = { type = "Spawn", tier = 1, "Wicked Ward", statOrder = { 10825 }, level = 30, group = "WeaponTreeWickedWard", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneWindDancer"] = { type = "Spawn", tier = 1, "Wind Dancer", statOrder = { 10826 }, level = 30, group = "WeaponTreeWindDancer", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneConduit"] = { type = "Spawn", tier = 1, "Conduit", statOrder = { 10776 }, level = 30, group = "WeaponTreeConduit", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneArrowDancing"] = { type = "Spawn", tier = 1, "Arrow Dancing", statOrder = { 10805 }, level = 30, group = "WeaponTreeArrowDodging", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystonePreciseTechnique"] = { type = "Spawn", tier = 1, "Precise Technique", statOrder = { 10803 }, level = 30, group = "WeaponTreePreciseTechnique", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneIronReflexes"] = { type = "Spawn", tier = 1, "Iron Reflexes", statOrder = { 10794 }, level = 30, group = "WeaponTreeIronReflexes", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneUnwaveringStance"] = { type = "Spawn", tier = 1, "Unwavering Stance", statOrder = { 10821 }, level = 30, group = "WeaponTreeUnwaveringStance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneImbalancedGuard"] = { type = "Spawn", tier = 1, "Imbalanced Guard", statOrder = { 10810 }, level = 30, group = "WeaponTreeSacredBastion", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneEternalYouth"] = { type = "Spawn", tier = 1, "Eternal Youth", statOrder = { 10785 }, level = 30, group = "WeaponTreeEternalYouth", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneMindoverMatter"] = { type = "Spawn", tier = 1, "Mind Over Matter", statOrder = { 10797 }, level = 30, group = "WeaponTreeManaShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneZealotsOath"] = { type = "Spawn", tier = 1, "Zealot's Oath", statOrder = { 10807 }, level = 30, group = "WeaponTreeZealotsOath", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowAvatarOfTheHunt"] = { type = "Spawn", tier = 1, "Allocates 36687", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowDeadlyDraw"] = { type = "Spawn", tier = 1, "Allocates 48823", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowHeavyDraw"] = { type = "Spawn", tier = 1, "Allocates 42720", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowFarsight"] = { type = "Spawn", tier = 1, "Allocates 47743", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowMasterFletcher"] = { type = "Spawn", tier = 1, "Allocates 51881", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowKingOfTheHill"] = { type = "Spawn", tier = 1, "Allocates 49459", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowAspectOfTheEagle"] = { type = "Spawn", tier = 1, "Allocates 65224", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowHuntersGambit"] = { type = "Spawn", tier = 1, "Allocates 9535", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffCounterweight"] = { type = "Spawn", tier = 1, "Allocates 39761", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffSmashingStrikes"] = { type = "Spawn", tier = 1, "Allocates 51559", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffWhirlingBarrier"] = { type = "Spawn", tier = 1, "Allocates 42917", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffSteelwoodStance"] = { type = "Spawn", tier = 1, "Allocates 36859", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffSafeguard"] = { type = "Spawn", tier = 1, "Allocates 6967", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffBluntTrauma"] = { type = "Spawn", tier = 1, "Allocates 64395", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffOneWithTheRiver"] = { type = "Spawn", tier = 1, "Allocates 56094", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffSerpentStance"] = { type = "Spawn", tier = 1, "Allocates 22702", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffEnigmaticDefence"] = { type = "Spawn", tier = 1, "Allocates 7918", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffEnigmaticReach"] = { type = "Spawn", tier = 1, "Allocates 65273", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordBladeOfCunning"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 57839", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordRazorsEdge"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 33082", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordBladeMaster"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 25367", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordBladeDancer"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 65093", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordFatalBlade"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 1568", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordBrutalBlade"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 59151", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordBladeOfCunning2H"] = { type = "Spawn", tier = 1, "Allocates 57839", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordRazorsEdge2H"] = { type = "Spawn", tier = 1, "Allocates 33082", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordBladeMaster2H"] = { type = "Spawn", tier = 1, "Allocates 25367", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordBladeDancer2H"] = { type = "Spawn", tier = 1, "Allocates 65093", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordFatalBlade2H"] = { type = "Spawn", tier = 1, "Allocates 1568", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordBrutalBlade2H"] = { type = "Spawn", tier = 1, "Allocates 59151", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeFellerOfFoes"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 52090", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeHatchetMaster"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 26096", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeHarvesterOfFoes"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 7440", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeCleaving"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 4940", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeSlaughter"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 23038", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeFellerOfFoes2H"] = { type = "Spawn", tier = 1, "Allocates 52090", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeHatchetMaster2H"] = { type = "Spawn", tier = 1, "Allocates 26096", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeHarvesterOfFoes2H"] = { type = "Spawn", tier = 1, "Allocates 7440", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeCleaving2H"] = { type = "Spawn", tier = 1, "Allocates 4940", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeSlaughter2H"] = { type = "Spawn", tier = 1, "Allocates 23038", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceRibcageCrusher"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 24721", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceSpinecruncher"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 5126", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceSkullcracking"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 16703", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceBoneBreaker"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 40645", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceBlacksmithsClout"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 55772", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceGalvanicHammer"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 60619", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMacePainForger"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 39657", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceRibcageCrusher2H"] = { type = "Spawn", tier = 1, "Allocates 24721", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceSpinecruncher2H"] = { type = "Spawn", tier = 1, "Allocates 5126", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceSkullcracking2H"] = { type = "Spawn", tier = 1, "Allocates 16703", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceBoneBreaker2H"] = { type = "Spawn", tier = 1, "Allocates 40645", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceBlacksmithsClout2H"] = { type = "Spawn", tier = 1, "Allocates 55772", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceGalvanicHammer2H"] = { type = "Spawn", tier = 1, "Allocates 60619", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMacePainForger2H"] = { type = "Spawn", tier = 1, "Allocates 39657", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableClawPoisonousFangs"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 529", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableClawLifeRaker"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 28503", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableClawClawsOfTheHawk"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 15614", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableClawClawsOfTheMagpie"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 54791", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableClawClawsOfTheFalcon"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 56648", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableDaggerAddersTouch"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 32227", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableDaggerFromTheShadows"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 1405", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableDaggerBackstabbing"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 8920", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableDaggerFlaying"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 36490", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableDaggerNightstalker"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 56276", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableWandTempestBlast"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 63207", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableWandFusillade"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 16243", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableWandDisintegration"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 52031", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableWandElderPower"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 41476", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableWandWandslinger"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 22972", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableWandPrismWeave"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 63944", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableShieldTestudo"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 44207", statOrder = { 2249, 8130 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableShieldRetaliation"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 12878", statOrder = { 2249, 8130 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableShieldDeflection"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 15437", statOrder = { 2249, 8130 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableShieldDefiance"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 49538", statOrder = { 2249, 8130 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableShieldCommandOfSteel"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 57900", statOrder = { 2249, 8130 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableShieldAggresiveBastion"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 861", statOrder = { 2249, 8130 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableShieldSantuary"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 20832", statOrder = { 2249, 8130 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableShieldSafeguard"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 6967", statOrder = { 2249, 8130 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableShieldArcaneSantuary"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 46904", statOrder = { 2249, 8130 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeWeaponQuality1"] = { type = "Spawn", tier = 1, "+8% to Quality", statOrder = { 7951 }, level = 1, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, modTags = { }, }, - ["WeaponTreeWeaponQuality2"] = { type = "Spawn", tier = 2, "+12% to Quality", statOrder = { 7951 }, level = 45, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, modTags = { }, }, - ["WeaponTreeWeaponQuality3"] = { type = "Spawn", tier = 3, "+16% to Quality", statOrder = { 7951 }, level = 60, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, modTags = { }, }, - ["WeaponTreeFireDoTMultiplierReducedFireResistance1"] = { type = "Spawn", tier = 1, "+12% to Fire Damage over Time Multiplier", "-15% to Fire Resistance", statOrder = { 1251, 1625 }, level = 12, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeFireDoTMultiplierReducedFireResistance2"] = { type = "Spawn", tier = 2, "+16% to Fire Damage over Time Multiplier", "-15% to Fire Resistance", statOrder = { 1251, 1625 }, level = 75, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeFireDoTMultiplierReducedFireResistance2h1"] = { type = "Spawn", tier = 1, "+24% to Fire Damage over Time Multiplier", "-30% to Fire Resistance", statOrder = { 1251, 1625 }, level = 12, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeFireDoTMultiplierReducedFireResistance2h2"] = { type = "Spawn", tier = 2, "+32% to Fire Damage over Time Multiplier", "-30% to Fire Resistance", statOrder = { 1251, 1625 }, level = 75, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeColdDoTMultiplierReducedColdResisatance1"] = { type = "Spawn", tier = 1, "+12% to Cold Damage over Time Multiplier", "-15% to Cold Resistance", statOrder = { 1256, 1631 }, level = 12, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeColdDoTMultiplierReducedColdResisatance2"] = { type = "Spawn", tier = 2, "+16% to Cold Damage over Time Multiplier", "-15% to Cold Resistance", statOrder = { 1256, 1631 }, level = 75, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeColdDoTMultiplierReducedColdResisatance2h1"] = { type = "Spawn", tier = 1, "+24% to Cold Damage over Time Multiplier", "-30% to Cold Resistance", statOrder = { 1256, 1631 }, level = 12, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeColdDoTMultiplierReducedColdResisatance2h2"] = { type = "Spawn", tier = 2, "+32% to Cold Damage over Time Multiplier", "-30% to Cold Resistance", statOrder = { 1256, 1631 }, level = 75, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeChaosDoTMultiplierReducedChaosResistance1"] = { type = "Spawn", tier = 1, "+12% to Chaos Damage over Time Multiplier", "-15% to Chaos Resistance", statOrder = { 1259, 1641 }, level = 12, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeChaosDoTMultiplierReducedChaosResistance2"] = { type = "Spawn", tier = 2, "+16% to Chaos Damage over Time Multiplier", "-15% to Chaos Resistance", statOrder = { 1259, 1641 }, level = 75, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeChaosDoTMultiplierReducedChaosResistance2h1"] = { type = "Spawn", tier = 1, "+24% to Chaos Damage over Time Multiplier", "-30% to Chaos Resistance", statOrder = { 1259, 1641 }, level = 12, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeChaosDoTMultiplierReducedChaosResistance2h2"] = { type = "Spawn", tier = 2, "+32% to Chaos Damage over Time Multiplier", "-30% to Chaos Resistance", statOrder = { 1259, 1641 }, level = 75, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm1"] = { type = "Spawn", tier = 1, "+12% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 6% of Physical Damage Reduction", statOrder = { 1247, 7159 }, level = 12, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm2"] = { type = "Spawn", tier = 2, "+16% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 6% of Physical Damage Reduction", statOrder = { 1247, 7159 }, level = 75, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm2h1"] = { type = "Spawn", tier = 1, "+24% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 12% of Physical Damage Reduction", statOrder = { 1247, 7159 }, level = 12, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm2h2"] = { type = "Spawn", tier = 2, "+32% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 12% of Physical Damage Reduction", statOrder = { 1247, 7159 }, level = 75, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalElementalPenetrationReducedElementalResistance1"] = { type = "Spawn", tier = 1, "-8% to all Elemental Resistances", "Attacks with this Weapon Penetrate 8% Elemental Resistances", statOrder = { 1619, 3761 }, level = 12, group = "WeaponTreeLocalElementalPenetrationReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalElementalPenetrationReducedElementalResistance2"] = { type = "Spawn", tier = 2, "-8% to all Elemental Resistances", "Attacks with this Weapon Penetrate 10% Elemental Resistances", statOrder = { 1619, 3761 }, level = 75, group = "WeaponTreeLocalElementalPenetrationReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalChaosPenetrationReducedChaosResistance1"] = { type = "Spawn", tier = 1, "-13% to Chaos Resistance", "Attacks with this Weapon Penetrate 8% Chaos Resistance", statOrder = { 1641, 7876 }, level = 12, group = "WeaponTreeLocalChaosPenetrationReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalChaosPenetrationReducedChaosResistance2"] = { type = "Spawn", tier = 2, "-13% to Chaos Resistance", "Attacks with this Weapon Penetrate 10% Chaos Resistance", statOrder = { 1641, 7876 }, level = 75, group = "WeaponTreeLocalChaosPenetrationReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect1"] = { type = "Spawn", tier = 1, "10% reduced Area of Effect", "25% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrder = { 1880, 4729 }, level = 10, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect2"] = { type = "Spawn", tier = 2, "10% reduced Area of Effect", "30% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrder = { 1880, 4729 }, level = 65, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Area of Effect", "50% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrder = { 1880, 4729 }, level = 10, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Area of Effect", "60% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrder = { 1880, 4729 }, level = 65, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently1"] = { type = "Spawn", tier = 1, "20% increased Area of Effect", "10% reduced Area of Effect if you've Killed Recently", statOrder = { 1880, 4219 }, level = 10, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently2"] = { type = "Spawn", tier = 2, "24% increased Area of Effect", "10% reduced Area of Effect if you've Killed Recently", statOrder = { 1880, 4219 }, level = 65, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently2h1"] = { type = "Spawn", tier = 1, "32% increased Area of Effect", "20% reduced Area of Effect if you've Killed Recently", statOrder = { 1880, 4219 }, level = 10, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently2h2"] = { type = "Spawn", tier = 2, "40% increased Area of Effect", "20% reduced Area of Effect if you've Killed Recently", statOrder = { 1880, 4219 }, level = 65, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeProjectileSpeedReducedProjectileDamage1"] = { type = "Spawn", tier = 1, "25% increased Projectile Speed", "15% reduced Projectile Damage", statOrder = { 1796, 1996 }, level = 10, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeProjectileSpeedReducedProjectileDamage2"] = { type = "Spawn", tier = 2, "35% increased Projectile Speed", "15% reduced Projectile Damage", statOrder = { 1796, 1996 }, level = 65, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeProjectileSpeedReducedProjectileDamage2h1"] = { type = "Spawn", tier = 1, "40% increased Projectile Speed", "30% reduced Projectile Damage", statOrder = { 1796, 1996 }, level = 10, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeProjectileSpeedReducedProjectileDamage2h2"] = { type = "Spawn", tier = 2, "55% increased Projectile Speed", "30% reduced Projectile Damage", statOrder = { 1796, 1996 }, level = 65, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeArrowsChainChainingRange2h"] = { type = "MergeOnly", tier = 1, "Arrows Chain +1 times", "50% reduced Chaining range", statOrder = { 1788, 5486 }, level = 84, group = "WeaponTreeArrowsChainChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeChainingRange1"] = { type = "Spawn", tier = 1, "20% increased Chaining range", statOrder = { 5486 }, level = 38, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, - ["WeaponTreeChainingRange2"] = { type = "Spawn", tier = 2, "30% increased Chaining range", statOrder = { 5486 }, level = 78, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, - ["WeaponTreeChainingRange2h1"] = { type = "Spawn", tier = 1, "40% increased Chaining range", statOrder = { 5486 }, level = 38, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, - ["WeaponTreeChainingRange2h2"] = { type = "Spawn", tier = 2, "60% increased Chaining range", statOrder = { 5486 }, level = 78, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, - ["WeaponTreeAdditionalPierce1"] = { type = "Spawn", tier = 1, "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 78, group = "WeaponTreeAdditionalPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 300, 75, 0 }, modTags = { }, }, - ["WeaponTreeAdditionalPierce2h1"] = { type = "Spawn", tier = 1, "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 16, group = "WeaponTreeAdditionalPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 75, 0 }, modTags = { }, }, - ["WeaponTreeAdditionalPierce2h2"] = { type = "Spawn", tier = 2, "Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 78, group = "WeaponTreeAdditionalPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 75, 0 }, modTags = { }, }, - ["WeaponTreeForkExtraProjectileChance1"] = { type = "Spawn", tier = 1, "Projectiles have 30% chance for an additional Projectile when Forking", statOrder = { 5677 }, level = 32, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, - ["WeaponTreeForkExtraProjectileChance2"] = { type = "Spawn", tier = 2, "Projectiles have 40% chance for an additional Projectile when Forking", statOrder = { 5677 }, level = 78, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, - ["WeaponTreeForkExtraProjectileChance2h1"] = { type = "Spawn", tier = 1, "Projectiles have 50% chance for an additional Projectile when Forking", statOrder = { 5677 }, level = 32, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, - ["WeaponTreeForkExtraProjectileChance2h2"] = { type = "Spawn", tier = 2, "Projectiles have 75% chance for an additional Projectile when Forking", statOrder = { 5677 }, level = 78, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, - ["WeaponTreeMarkEffectIncreasedMarkCost1"] = { type = "Spawn", tier = 1, "15% increased Effect of your Marks", "100% increased Mana Cost of Mark Skills", statOrder = { 2598, 9106 }, level = 24, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeMarkEffectIncreasedMarkCost2"] = { type = "Spawn", tier = 2, "20% increased Effect of your Marks", "100% increased Mana Cost of Mark Skills", statOrder = { 2598, 9106 }, level = 76, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeMarkEffectIncreasedMarkCost2h1"] = { type = "Spawn", tier = 1, "30% increased Effect of your Marks", "200% increased Mana Cost of Mark Skills", statOrder = { 2598, 9106 }, level = 24, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeMarkEffectIncreasedMarkCost2h2"] = { type = "Spawn", tier = 2, "40% increased Effect of your Marks", "200% increased Mana Cost of Mark Skills", statOrder = { 2598, 9106 }, level = 76, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect1"] = { type = "Spawn", tier = 1, "15% reduced Effect of your Marks", "6% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrder = { 2598, 6760 }, level = 24, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect2"] = { type = "Spawn", tier = 2, "15% reduced Effect of your Marks", "10% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrder = { 2598, 6760 }, level = 76, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Effect of your Marks", "12% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrder = { 2598, 6760 }, level = 24, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Effect of your Marks", "20% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrder = { 2598, 6760 }, level = 76, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy"] = { type = "Spawn", tier = 1, "25% less Accuracy Rating against Marked Enemy", "Culling Strike against Marked Enemy", statOrder = { 4512, 5991 }, level = 80, group = "WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy2h"] = { type = "Spawn", tier = 2, "15% less Accuracy Rating against Marked Enemy", "Culling Strike against Marked Enemy", statOrder = { 4512, 5991 }, level = 80, group = "WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalWeaponRange1"] = { type = "Spawn", tier = 1, "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "WeaponTreeLocalWeaponRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeLocalWeaponRange2"] = { type = "Spawn", tier = 2, "+0.3 metres to Weapon Range", statOrder = { 2745 }, level = 50, group = "WeaponTreeLocalWeaponRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeLocalLifeLeechAndSpeed1"] = { type = "Spawn", tier = 1, "30% increased total Recovery per second from Life Leech", "0.5% of Attack Damage Leeched as Life", statOrder = { 2157, 7987 }, level = 12, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalLifeLeechAndSpeed2"] = { type = "Spawn", tier = 2, "30% increased total Recovery per second from Life Leech", "0.8% of Attack Damage Leeched as Life", statOrder = { 2157, 7987 }, level = 64, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalLifeLeechAndSpeed2h1"] = { type = "Spawn", tier = 1, "60% increased total Recovery per second from Life Leech", "1% of Attack Damage Leeched as Life", statOrder = { 2157, 7987 }, level = 12, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalLifeLeechAndSpeed2h2"] = { type = "Spawn", tier = 2, "60% increased total Recovery per second from Life Leech", "1.6% of Attack Damage Leeched as Life", statOrder = { 2157, 7987 }, level = 64, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalManaLeechAndSpeed1"] = { type = "Spawn", tier = 1, "30% increased total Recovery per second from Mana Leech", "0.5% of Attack Damage Leeched as Mana", statOrder = { 2158, 7990 }, level = 12, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalManaLeechAndSpeed2"] = { type = "Spawn", tier = 2, "30% increased total Recovery per second from Mana Leech", "0.8% of Attack Damage Leeched as Mana", statOrder = { 2158, 7990 }, level = 64, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalManaLeechAndSpeed2h1"] = { type = "Spawn", tier = 1, "60% increased total Recovery per second from Mana Leech", "1% of Attack Damage Leeched as Mana", statOrder = { 2158, 7990 }, level = 12, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalManaLeechAndSpeed2h2"] = { type = "Spawn", tier = 2, "60% increased total Recovery per second from Mana Leech", "1.6% of Attack Damage Leeched as Mana", statOrder = { 2158, 7990 }, level = 64, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellEnergyShieldLeechAndSpeed1"] = { type = "Spawn", tier = 1, "0.5% of Spell Damage Leeched as Energy Shield", "30% increased total Recovery per second from Energy Shield Leech", statOrder = { 1722, 2159 }, level = 12, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellEnergyShieldLeechAndSpeed2"] = { type = "Spawn", tier = 2, "0.8% of Spell Damage Leeched as Energy Shield", "30% increased total Recovery per second from Energy Shield Leech", statOrder = { 1722, 2159 }, level = 64, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellEnergyShieldLeechAndSpeed2h1"] = { type = "Spawn", tier = 1, "1% of Spell Damage Leeched as Energy Shield", "60% increased total Recovery per second from Energy Shield Leech", statOrder = { 1722, 2159 }, level = 12, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellEnergyShieldLeechAndSpeed2h2"] = { type = "Spawn", tier = 2, "1.6% of Spell Damage Leeched as Energy Shield", "60% increased total Recovery per second from Energy Shield Leech", statOrder = { 1722, 2159 }, level = 64, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeMaxLifeLeechReducedLeechAmount1"] = { type = "Spawn", tier = 1, "10% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 70, group = "WeaponTreeMaxLifeLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeMaxLifeLeechReducedLeechAmount2h1"] = { type = "Spawn", tier = 2, "20% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 70, group = "WeaponTreeMaxLifeLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeMaxManaLeechReducedLeechAmount1"] = { type = "Spawn", tier = 1, "10% increased Maximum total Mana Recovery per second from Leech", statOrder = { 1733 }, level = 70, group = "WeaponTreeMaxManaLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeMaxManaLeechReducedLeechAmount2h1"] = { type = "Spawn", tier = 2, "20% increased Maximum total Mana Recovery per second from Leech", statOrder = { 1733 }, level = 70, group = "WeaponTreeMaxManaLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeMaxEnergyShieldLeechReducedLeechAmount1"] = { type = "Spawn", tier = 1, "10% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1734 }, level = 70, group = "WeaponTreeMaxEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMaxEnergyShieldLeechReducedLeechAmount2h1"] = { type = "Spawn", tier = 2, "20% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1734 }, level = 70, group = "WeaponTreeMaxEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeLocalLifeOnHitReducedManaOnHit1"] = { type = "Spawn", tier = 1, "Grants 15 Life per Enemy Hit", "Removes 2 of your Mana per Enemy Hit", statOrder = { 1738, 1745 }, level = 5, group = "WeaponTreeLocalLifeOnHitReducedManaOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeLocalLifeOnHitReducedManaOnHit2"] = { type = "Spawn", tier = 2, "Grants 25 Life per Enemy Hit", "Removes 2 of your Mana per Enemy Hit", statOrder = { 1738, 1745 }, level = 68, group = "WeaponTreeLocalLifeOnHitReducedManaOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeLocalManaOnHitReducedLifeOnHit1"] = { type = "Spawn", tier = 1, "Removes 4 of your Life per Enemy Hit", "Grants 6 Mana per Enemy Hit", statOrder = { 1738, 1745 }, level = 5, group = "WeaponTreeLocalManaOnHitReducedLifeOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeLocalManaOnHitReducedLifeOnHit2"] = { type = "Spawn", tier = 2, "Removes 4 of your Life per Enemy Hit", "Grants 8 Mana per Enemy Hit", statOrder = { 1738, 1745 }, level = 68, group = "WeaponTreeLocalManaOnHitReducedLifeOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed1"] = { type = "Spawn", tier = 1, "5% reduced Movement Speed", "20% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 1798, 4381 }, level = 12, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed2"] = { type = "Spawn", tier = 2, "5% reduced Movement Speed", "30% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 1798, 4381 }, level = 76, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed2h1"] = { type = "Spawn", tier = 1, "10% reduced Movement Speed", "40% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 1798, 4381 }, level = 12, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed2h2"] = { type = "Spawn", tier = 2, "10% reduced Movement Speed", "60% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 1798, 4381 }, level = 76, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedTravelSkillsDisabled1"] = { type = "Spawn", tier = 1, "8% increased Movement Speed", "Your Travel Skills are Disabled", statOrder = { 1798, 10699 }, level = 12, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedTravelSkillsDisabled2"] = { type = "Spawn", tier = 2, "12% increased Movement Speed", "Your Travel Skills are Disabled", statOrder = { 1798, 10699 }, level = 76, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedTravelSkillsDisabled2h1"] = { type = "Spawn", tier = 1, "14% increased Movement Speed", "Your Travel Skills are Disabled", statOrder = { 1798, 10699 }, level = 12, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedTravelSkillsDisabled2h2"] = { type = "Spawn", tier = 2, "18% increased Movement Speed", "Your Travel Skills are Disabled", statOrder = { 1798, 10699 }, level = 76, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Arcane Surge on you", "10% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 3288, 6726 }, level = 20, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Arcane Surge on you", "10% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 3288, 6726 }, level = 80, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Arcane Surge on you", "15% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 3288, 6726 }, level = 20, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, modTags = { }, }, - ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Arcane Surge on you", "15% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 3288, 6726 }, level = 80, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, modTags = { }, }, - ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "20% increased Effect of Arcane Surge on you", "Buffs on you expire 10% faster", statOrder = { 3288, 5378 }, level = 20, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "25% increased Effect of Arcane Surge on you", "Buffs on you expire 10% faster", statOrder = { 3288, 5378 }, level = 80, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "40% increased Effect of Arcane Surge on you", "Buffs on you expire 20% faster", statOrder = { 3288, 5378 }, level = 20, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, modTags = { }, }, - ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "50% increased Effect of Arcane Surge on you", "Buffs on you expire 20% faster", statOrder = { 3288, 5378 }, level = 80, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, modTags = { }, }, - ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "20% increased Effect of Onslaught on you", "Buffs on you expire 10% faster", statOrder = { 3290, 5378 }, level = 20, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "25% increased Effect of Onslaught on you", "Buffs on you expire 10% faster", statOrder = { 3290, 5378 }, level = 80, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "40% increased Effect of Onslaught on you", "Buffs on you expire 20% faster", statOrder = { 3290, 5378 }, level = 20, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "50% increased Effect of Onslaught on you", "Buffs on you expire 20% faster", statOrder = { 3290, 5378 }, level = 80, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Onslaught on you", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3290, 3380 }, level = 20, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Onslaught on you", "15% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3290, 3380 }, level = 80, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Onslaught on you", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3290, 3380 }, level = 20, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Onslaught on you", "30% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3290, 3380 }, level = 80, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "10% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrder = { 3378, 5378 }, level = 20, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "15% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrder = { 3378, 5378 }, level = 80, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "20% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrder = { 3378, 5378 }, level = 20, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "30% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrder = { 3378, 5378 }, level = 80, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreePhasingOnKillReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "10% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrder = { 3465, 5378 }, level = 20, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreePhasingOnKillReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "15% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrder = { 3465, 5378 }, level = 80, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreePhasingOnKillReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "20% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrder = { 3465, 5378 }, level = 20, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreePhasingOnKillReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "30% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrder = { 3465, 5378 }, level = 80, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun1"] = { type = "Spawn", tier = 1, "15% reduced Enemy Stun Threshold with this Weapon", "20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit", statOrder = { 2497, 2769 }, level = 15, group = "WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun2"] = { type = "Spawn", tier = 2, "25% reduced Enemy Stun Threshold with this Weapon", "20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit", statOrder = { 2497, 2769 }, level = 74, group = "WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeDoubleStunDurationEnemyStunThreshold1"] = { type = "Spawn", tier = 1, "15% increased Enemy Stun Threshold", "16% chance to double Stun Duration", statOrder = { 1517, 3564 }, level = 15, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeDoubleStunDurationEnemyStunThreshold2"] = { type = "Spawn", tier = 2, "15% increased Enemy Stun Threshold", "24% chance to double Stun Duration", statOrder = { 1517, 3564 }, level = 74, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeDoubleStunDurationEnemyStunThreshold2h1"] = { type = "Spawn", tier = 1, "30% increased Enemy Stun Threshold", "35% chance to double Stun Duration", statOrder = { 1517, 3564 }, level = 15, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeDoubleStunDurationEnemyStunThreshold2h2"] = { type = "Spawn", tier = 2, "30% increased Enemy Stun Threshold", "45% chance to double Stun Duration", statOrder = { 1517, 3564 }, level = 74, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration1"] = { type = "Spawn", tier = 1, "30% reduced Fortification Duration", "Melee Hits which Stun have 15% chance to Fortify", statOrder = { 2265, 5678 }, level = 32, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration2"] = { type = "Spawn", tier = 2, "30% reduced Fortification Duration", "Melee Hits which Stun have 20% chance to Fortify", statOrder = { 2265, 5678 }, level = 78, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration2h1"] = { type = "Spawn", tier = 1, "30% reduced Fortification Duration", "Melee Hits which Stun have 30% chance to Fortify", statOrder = { 2265, 5678 }, level = 32, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration2h2"] = { type = "Spawn", tier = 2, "30% reduced Fortification Duration", "Melee Hits which Stun have 40% chance to Fortify", statOrder = { 2265, 5678 }, level = 78, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["WeaponTreeSkillEffectDurationReducedCooldownRecovery1"] = { type = "Spawn", tier = 1, "15% increased Skill Effect Duration", "10% reduced Cooldown Recovery Rate", statOrder = { 1895, 5005 }, level = 20, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeSkillEffectDurationReducedCooldownRecovery2"] = { type = "Spawn", tier = 2, "20% increased Skill Effect Duration", "10% reduced Cooldown Recovery Rate", statOrder = { 1895, 5005 }, level = 84, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeSkillEffectDurationReducedCooldownRecovery2h1"] = { type = "Spawn", tier = 1, "30% increased Skill Effect Duration", "20% reduced Cooldown Recovery Rate", statOrder = { 1895, 5005 }, level = 20, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeSkillEffectDurationReducedCooldownRecovery2h2"] = { type = "Spawn", tier = 2, "40% increased Skill Effect Duration", "20% reduced Cooldown Recovery Rate", statOrder = { 1895, 5005 }, level = 84, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration1"] = { type = "Spawn", tier = 1, "10% reduced Skill Effect Duration", "10% increased Cooldown Recovery Rate", statOrder = { 1895, 5005 }, level = 20, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration2"] = { type = "Spawn", tier = 2, "10% reduced Skill Effect Duration", "15% increased Cooldown Recovery Rate", statOrder = { 1895, 5005 }, level = 84, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration2h1"] = { type = "Spawn", tier = 1, "10% reduced Skill Effect Duration", "20% increased Cooldown Recovery Rate", statOrder = { 1895, 5005 }, level = 20, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration2h2"] = { type = "Spawn", tier = 2, "10% reduced Skill Effect Duration", "25% increased Cooldown Recovery Rate", statOrder = { 1895, 5005 }, level = 84, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect1"] = { type = "Spawn", tier = 1, "Flasks applied to you have 10% reduced Effect", "40% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 2742, 3391 }, level = 25, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect2"] = { type = "Spawn", tier = 2, "Flasks applied to you have 10% reduced Effect", "50% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 2742, 3391 }, level = 75, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect2h1"] = { type = "Spawn", tier = 1, "Flasks applied to you have 10% reduced Effect", "80% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 2742, 3391 }, level = 25, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect2h2"] = { type = "Spawn", tier = 2, "Flasks applied to you have 10% reduced Effect", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 2742, 3391 }, level = 75, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFlaskEffectReducedFlaskChargesGained1"] = { type = "Spawn", tier = 1, "15% reduced Flask Charges gained", "Flasks applied to you have 8% increased Effect", statOrder = { 2183, 2742 }, level = 12, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFlaskEffectReducedFlaskChargesGained2"] = { type = "Spawn", tier = 2, "15% reduced Flask Charges gained", "Flasks applied to you have 10% increased Effect", statOrder = { 2183, 2742 }, level = 70, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFlaskEffectReducedFlaskChargesGained2h1"] = { type = "Spawn", tier = 1, "20% reduced Flask Charges gained", "Flasks applied to you have 12% increased Effect", statOrder = { 2183, 2742 }, level = 12, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFlaskEffectReducedFlaskChargesGained2h2"] = { type = "Spawn", tier = 2, "20% reduced Flask Charges gained", "Flasks applied to you have 15% increased Effect", statOrder = { 2183, 2742 }, level = 70, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect1"] = { type = "Spawn", tier = 1, "10% reduced Effect of your Curses", "Your Curses have 25% increased Effect if 50% of Curse Duration expired", statOrder = { 2596, 10615 }, level = 24, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect2"] = { type = "Spawn", tier = 2, "10% reduced Effect of your Curses", "Your Curses have 30% increased Effect if 50% of Curse Duration expired", statOrder = { 2596, 10615 }, level = 75, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect2h1"] = { type = "Spawn", tier = 1, "15% reduced Effect of your Curses", "Your Curses have 35% increased Effect if 50% of Curse Duration expired", statOrder = { 2596, 10615 }, level = 24, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect2h2"] = { type = "Spawn", tier = 2, "15% reduced Effect of your Curses", "Your Curses have 50% increased Effect if 50% of Curse Duration expired", statOrder = { 2596, 10615 }, level = 75, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf1"] = { type = "Spawn", tier = 1, "15% increased Effect of Curses on you", "8% increased Effect of your Curses", statOrder = { 2170, 2596 }, level = 24, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf2"] = { type = "Spawn", tier = 2, "15% increased Effect of Curses on you", "10% increased Effect of your Curses", statOrder = { 2170, 2596 }, level = 75, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf2h1"] = { type = "Spawn", tier = 1, "25% increased Effect of Curses on you", "12% increased Effect of your Curses", statOrder = { 2170, 2596 }, level = 24, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf2h2"] = { type = "Spawn", tier = 2, "25% increased Effect of Curses on you", "15% increased Effect of your Curses", statOrder = { 2170, 2596 }, level = 75, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseDurationReducedCurseAreaOfEffect1"] = { type = "Spawn", tier = 1, "20% reduced Area of Effect of Hex Skills", "Hex Skills have 40% increased Skill Effect Duration", statOrder = { 2225, 7134 }, level = 24, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseDurationReducedCurseAreaOfEffect2"] = { type = "Spawn", tier = 2, "20% reduced Area of Effect of Hex Skills", "Hex Skills have 50% increased Skill Effect Duration", statOrder = { 2225, 7134 }, level = 75, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseDurationReducedCurseAreaOfEffect2h1"] = { type = "Spawn", tier = 1, "30% reduced Area of Effect of Hex Skills", "Hex Skills have 80% increased Skill Effect Duration", statOrder = { 2225, 7134 }, level = 24, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseDurationReducedCurseAreaOfEffect2h2"] = { type = "Spawn", tier = 2, "30% reduced Area of Effect of Hex Skills", "Hex Skills have 100% increased Skill Effect Duration", statOrder = { 2225, 7134 }, level = 75, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeQuiverModEffect2h1"] = { type = "Spawn", tier = 1, "15% increased bonuses gained from Equipped Quiver", statOrder = { 9782 }, level = 36, group = "WeaponTreeQuiverModEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeQuiverModEffect2h2"] = { type = "Spawn", tier = 2, "20% increased bonuses gained from Equipped Quiver", statOrder = { 9782 }, level = 85, group = "WeaponTreeQuiverModEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMineDetonateTwiceChance1"] = { type = "Spawn", tier = 1, "15% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 10% chance to be Detonated an Additional Time", statOrder = { 8214, 9222 }, level = 1, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeMineDetonateTwiceChance2"] = { type = "Spawn", tier = 2, "15% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 14% chance to be Detonated an Additional Time", statOrder = { 8214, 9222 }, level = 60, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeMineDetonateTwiceChance2h1"] = { type = "Spawn", tier = 1, "25% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 16% chance to be Detonated an Additional Time", statOrder = { 8214, 9222 }, level = 1, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeMineDetonateTwiceChance2h2"] = { type = "Spawn", tier = 2, "25% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 20% chance to be Detonated an Additional Time", statOrder = { 8214, 9222 }, level = 60, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeMineAuraEffect1"] = { type = "Spawn", tier = 1, "Skills used by Mines have 40% reduced Area of Effect", "25% increased Effect of Auras from Mines", statOrder = { 9218, 9220 }, level = 1, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeMineAuraEffect2"] = { type = "Spawn", tier = 2, "Skills used by Mines have 40% reduced Area of Effect", "40% increased Effect of Auras from Mines", statOrder = { 9218, 9220 }, level = 60, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeMineAuraEffect2h1"] = { type = "Spawn", tier = 1, "Skills used by Mines have 60% reduced Area of Effect", "50% increased Effect of Auras from Mines", statOrder = { 9218, 9220 }, level = 1, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeMineAuraEffect2h2"] = { type = "Spawn", tier = 2, "Skills used by Mines have 60% reduced Area of Effect", "70% increased Effect of Auras from Mines", statOrder = { 9218, 9220 }, level = 60, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeTrapThrowingSpeed1"] = { type = "Spawn", tier = 1, "40% reduced Trap Trigger Area of Effect", "12% increased Trap Throwing Speed", statOrder = { 1925, 1927 }, level = 1, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTrapThrowingSpeed2"] = { type = "Spawn", tier = 2, "40% reduced Trap Trigger Area of Effect", "16% increased Trap Throwing Speed", statOrder = { 1925, 1927 }, level = 60, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTrapThrowingSpeed2h1"] = { type = "Spawn", tier = 1, "60% reduced Trap Trigger Area of Effect", "18% increased Trap Throwing Speed", statOrder = { 1925, 1927 }, level = 1, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTrapThrowingSpeed2h2"] = { type = "Spawn", tier = 2, "60% reduced Trap Trigger Area of Effect", "25% increased Trap Throwing Speed", statOrder = { 1925, 1927 }, level = 60, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTrapsThrowInACircle"] = { type = "Spawn", tier = 1, "25% reduced Trap Spread", "Traps from Skills are thrown randomly around targeted location", statOrder = { 10420, 10612 }, level = 1, group = "WeaponTreeTrapsThrowInACircle", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTrapsThrowInACircle2h"] = { type = "Spawn", tier = 1, "25% reduced Trap Spread", "Traps from Skills are thrown randomly around targeted location", statOrder = { 10420, 10612 }, level = 60, group = "WeaponTreeTrapsThrowInACircle", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeBrandAreaOfEffectAtLowDuration1"] = { type = "Spawn", tier = 1, "Brands have 25% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 20% reduced Duration", statOrder = { 5267, 10039 }, level = 12, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBrandAreaOfEffectAtLowDuration2"] = { type = "Spawn", tier = 2, "Brands have 40% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 20% reduced Duration", statOrder = { 5267, 10039 }, level = 60, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBrandAreaOfEffectAtLowDuration2h1"] = { type = "Spawn", tier = 1, "Brands have 45% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 30% reduced Duration", statOrder = { 5267, 10039 }, level = 12, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeBrandAreaOfEffectAtLowDuration2h2"] = { type = "Spawn", tier = 2, "Brands have 60% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 30% reduced Duration", statOrder = { 5267, 10039 }, level = 60, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeBrandSearchRange1"] = { type = "Spawn", tier = 1, "Brand Recall has 40% reduced Cooldown Recovery Rate", "40% increased Brand Attachment range", statOrder = { 10040, 10044 }, level = 12, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBrandSearchRange2"] = { type = "Spawn", tier = 2, "Brand Recall has 40% reduced Cooldown Recovery Rate", "60% increased Brand Attachment range", statOrder = { 10040, 10044 }, level = 60, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBrandSearchRange2h1"] = { type = "Spawn", tier = 1, "Brand Recall has 60% reduced Cooldown Recovery Rate", "75% increased Brand Attachment range", statOrder = { 10040, 10044 }, level = 12, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeBrandSearchRange2h2"] = { type = "Spawn", tier = 2, "Brand Recall has 60% reduced Cooldown Recovery Rate", "100% increased Brand Attachment range", statOrder = { 10040, 10044 }, level = 60, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeTotemChanceToSpawnTwo1"] = { type = "Spawn", tier = 1, "15% reduced Totem Placement speed", "Skills that Summon a Totem have 25% chance to Summon two Totems instead of one", statOrder = { 2578, 5723 }, level = 4, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTotemChanceToSpawnTwo2"] = { type = "Spawn", tier = 2, "15% reduced Totem Placement speed", "Skills that Summon a Totem have 40% chance to Summon two Totems instead of one", statOrder = { 2578, 5723 }, level = 60, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTotemChanceToSpawnTwo2h1"] = { type = "Spawn", tier = 1, "25% reduced Totem Placement speed", "Skills that Summon a Totem have 50% chance to Summon two Totems instead of one", statOrder = { 2578, 5723 }, level = 4, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTotemChanceToSpawnTwo2h2"] = { type = "Spawn", tier = 2, "25% reduced Totem Placement speed", "Skills that Summon a Totem have 70% chance to Summon two Totems instead of one", statOrder = { 2578, 5723 }, level = 60, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTotemExplodeOnDeath1"] = { type = "Spawn", tier = 1, "15% reduced Totem Life", "Totems Explode on Death, dealing 10% of their Life as Physical Damage", statOrder = { 1774, 10405 }, level = 4, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTotemExplodeOnDeath2"] = { type = "Spawn", tier = 2, "15% reduced Totem Life", "Totems Explode on Death, dealing 15% of their Life as Physical Damage", statOrder = { 1774, 10405 }, level = 60, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTotemExplodeOnDeath2h1"] = { type = "Spawn", tier = 1, "25% reduced Totem Life", "Totems Explode on Death, dealing 20% of their Life as Physical Damage", statOrder = { 1774, 10405 }, level = 4, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTotemExplodeOnDeath2h2"] = { type = "Spawn", tier = 2, "25% reduced Totem Life", "Totems Explode on Death, dealing 30% of their Life as Physical Damage", statOrder = { 1774, 10405 }, level = 60, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeUnaffectedByChillWhileChannelling"] = { type = "Spawn", tier = 1, "30% increased Effect of Chill on you", "Unaffected by Chill while Channelling", statOrder = { 1645, 10460 }, level = 1, group = "WeaponTreeUnaffectedByChillWhileChannelling", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "two_hand_weapon", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeUnaffectedByShockWhileChannelling"] = { type = "Spawn", tier = 1, "30% increased Effect of Shock on you", "Unaffected by Shock while Channelling", statOrder = { 10020, 10480 }, level = 1, group = "WeaponTreeUnaffectedByShockWhileChannelling", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "two_hand_weapon", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeWarcryBuffEffect1"] = { type = "Spawn", tier = 1, "20% increased Warcry Buff Effect", "Warcry Skills have 20% reduced Area of Effect", statOrder = { 10567, 10575 }, level = 10, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeWarcryBuffEffect2"] = { type = "Spawn", tier = 2, "30% increased Warcry Buff Effect", "Warcry Skills have 20% reduced Area of Effect", statOrder = { 10567, 10575 }, level = 60, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeWarcryBuffEffect2h1"] = { type = "Spawn", tier = 1, "35% increased Warcry Buff Effect", "Warcry Skills have 30% reduced Area of Effect", statOrder = { 10567, 10575 }, level = 10, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeWarcryBuffEffect2h2"] = { type = "Spawn", tier = 2, "50% increased Warcry Buff Effect", "Warcry Skills have 30% reduced Area of Effect", statOrder = { 10567, 10575 }, level = 60, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeWarcryDamagePerWarcryUsedRecently1"] = { type = "Spawn", tier = 1, "30% reduced Damage", "25% increased Damage for each time you've Warcried Recently", statOrder = { 1191, 6067 }, level = 10, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeWarcryDamagePerWarcryUsedRecently2"] = { type = "Spawn", tier = 2, "30% reduced Damage", "40% increased Damage for each time you've Warcried Recently", statOrder = { 1191, 6067 }, level = 60, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeWarcryDamagePerWarcryUsedRecently2h1"] = { type = "Spawn", tier = 1, "50% reduced Damage", "40% increased Damage for each time you've Warcried Recently", statOrder = { 1191, 6067 }, level = 10, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeWarcryDamagePerWarcryUsedRecently2h2"] = { type = "Spawn", tier = 2, "50% reduced Damage", "60% increased Damage for each time you've Warcried Recently", statOrder = { 1191, 6067 }, level = 60, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeScorchChanceCannotIgnite1"] = { type = "Spawn", tier = 1, "6% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 2027, 2560 }, level = 25, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeScorchChanceCannotIgnite2"] = { type = "Spawn", tier = 2, "10% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 2027, 2560 }, level = 68, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeScorchChanceCannotIgnite2h1"] = { type = "Spawn", tier = 1, "12% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 2027, 2560 }, level = 25, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeScorchChanceCannotIgnite2h2"] = { type = "Spawn", tier = 2, "20% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 2027, 2560 }, level = 68, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeBrittleChanceCannotFreezeChill1"] = { type = "Spawn", tier = 1, "6% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 2030, 2562 }, level = 25, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeBrittleChanceCannotFreezeChill2"] = { type = "Spawn", tier = 2, "10% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 2030, 2562 }, level = 68, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeBrittleChanceCannotFreezeChill2h1"] = { type = "Spawn", tier = 1, "12% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 2030, 2562 }, level = 25, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeBrittleChanceCannotFreezeChill2h2"] = { type = "Spawn", tier = 2, "20% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 2030, 2562 }, level = 68, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSapChanceCannotShock1"] = { type = "Spawn", tier = 1, "6% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 2034, 2563 }, level = 25, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSapChanceCannotShock2"] = { type = "Spawn", tier = 2, "10% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 2034, 2563 }, level = 68, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSapChanceCannotShock2h1"] = { type = "Spawn", tier = 1, "12% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 2034, 2563 }, level = 25, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSapChanceCannotShock2h2"] = { type = "Spawn", tier = 2, "20% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 2034, 2563 }, level = 68, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeFireExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Fire Exposure on Hit", "25% chance to be inflicted with Fire Exposure when you take Fire Damage from a Hit", statOrder = { 5027, 7285 }, level = 34, group = "WeaponTreeFireExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeColdExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Cold Exposure on Hit", "25% chance to be inflicted with Cold Exposure when you take Cold Damage from a Hit", statOrder = { 5026, 7284 }, level = 34, group = "WeaponTreeColdExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeLightningExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Lightning Exposure on Hit", "25% chance to be inflicted with Lightning Exposure when you take Lightning Damage from a Hit", statOrder = { 5028, 7286 }, level = 34, group = "WeaponTreeLightningExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeAllExposureOnHit"] = { type = "Spawn", tier = 1, "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", statOrder = { 7272, 7287 }, level = 75, group = "WeaponTreeAllExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeWitherOnHitChance1"] = { type = "Spawn", tier = 1, "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", statOrder = { 4397, 7288 }, level = 38, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeWitherOnHitChance2"] = { type = "Spawn", tier = 2, "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", statOrder = { 4397, 7288 }, level = 76, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeWitherOnHitChance2h1"] = { type = "Spawn", tier = 1, "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", statOrder = { 4397, 7288 }, level = 38, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeWitherOnHitChance2h2"] = { type = "Spawn", tier = 2, "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", statOrder = { 4397, 7288 }, level = 76, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeOverwhelm1"] = { type = "Spawn", tier = 1, "Overwhelm 15% Physical Damage Reduction", "Hits against you Overwhelm 5% of Physical Damage Reduction", statOrder = { 2978, 7159 }, level = 20, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeOverwhelm2"] = { type = "Spawn", tier = 2, "Overwhelm 20% Physical Damage Reduction", "Hits against you Overwhelm 5% of Physical Damage Reduction", statOrder = { 2978, 7159 }, level = 68, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeOverwhelm2h1"] = { type = "Spawn", tier = 1, "Overwhelm 24% Physical Damage Reduction", "Hits against you Overwhelm 10% of Physical Damage Reduction", statOrder = { 2978, 7159 }, level = 25, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeOverwhelm2h2"] = { type = "Spawn", tier = 2, "Overwhelm 32% Physical Damage Reduction", "Hits against you Overwhelm 10% of Physical Damage Reduction", statOrder = { 2978, 7159 }, level = 68, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeStunDuration1"] = { type = "Spawn", tier = 1, "30% increased Stun Duration on Enemies", "15% increased Stun Duration on you", statOrder = { 1863, 4174 }, level = 1, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeStunDuration2"] = { type = "Spawn", tier = 2, "40% increased Stun Duration on Enemies", "20% increased Stun Duration on you", statOrder = { 1863, 4174 }, level = 45, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeStunDuration2h1"] = { type = "Spawn", tier = 1, "60% increased Stun Duration on Enemies", "30% increased Stun Duration on you", statOrder = { 1863, 4174 }, level = 1, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeStunDuration2h2"] = { type = "Spawn", tier = 2, "80% increased Stun Duration on Enemies", "40% increased Stun Duration on you", statOrder = { 1863, 4174 }, level = 45, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFreezeDuration1"] = { type = "Spawn", tier = 1, "20% increased Freeze Duration on Enemies", "15% increased Freeze Duration on you", statOrder = { 1858, 1874 }, level = 1, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeFreezeDuration2"] = { type = "Spawn", tier = 2, "30% increased Freeze Duration on Enemies", "20% increased Freeze Duration on you", statOrder = { 1858, 1874 }, level = 45, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeFreezeDuration2h1"] = { type = "Spawn", tier = 1, "35% increased Freeze Duration on Enemies", "30% increased Freeze Duration on you", statOrder = { 1858, 1874 }, level = 1, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFreezeDuration2h2"] = { type = "Spawn", tier = 2, "50% increased Freeze Duration on Enemies", "40% increased Freeze Duration on you", statOrder = { 1858, 1874 }, level = 45, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeIgniteDuration1"] = { type = "Spawn", tier = 1, "20% increased Ignite Duration on Enemies", "15% increased Ignite Duration on you", statOrder = { 1859, 1875 }, level = 1, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeIgniteDuration2"] = { type = "Spawn", tier = 2, "30% increased Ignite Duration on Enemies", "20% increased Ignite Duration on you", statOrder = { 1859, 1875 }, level = 45, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeIgniteDuration2h1"] = { type = "Spawn", tier = 1, "35% increased Ignite Duration on Enemies", "30% increased Ignite Duration on you", statOrder = { 1859, 1875 }, level = 1, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeIgniteDuration2h2"] = { type = "Spawn", tier = 2, "50% increased Ignite Duration on Enemies", "40% increased Ignite Duration on you", statOrder = { 1859, 1875 }, level = 45, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeBleedDuration1"] = { type = "Spawn", tier = 1, "20% increased Bleeding Duration", "15% increased Bleed Duration on you", statOrder = { 4994, 9970 }, level = 1, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeBleedDuration2"] = { type = "Spawn", tier = 2, "30% increased Bleeding Duration", "20% increased Bleed Duration on you", statOrder = { 4994, 9970 }, level = 45, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeBleedDuration2h1"] = { type = "Spawn", tier = 1, "35% increased Bleeding Duration", "30% increased Bleed Duration on you", statOrder = { 4994, 9970 }, level = 1, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeBleedDuration2h2"] = { type = "Spawn", tier = 2, "50% increased Bleeding Duration", "40% increased Bleed Duration on you", statOrder = { 4994, 9970 }, level = 45, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreePoisonDuration1"] = { type = "Spawn", tier = 1, "10% increased Poison Duration", "15% increased Poison Duration on you", statOrder = { 3170, 9979 }, level = 1, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreePoisonDuration2"] = { type = "Spawn", tier = 2, "15% increased Poison Duration", "20% increased Poison Duration on you", statOrder = { 3170, 9979 }, level = 45, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreePoisonDuration2h1"] = { type = "Spawn", tier = 1, "18% increased Poison Duration", "30% increased Poison Duration on you", statOrder = { 3170, 9979 }, level = 1, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreePoisonDuration2h2"] = { type = "Spawn", tier = 2, "24% increased Poison Duration", "40% increased Poison Duration on you", statOrder = { 3170, 9979 }, level = 45, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeChillEffect1"] = { type = "Spawn", tier = 1, "15% increased Effect of Chill on you", "30% increased Effect of Chill", statOrder = { 1645, 5769 }, level = 1, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeChillEffect2"] = { type = "Spawn", tier = 2, "20% increased Effect of Chill on you", "40% increased Effect of Chill", statOrder = { 1645, 5769 }, level = 45, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeChillEffect2h1"] = { type = "Spawn", tier = 1, "30% increased Effect of Chill on you", "60% increased Effect of Chill", statOrder = { 1645, 5769 }, level = 1, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeChillEffect2h2"] = { type = "Spawn", tier = 2, "40% increased Effect of Chill on you", "80% increased Effect of Chill", statOrder = { 1645, 5769 }, level = 45, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeShockEffect1"] = { type = "Spawn", tier = 1, "30% increased Effect of Shock", "15% increased Effect of Shock on you", statOrder = { 10009, 10020 }, level = 1, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeShockEffect2"] = { type = "Spawn", tier = 2, "40% increased Effect of Shock", "20% increased Effect of Shock on you", statOrder = { 10009, 10020 }, level = 45, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeShockEffect2h1"] = { type = "Spawn", tier = 1, "60% increased Effect of Shock", "30% increased Effect of Shock on you", statOrder = { 10009, 10020 }, level = 1, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeShockEffect2h2"] = { type = "Spawn", tier = 2, "80% increased Effect of Shock", "40% increased Effect of Shock on you", statOrder = { 10009, 10020 }, level = 45, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeImpaleEffect1"] = { type = "Spawn", tier = 1, "10% increased Impale Effect", "Attack Hits against you have 15% chance to Impale", statOrder = { 7243, 9835 }, level = 1, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 75, 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeImpaleEffect2"] = { type = "Spawn", tier = 2, "15% increased Impale Effect", "Attack Hits against you have 20% chance to Impale", statOrder = { 7243, 9835 }, level = 45, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 75, 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeImpaleEffect2h1"] = { type = "Spawn", tier = 1, "18% increased Impale Effect", "Attack Hits against you have 30% chance to Impale", statOrder = { 7243, 9835 }, level = 1, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeImpaleEffect2h2"] = { type = "Spawn", tier = 2, "24% increased Impale Effect", "Attack Hits against you have 40% chance to Impale", statOrder = { 7243, 9835 }, level = 45, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeLocalReducedAttributeRequirements1"] = { type = "Spawn", tier = 1, "20% reduced Attribute Requirements", statOrder = { 1075 }, level = 1, group = "WeaponTreeLocalAttributeRequirements", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 1000 }, modTags = { }, }, - ["WeaponTreeLocalReducedAttributeRequirements2"] = { type = "Spawn", tier = 2, "30% reduced Attribute Requirements", statOrder = { 1075 }, level = 1, group = "WeaponTreeLocalAttributeRequirements", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 1000 }, modTags = { }, }, - ["WeaponTreeDexterityAndNoInherentBonusFromDexterity1"] = { type = "Spawn", tier = 1, "+60 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrder = { 1178, 2015 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeDexterityAndNoInherentBonusFromDexterity2"] = { type = "Spawn", tier = 2, "+80 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrder = { 1178, 2015 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeDexterityAndNoInherentBonusFromDexterity2h1"] = { type = "Spawn", tier = 1, "+90 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrder = { 1178, 2015 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, - ["WeaponTreeDexterityAndNoInherentBonusFromDexterity2h2"] = { type = "Spawn", tier = 2, "+120 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrder = { 1178, 2015 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, - ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence1"] = { type = "Spawn", tier = 1, "+60 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrder = { 1179, 2016 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence2"] = { type = "Spawn", tier = 2, "+80 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrder = { 1179, 2016 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence2h1"] = { type = "Spawn", tier = 1, "+90 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrder = { 1179, 2016 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence2h2"] = { type = "Spawn", tier = 2, "+120 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrder = { 1179, 2016 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeStrengthAndNoInherentBonusFromStrength1"] = { type = "Spawn", tier = 1, "+60 to Strength", "Gain no inherent bonuses from Strength", statOrder = { 1177, 2017 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 200, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeStrengthAndNoInherentBonusFromStrength2"] = { type = "Spawn", tier = 2, "+80 to Strength", "Gain no inherent bonuses from Strength", statOrder = { 1177, 2017 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 200, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeStrengthAndNoInherentBonusFromStrength2h1"] = { type = "Spawn", tier = 1, "+90 to Strength", "Gain no inherent bonuses from Strength", statOrder = { 1177, 2017 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "mace", "two_hand_weapon", "default", }, weightVal = { 0, 200, 500, 0 }, modTags = { }, }, - ["WeaponTreeStrengthAndNoInherentBonusFromStrength2h2"] = { type = "Spawn", tier = 2, "+120 to Strength", "Gain no inherent bonuses from Strength", statOrder = { 1177, 2017 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "mace", "two_hand_weapon", "default", }, weightVal = { 0, 200, 500, 0 }, modTags = { }, }, - ["WeaponTreePercentDexterityAndIntelligence1"] = { type = "Spawn", tier = 1, "4% increased Dexterity", "4% increased Intelligence", statOrder = { 1185, 1186 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreePercentDexterityAndIntelligence2"] = { type = "Spawn", tier = 2, "6% increased Dexterity", "6% increased Intelligence", statOrder = { 1185, 1186 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreePercentDexterityAndIntelligence2h1"] = { type = "Spawn", tier = 1, "6% increased Dexterity", "6% increased Intelligence", statOrder = { 1185, 1186 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreePercentDexterityAndIntelligence2h2"] = { type = "Spawn", tier = 2, "10% increased Dexterity", "10% increased Intelligence", statOrder = { 1185, 1186 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreePercentDexterityAndStrength1"] = { type = "Spawn", tier = 1, "4% increased Strength", "4% increased Dexterity", statOrder = { 1184, 1185 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreePercentDexterityAndStrength2"] = { type = "Spawn", tier = 2, "6% increased Strength", "6% increased Dexterity", statOrder = { 1184, 1185 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreePercentDexterityAndStrength2h1"] = { type = "Spawn", tier = 1, "6% increased Strength", "6% increased Dexterity", statOrder = { 1184, 1185 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreePercentDexterityAndStrength2h2"] = { type = "Spawn", tier = 2, "10% increased Strength", "10% increased Dexterity", statOrder = { 1184, 1185 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreePercentStrengthAndIntelligence1"] = { type = "Spawn", tier = 1, "4% increased Strength", "4% increased Intelligence", statOrder = { 1184, 1186 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreePercentStrengthAndIntelligence2"] = { type = "Spawn", tier = 2, "6% increased Strength", "6% increased Intelligence", statOrder = { 1184, 1186 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreePercentStrengthAndIntelligence2h1"] = { type = "Spawn", tier = 1, "6% increased Strength", "6% increased Intelligence", statOrder = { 1184, 1186 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreePercentStrengthAndIntelligence2h2"] = { type = "Spawn", tier = 2, "10% increased Strength", "10% increased Intelligence", statOrder = { 1184, 1186 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedIfLowDexterity1"] = { type = "Spawn", tier = 1, "8% increased Movement Speed if Dexterity is below 100", statOrder = { 9409 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedIfLowDexterity2"] = { type = "Spawn", tier = 2, "12% increased Movement Speed if Dexterity is below 100", statOrder = { 9409 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedIfLowDexterity2h1"] = { type = "Spawn", tier = 1, "14% increased Movement Speed if Dexterity is below 100", statOrder = { 9409 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedIfLowDexterity2h2"] = { type = "Spawn", tier = 2, "20% increased Movement Speed if Dexterity is below 100", statOrder = { 9409 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfLowIntelligence1"] = { type = "Spawn", tier = 1, "14% increased Area of Effect if Intelligence is below 100", statOrder = { 4721 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfLowIntelligence2"] = { type = "Spawn", tier = 2, "20% increased Area of Effect if Intelligence is below 100", statOrder = { 4721 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfLowIntelligence2h1"] = { type = "Spawn", tier = 1, "24% increased Area of Effect if Intelligence is below 100", statOrder = { 4721 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfLowIntelligence2h2"] = { type = "Spawn", tier = 2, "32% increased Area of Effect if Intelligence is below 100", statOrder = { 4721 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeDoubleDamageChanceIfLowStrength1"] = { type = "Spawn", tier = 1, "6% chance to deal Double Damage if Strength is below 100", statOrder = { 6264 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeDoubleDamageChanceIfLowStrength2"] = { type = "Spawn", tier = 2, "10% chance to deal Double Damage if Strength is below 100", statOrder = { 6264 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeDoubleDamageChanceIfLowStrength2h1"] = { type = "Spawn", tier = 1, "12% chance to deal Double Damage if Strength is below 100", statOrder = { 6264 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, - ["WeaponTreeDoubleDamageChanceIfLowStrength2h2"] = { type = "Spawn", tier = 2, "16% chance to deal Double Damage if Strength is below 100", statOrder = { 6264 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, - ["WeaponTreeModEffectMinion1"] = { type = "Spawn", tier = 1, "10% increased Explicit Minion Modifier magnitudes", statOrder = { 54 }, level = 1, group = "WeaponTreeModEffectMinion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeModEffectMinion2"] = { type = "Spawn", tier = 2, "15% increased Explicit Minion Modifier magnitudes", statOrder = { 54 }, level = 65, group = "WeaponTreeModEffectMinion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeModEffectElementalDamage1"] = { type = "Spawn", tier = 1, "10% increased Explicit Elemental Damage Modifier magnitudes", statOrder = { 53 }, level = 1, group = "WeaponTreeModEffectElementalDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "shield", "default", }, weightVal = { 0, 0, 300 }, modTags = { }, }, - ["WeaponTreeModEffectElementalDamage2"] = { type = "Spawn", tier = 2, "15% increased Explicit Elemental Damage Modifier magnitudes", statOrder = { 53 }, level = 65, group = "WeaponTreeModEffectElementalDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "shield", "default", }, weightVal = { 0, 0, 300 }, modTags = { }, }, - ["WeaponTreeModEffectPhysicalAndChaosDamage1"] = { type = "Spawn", tier = 1, "10% increased Explicit Physical and Chaos Damage Modifier magnitudes", statOrder = { 55 }, level = 1, group = "WeaponTreeModEffectPhysicalAndChaosDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "shield", "default", }, weightVal = { 0, 0, 300 }, modTags = { }, }, - ["WeaponTreeModEffectPhysicalAndChaosDamage2"] = { type = "Spawn", tier = 2, "15% increased Explicit Physical and Chaos Damage Modifier magnitudes", statOrder = { 55 }, level = 65, group = "WeaponTreeModEffectPhysicalAndChaosDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "shield", "default", }, weightVal = { 0, 0, 300 }, modTags = { }, }, - ["WeaponTreeModEffectCasterDamage1"] = { type = "Spawn", tier = 1, "10% increased Explicit Caster Damage Modifier magnitudes", statOrder = { 40 }, level = 1, group = "WeaponTreeModEffectCasterDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 300, 0, 0, 300, 300, 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeModEffectCasterDamage2"] = { type = "Spawn", tier = 2, "15% increased Explicit Caster Damage Modifier magnitudes", statOrder = { 40 }, level = 65, group = "WeaponTreeModEffectCasterDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 300, 0, 0, 300, 300, 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeModEffectCritical1"] = { type = "Spawn", tier = 1, "10% increased Explicit Critical Modifier magnitudes", statOrder = { 43 }, level = 1, group = "WeaponTreeModEffectCritical", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "shield", "default", }, weightVal = { 0, 0, 300 }, modTags = { }, }, - ["WeaponTreeModEffectCritical2"] = { type = "Spawn", tier = 2, "15% increased Explicit Critical Modifier magnitudes", statOrder = { 43 }, level = 65, group = "WeaponTreeModEffectCritical", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "shield", "default", }, weightVal = { 0, 0, 300 }, modTags = { }, }, - ["WeaponTreeModEffectSpeed1"] = { type = "Spawn", tier = 1, "10% increased Explicit Speed Modifier magnitudes", statOrder = { 52 }, level = 1, group = "WeaponTreeModEffectSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "shield", "default", }, weightVal = { 0, 0, 300 }, modTags = { }, }, - ["WeaponTreeModEffectSpeed2"] = { type = "Spawn", tier = 2, "15% increased Explicit Speed Modifier magnitudes", statOrder = { 52 }, level = 65, group = "WeaponTreeModEffectSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "shield", "default", }, weightVal = { 0, 0, 300 }, modTags = { }, }, - ["WeaponTreeModEffectMana1"] = { type = "Spawn", tier = 1, "10% increased Explicit Mana Modifier magnitudes", statOrder = { 49 }, level = 1, group = "WeaponTreeModEffectMana", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 300, 0, 0, 300, 300, 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeModEffectMana2"] = { type = "Spawn", tier = 2, "15% increased Explicit Mana Modifier magnitudes", statOrder = { 49 }, level = 65, group = "WeaponTreeModEffectMana", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 300, 0, 0, 300, 300, 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeModEffectLife1"] = { type = "Spawn", tier = 1, "10% increased Explicit Life Modifier magnitudes", statOrder = { 47 }, level = 1, group = "WeaponTreeModEffectLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeModEffectLife2"] = { type = "Spawn", tier = 2, "15% increased Explicit Life Modifier magnitudes", statOrder = { 47 }, level = 65, group = "WeaponTreeModEffectLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeModEffectDefence1"] = { type = "Spawn", tier = 1, "10% increased Explicit Defence Modifier magnitudes", statOrder = { 45 }, level = 1, group = "WeaponTreeModEffectDefence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeModEffectDefence2"] = { type = "Spawn", tier = 2, "15% increased Explicit Defence Modifier magnitudes", statOrder = { 45 }, level = 65, group = "WeaponTreeModEffectDefence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeModEffectResistance1"] = { type = "Spawn", tier = 1, "10% increased Explicit Resistance Modifier magnitudes", statOrder = { 51 }, level = 1, group = "WeaponTreeModEffectResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeModEffectResistance2"] = { type = "Spawn", tier = 2, "15% increased Explicit Resistance Modifier magnitudes", statOrder = { 51 }, level = 65, group = "WeaponTreeModEffectResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeModEffectAttributes1"] = { type = "Spawn", tier = 1, "10% increased Explicit Attribute Modifier magnitudes", statOrder = { 39 }, level = 1, group = "WeaponTreeModEffectAttributes", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 150 }, modTags = { }, }, - ["WeaponTreeModEffectAttributes2"] = { type = "Spawn", tier = 2, "15% increased Explicit Attribute Modifier magnitudes", statOrder = { 39 }, level = 65, group = "WeaponTreeModEffectAttributes", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 150 }, modTags = { }, }, - ["WeaponTreeChargeDuration1"] = { type = "Spawn", tier = 1, "50% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3026 }, level = 24, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeChargeDuration2"] = { type = "Spawn", tier = 2, "65% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3026 }, level = 55, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeChargeDuration3"] = { type = "Spawn", tier = 3, "80% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3026 }, level = 78, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeChargeDuration2h1"] = { type = "Spawn", tier = 1, "100% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3026 }, level = 24, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeChargeDuration2h2"] = { type = "Spawn", tier = 2, "120% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3026 }, level = 55, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeChargeDuration2h3"] = { type = "Spawn", tier = 3, "140% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3026 }, level = 78, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeStealChargesOnHit1"] = { type = "Spawn", tier = 1, "5% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2992 }, level = 24, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeStealChargesOnHit2"] = { type = "Spawn", tier = 2, "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2992 }, level = 55, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeStealChargesOnHit3"] = { type = "Spawn", tier = 3, "15% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2992 }, level = 78, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeStealChargesOnHit2h1"] = { type = "Spawn", tier = 1, "15% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2992 }, level = 24, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeStealChargesOnHit2h2"] = { type = "Spawn", tier = 2, "20% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2992 }, level = 55, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeStealChargesOnHit2h3"] = { type = "Spawn", tier = 3, "25% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2992 }, level = 78, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeChargeOnKill"] = { type = "Spawn", tier = 1, "75% reduced Endurance, Frenzy and Power Charge Duration", "Gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3026, 3612 }, level = 70, group = "WeaponTreeRandomChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 200 }, modTags = { }, }, - ["WeaponTreeFrenzyChargeOnKill"] = { type = "Spawn", tier = 1, "50% reduced Frenzy Charge Duration", "Gain a Frenzy Charge on Kill", statOrder = { 2127, 2631 }, level = 30, group = "WeaponTreeFrenzyChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 400 }, modTags = { }, }, - ["WeaponTreePowerChargeOnKill"] = { type = "Spawn", tier = 1, "50% reduced Power Charge Duration", "Gain a Power Charge on Kill", statOrder = { 2142, 2633 }, level = 30, group = "WeaponTreePowerChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 400 }, modTags = { }, }, - ["WeaponTreeEnduranceChargeOnKill"] = { type = "Spawn", tier = 1, "50% reduced Endurance Charge Duration", "Gain an Endurance Charge on Kill", statOrder = { 2125, 2629 }, level = 30, group = "WeaponTreeEnduranceChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 400 }, modTags = { }, }, - ["WeaponTreeMinimumFrenzyAndPowerCharges"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance Charges", "+1 to Minimum Frenzy Charges", "+1 to Minimum Power Charges", statOrder = { 1804, 1808, 1813 }, level = 30, group = "WeaponTreeMinimumChargesFrenzyAndPower", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeMinimumFrenzyAndPowerCharges2H"] = { type = "Spawn", tier = 1, "-2 to Maximum Endurance Charges", "+2 to Minimum Frenzy Charges", "+2 to Minimum Power Charges", statOrder = { 1804, 1808, 1813 }, level = 30, group = "WeaponTreeMinimumChargesFrenzyAndPower", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeMinimumPowerAndEnduranceCharges"] = { type = "Spawn", tier = 1, "+1 to Minimum Endurance Charges", "-1 to Maximum Frenzy Charges", "+1 to Minimum Power Charges", statOrder = { 1803, 1809, 1813 }, level = 30, group = "WeaponTreeMinimumChargesPowerAndEndurance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeMinimumPowerAndEnduranceCharges2H"] = { type = "Spawn", tier = 1, "+2 to Minimum Endurance Charges", "-2 to Maximum Frenzy Charges", "+2 to Minimum Power Charges", statOrder = { 1803, 1809, 1813 }, level = 30, group = "WeaponTreeMinimumChargesPowerAndEndurance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeMinimumEnduranceAndFrenzyCharges"] = { type = "Spawn", tier = 1, "+1 to Minimum Endurance Charges", "+1 to Minimum Frenzy Charges", "-1 to Maximum Power Charges", statOrder = { 1803, 1808, 1814 }, level = 30, group = "WeaponTreeMinimumChargesEnduranceAndFrenzy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeMinimumEnduranceAndFrenzyCharges2H"] = { type = "Spawn", tier = 1, "+2 to Minimum Endurance Charges", "+2 to Minimum Frenzy Charges", "-2 to Maximum Power Charges", statOrder = { 1803, 1808, 1814 }, level = 30, group = "WeaponTreeMinimumChargesEnduranceAndFrenzy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeMinimumAllCharges"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance, Frenzy and Power Charges", "+1 to Minimum Endurance, Frenzy and Power Charges", statOrder = { 9142, 9259 }, level = 30, group = "WeaponTreeAllMinimumCharges", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeMinimumAllCharges2H"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance, Frenzy and Power Charges", "+2 to Minimum Endurance, Frenzy and Power Charges", statOrder = { 9142, 9259 }, level = 30, group = "WeaponTreeAllMinimumCharges", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeMaximumFrenzyCharges"] = { type = "MergeOnly", tier = 1, "-1 to Maximum Endurance Charges", "+1 to Maximum Frenzy Charges", "-1 to Maximum Power Charges", statOrder = { 1804, 1809, 1814 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeMaximumFrenzyCharges2H"] = { type = "MergeOnly", tier = 1, "-2 to Maximum Endurance Charges", "+2 to Maximum Frenzy Charges", "-2 to Maximum Power Charges", statOrder = { 1804, 1809, 1814 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeMaximumPowerCharges"] = { type = "MergeOnly", tier = 1, "-1 to Maximum Endurance Charges", "-1 to Maximum Frenzy Charges", "+1 to Maximum Power Charges", statOrder = { 1804, 1809, 1814 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeMaximumPowerCharges2H"] = { type = "MergeOnly", tier = 1, "-2 to Maximum Endurance Charges", "-2 to Maximum Frenzy Charges", "+2 to Maximum Power Charges", statOrder = { 1804, 1809, 1814 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeMaximumEnduranceCharges"] = { type = "MergeOnly", tier = 1, "+1 to Maximum Endurance Charges", "-1 to Maximum Frenzy Charges", "-1 to Maximum Power Charges", statOrder = { 1804, 1809, 1814 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeMaximumEnduranceCharges2H"] = { type = "MergeOnly", tier = 1, "+2 to Maximum Endurance Charges", "-2 to Maximum Frenzy Charges", "-2 to Maximum Power Charges", statOrder = { 1804, 1809, 1814 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedPerFrenzyCharge"] = { type = "Spawn", tier = 1, "4% increased Movement Speed per Frenzy Charge", "-1 to Maximum Frenzy Charges", statOrder = { 1802, 1809 }, level = 50, group = "WeaponTreeMovementSpeedPerFrenzyCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedPerFrenzyCharge2H"] = { type = "Spawn", tier = 1, "6% increased Movement Speed per Frenzy Charge", "-1 to Maximum Frenzy Charges", statOrder = { 1802, 1809 }, level = 50, group = "WeaponTreeMovementSpeedPerFrenzyCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeCooldownRecoveryPerPowerCharge"] = { type = "Spawn", tier = 1, "-1 to Maximum Power Charges", "4% increased Cooldown Recovery Rate per Power Charge", statOrder = { 1814, 5870 }, level = 50, group = "WeaponTreeCooldownRecoveryPerPowerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeCooldownRecoveryPerPowerCharge2H"] = { type = "Spawn", tier = 1, "-1 to Maximum Power Charges", "6% increased Cooldown Recovery Rate per Power Charge", statOrder = { 1814, 5870 }, level = 50, group = "WeaponTreeCooldownRecoveryPerPowerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectPerEnduranceCharge"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance Charges", "8% increased Area of Effect per Endurance Charge", statOrder = { 1804, 4733 }, level = 50, group = "WeaponTreeAreaOfEffectPerEnduranceCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectPerEnduranceCharge2H"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance Charges", "12% increased Area of Effect per Endurance Charge", statOrder = { 1804, 4733 }, level = 50, group = "WeaponTreeAreaOfEffectPerEnduranceCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeDamagePerCharge"] = { type = "Spawn", tier = 1, "15% increased Damage per Endurance, Frenzy or Power Charge", "-1 to Maximum Endurance, Frenzy and Power Charges", statOrder = { 6064, 9142 }, level = 70, group = "WeaponTreeDamagePerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeDamagePerCharge2H"] = { type = "Spawn", tier = 1, "25% increased Damage per Endurance, Frenzy or Power Charge", "-1 to Maximum Endurance, Frenzy and Power Charges", statOrder = { 6064, 9142 }, level = 70, group = "WeaponTreeDamagePerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeRampage1"] = { type = "MergeOnly", tier = 1, "Rampage", statOrder = { 10767 }, level = 86, group = "WeaponTreeSimulatedRampage", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAgonyEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Agony has 25% increased Buff Effect", "Herald of Agony has 25% increased Reservation", statOrder = { 7108, 7111 }, level = 16, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAgonyEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Agony has 35% increased Buff Effect", "Herald of Agony has 25% increased Reservation", statOrder = { 7108, 7111 }, level = 56, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAgonyEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Agony has 45% increased Buff Effect", "Herald of Agony has 25% increased Reservation", statOrder = { 7108, 7111 }, level = 82, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAgonyEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Agony has 50% increased Buff Effect", "Herald of Agony has 50% increased Reservation", statOrder = { 7108, 7111 }, level = 16, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAgonyEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Agony has 70% increased Buff Effect", "Herald of Agony has 50% increased Reservation", statOrder = { 7108, 7111 }, level = 56, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAgonyEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Agony has 90% increased Buff Effect", "Herald of Agony has 50% increased Reservation", statOrder = { 7108, 7111 }, level = 82, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAshEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Ash has 25% increased Reservation", "Herald of Ash has 25% increased Buff Effect", statOrder = { 4030, 7112 }, level = 16, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAshEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Ash has 25% increased Reservation", "Herald of Ash has 35% increased Buff Effect", statOrder = { 4030, 7112 }, level = 56, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAshEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Ash has 25% increased Reservation", "Herald of Ash has 45% increased Buff Effect", statOrder = { 4030, 7112 }, level = 82, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAshEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Ash has 50% increased Reservation", "Herald of Ash has 50% increased Buff Effect", statOrder = { 4030, 7112 }, level = 16, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAshEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Ash has 50% increased Reservation", "Herald of Ash has 70% increased Buff Effect", statOrder = { 4030, 7112 }, level = 56, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAshEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Ash has 50% increased Reservation", "Herald of Ash has 90% increased Buff Effect", statOrder = { 4030, 7112 }, level = 82, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfIceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Ice has 25% increased Reservation", "Herald of Ice has 25% increased Buff Effect", statOrder = { 4031, 7116 }, level = 16, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfIceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Ice has 25% increased Reservation", "Herald of Ice has 35% increased Buff Effect", statOrder = { 4031, 7116 }, level = 56, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfIceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Ice has 25% increased Reservation", "Herald of Ice has 45% increased Buff Effect", statOrder = { 4031, 7116 }, level = 82, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfIceEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Ice has 50% increased Reservation", "Herald of Ice has 50% increased Buff Effect", statOrder = { 4031, 7116 }, level = 16, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfIceEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Ice has 50% increased Reservation", "Herald of Ice has 70% increased Buff Effect", statOrder = { 4031, 7116 }, level = 56, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfIceEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Ice has 50% increased Reservation", "Herald of Ice has 90% increased Buff Effect", statOrder = { 4031, 7116 }, level = 82, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfPurityEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Purity has 25% increased Buff Effect", "Herald of Purity has 25% increased Reservation", statOrder = { 7120, 7124 }, level = 16, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfPurityEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Purity has 35% increased Buff Effect", "Herald of Purity has 25% increased Reservation", statOrder = { 7120, 7124 }, level = 56, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfPurityEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Purity has 45% increased Buff Effect", "Herald of Purity has 25% increased Reservation", statOrder = { 7120, 7124 }, level = 82, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfPurityEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Purity has 50% increased Buff Effect", "Herald of Purity has 50% increased Reservation", statOrder = { 7120, 7124 }, level = 16, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfPurityEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Purity has 70% increased Buff Effect", "Herald of Purity has 50% increased Reservation", statOrder = { 7120, 7124 }, level = 56, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfPurityEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Purity has 90% increased Buff Effect", "Herald of Purity has 50% increased Reservation", statOrder = { 7120, 7124 }, level = 82, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfLightningEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Thunder has 25% increased Reservation", "Herald of Thunder has 25% increased Buff Effect", statOrder = { 4032, 7126 }, level = 16, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfLightningEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Thunder has 25% increased Reservation", "Herald of Thunder has 35% increased Buff Effect", statOrder = { 4032, 7126 }, level = 56, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfLightningEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Thunder has 25% increased Reservation", "Herald of Thunder has 45% increased Buff Effect", statOrder = { 4032, 7126 }, level = 82, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfLightningEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Thunder has 50% increased Reservation", "Herald of Thunder has 50% increased Buff Effect", statOrder = { 4032, 7126 }, level = 16, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfLightningEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Thunder has 50% increased Reservation", "Herald of Thunder has 70% increased Buff Effect", statOrder = { 4032, 7126 }, level = 56, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfLightningEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Thunder has 50% increased Reservation", "Herald of Thunder has 90% increased Buff Effect", statOrder = { 4032, 7126 }, level = 82, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeAngerEffectAndReservation1"] = { type = "Spawn", tier = 1, "Anger has 20% increased Aura Effect", "Anger has 25% increased Reservation", statOrder = { 3356, 3417 }, level = 24, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeAngerEffectAndReservation2"] = { type = "Spawn", tier = 2, "Anger has 25% increased Aura Effect", "Anger has 25% increased Reservation", statOrder = { 3356, 3417 }, level = 56, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeAngerEffectAndReservation3"] = { type = "Spawn", tier = 3, "Anger has 30% increased Aura Effect", "Anger has 25% increased Reservation", statOrder = { 3356, 3417 }, level = 82, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeAngerEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Anger has 40% increased Aura Effect", "Anger has 50% increased Reservation", statOrder = { 3356, 3417 }, level = 24, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeAngerEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Anger has 50% increased Aura Effect", "Anger has 50% increased Reservation", statOrder = { 3356, 3417 }, level = 56, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeAngerEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Anger has 60% increased Aura Effect", "Anger has 50% increased Reservation", statOrder = { 3356, 3417 }, level = 82, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeWrathEffectAndReservation1"] = { type = "Spawn", tier = 1, "Wrath has 20% increased Aura Effect", "Wrath has 25% increased Reservation", statOrder = { 3361, 4042 }, level = 24, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeWrathEffectAndReservation2"] = { type = "Spawn", tier = 2, "Wrath has 25% increased Aura Effect", "Wrath has 25% increased Reservation", statOrder = { 3361, 4042 }, level = 56, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeWrathEffectAndReservation3"] = { type = "Spawn", tier = 3, "Wrath has 30% increased Aura Effect", "Wrath has 25% increased Reservation", statOrder = { 3361, 4042 }, level = 82, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeWrathEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Wrath has 40% increased Aura Effect", "Wrath has 50% increased Reservation", statOrder = { 3361, 4042 }, level = 24, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeWrathEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Wrath has 50% increased Aura Effect", "Wrath has 50% increased Reservation", statOrder = { 3361, 4042 }, level = 56, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeWrathEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Wrath has 60% increased Aura Effect", "Wrath has 50% increased Reservation", statOrder = { 3361, 4042 }, level = 82, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHatredEffectAndReservation1"] = { type = "Spawn", tier = 1, "Hatred has 20% increased Aura Effect", "Hatred has 25% increased Reservation", statOrder = { 3366, 4034 }, level = 24, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHatredEffectAndReservation2"] = { type = "Spawn", tier = 2, "Hatred has 25% increased Aura Effect", "Hatred has 25% increased Reservation", statOrder = { 3366, 4034 }, level = 56, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHatredEffectAndReservation3"] = { type = "Spawn", tier = 3, "Hatred has 30% increased Aura Effect", "Hatred has 25% increased Reservation", statOrder = { 3366, 4034 }, level = 82, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHatredEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Hatred has 40% increased Aura Effect", "Hatred has 50% increased Reservation", statOrder = { 3366, 4034 }, level = 24, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHatredEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Hatred has 50% increased Aura Effect", "Hatred has 50% increased Reservation", statOrder = { 3366, 4034 }, level = 56, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHatredEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Hatred has 60% increased Aura Effect", "Hatred has 50% increased Reservation", statOrder = { 3366, 4034 }, level = 82, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeDeterminationEffectAndReservation1"] = { type = "Spawn", tier = 1, "Determination has 20% increased Aura Effect", "Determination has 25% increased Reservation", statOrder = { 3367, 4036 }, level = 24, group = "WeaponTreeDeterminationEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeDeterminationEffectAndReservation2"] = { type = "Spawn", tier = 2, "Determination has 25% increased Aura Effect", "Determination has 25% increased Reservation", statOrder = { 3367, 4036 }, level = 56, group = "WeaponTreeDeterminationEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeDeterminationEffectAndReservation3"] = { type = "Spawn", tier = 3, "Determination has 30% increased Aura Effect", "Determination has 25% increased Reservation", statOrder = { 3367, 4036 }, level = 82, group = "WeaponTreeDeterminationEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeDisciplineEffectAndReservation1"] = { type = "Spawn", tier = 1, "Discipline has 20% increased Aura Effect", "Discipline has 25% increased Reservation", statOrder = { 3368, 4037 }, level = 24, group = "WeaponTreeDisciplineEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeDisciplineEffectAndReservation2"] = { type = "Spawn", tier = 2, "Discipline has 25% increased Aura Effect", "Discipline has 25% increased Reservation", statOrder = { 3368, 4037 }, level = 56, group = "WeaponTreeDisciplineEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeDisciplineEffectAndReservation3"] = { type = "Spawn", tier = 3, "Discipline has 30% increased Aura Effect", "Discipline has 25% increased Reservation", statOrder = { 3368, 4037 }, level = 82, group = "WeaponTreeDisciplineEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeGraceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Grace has 20% increased Aura Effect", "Grace has 25% increased Reservation", statOrder = { 3363, 4043 }, level = 24, group = "WeaponTreeGraceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeGraceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Grace has 25% increased Aura Effect", "Grace has 25% increased Reservation", statOrder = { 3363, 4043 }, level = 56, group = "WeaponTreeGraceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeGraceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Grace has 30% increased Aura Effect", "Grace has 25% increased Reservation", statOrder = { 3363, 4043 }, level = 82, group = "WeaponTreeGraceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeZealotryEffectAndReservation1"] = { type = "Spawn", tier = 1, "Zealotry has 20% increased Aura Effect", "Zealotry has 25% increased Reservation", statOrder = { 10722, 10725 }, level = 24, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeZealotryEffectAndReservation2"] = { type = "Spawn", tier = 2, "Zealotry has 25% increased Aura Effect", "Zealotry has 25% increased Reservation", statOrder = { 10722, 10725 }, level = 56, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeZealotryEffectAndReservation3"] = { type = "Spawn", tier = 3, "Zealotry has 30% increased Aura Effect", "Zealotry has 25% increased Reservation", statOrder = { 10722, 10725 }, level = 82, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeZealotryEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Zealotry has 40% increased Aura Effect", "Zealotry has 50% increased Reservation", statOrder = { 10722, 10725 }, level = 24, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeZealotryEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Zealotry has 50% increased Aura Effect", "Zealotry has 50% increased Reservation", statOrder = { 10722, 10725 }, level = 56, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeZealotryEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Zealotry has 60% increased Aura Effect", "Zealotry has 50% increased Reservation", statOrder = { 10722, 10725 }, level = 82, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePrideEffectAndReservation1"] = { type = "Spawn", tier = 1, "Pride has 20% increased Aura Effect", "Pride has 25% increased Reservation", statOrder = { 9711, 9717 }, level = 24, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreePrideEffectAndReservation2"] = { type = "Spawn", tier = 2, "Pride has 25% increased Aura Effect", "Pride has 25% increased Reservation", statOrder = { 9711, 9717 }, level = 56, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreePrideEffectAndReservation3"] = { type = "Spawn", tier = 3, "Pride has 30% increased Aura Effect", "Pride has 25% increased Reservation", statOrder = { 9711, 9717 }, level = 82, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreePrideEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Pride has 40% increased Aura Effect", "Pride has 50% increased Reservation", statOrder = { 9711, 9717 }, level = 24, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePrideEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Pride has 50% increased Aura Effect", "Pride has 50% increased Reservation", statOrder = { 9711, 9717 }, level = 56, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePrideEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Pride has 60% increased Aura Effect", "Pride has 50% increased Reservation", statOrder = { 9711, 9717 }, level = 82, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfFireEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Fire has 20% increased Aura Effect", "Purity of Fire has 25% increased Reservation", statOrder = { 3358, 4039 }, level = 24, group = "WeaponTreePurityOfFireEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfFireEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Fire has 25% increased Aura Effect", "Purity of Fire has 25% increased Reservation", statOrder = { 3358, 4039 }, level = 56, group = "WeaponTreePurityOfFireEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfFireEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Fire has 30% increased Aura Effect", "Purity of Fire has 25% increased Reservation", statOrder = { 3358, 4039 }, level = 82, group = "WeaponTreePurityOfFireEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfIceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Ice has 20% increased Aura Effect", "Purity of Ice has 25% increased Reservation", statOrder = { 3359, 4035 }, level = 24, group = "WeaponTreePurityOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfIceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Ice has 25% increased Aura Effect", "Purity of Ice has 25% increased Reservation", statOrder = { 3359, 4035 }, level = 56, group = "WeaponTreePurityOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfIceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Ice has 30% increased Aura Effect", "Purity of Ice has 25% increased Reservation", statOrder = { 3359, 4035 }, level = 82, group = "WeaponTreePurityOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfLightningEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Lightning has 20% increased Aura Effect", "Purity of Lightning has 25% increased Reservation", statOrder = { 3360, 4040 }, level = 24, group = "WeaponTreePurityOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfLightningEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Lightning has 25% increased Aura Effect", "Purity of Lightning has 25% increased Reservation", statOrder = { 3360, 4040 }, level = 56, group = "WeaponTreePurityOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfLightningEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Lightning has 30% increased Aura Effect", "Purity of Lightning has 25% increased Reservation", statOrder = { 3360, 4040 }, level = 82, group = "WeaponTreePurityOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfElementsEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Elements has 20% increased Aura Effect", "Purity of Elements has 25% increased Reservation", statOrder = { 3357, 4038 }, level = 24, group = "WeaponTreePurityOfElementsEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfElementsEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Elements has 25% increased Aura Effect", "Purity of Elements has 25% increased Reservation", statOrder = { 3357, 4038 }, level = 56, group = "WeaponTreePurityOfElementsEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfElementsEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Elements has 30% increased Aura Effect", "Purity of Elements has 25% increased Reservation", statOrder = { 3357, 4038 }, level = 82, group = "WeaponTreePurityOfElementsEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeMalevolenceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Malevolence has 20% increased Aura Effect", "Malevolence has 25% increased Reservation", statOrder = { 6161, 6162 }, level = 24, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeMalevolenceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Malevolence has 25% increased Aura Effect", "Malevolence has 25% increased Reservation", statOrder = { 6161, 6162 }, level = 56, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeMalevolenceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Malevolence has 30% increased Aura Effect", "Malevolence has 25% increased Reservation", statOrder = { 6161, 6162 }, level = 82, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeMalevolenceEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Malevolence has 40% increased Aura Effect", "Malevolence has 50% increased Reservation", statOrder = { 6161, 6162 }, level = 24, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeMalevolenceEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Malevolence has 50% increased Aura Effect", "Malevolence has 50% increased Reservation", statOrder = { 6161, 6162 }, level = 56, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeMalevolenceEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Malevolence has 60% increased Aura Effect", "Malevolence has 50% increased Reservation", statOrder = { 6161, 6162 }, level = 82, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHasteEffectAndReservation1"] = { type = "Spawn", tier = 1, "Haste has 20% increased Aura Effect", "Haste has 25% increased Reservation", statOrder = { 3364, 4044 }, level = 24, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHasteEffectAndReservation2"] = { type = "Spawn", tier = 2, "Haste has 25% increased Aura Effect", "Haste has 25% increased Reservation", statOrder = { 3364, 4044 }, level = 56, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHasteEffectAndReservation3"] = { type = "Spawn", tier = 3, "Haste has 30% increased Aura Effect", "Haste has 25% increased Reservation", statOrder = { 3364, 4044 }, level = 82, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHasteEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Haste has 40% increased Aura Effect", "Haste has 50% increased Reservation", statOrder = { 3364, 4044 }, level = 24, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHasteEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Haste has 50% increased Aura Effect", "Haste has 50% increased Reservation", statOrder = { 3364, 4044 }, level = 56, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHasteEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Haste has 60% increased Aura Effect", "Haste has 50% increased Reservation", statOrder = { 3364, 4044 }, level = 82, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePrecisionEffectAndReservation1"] = { type = "Spawn", tier = 1, "Precision has 20% increased Aura Effect", "Precision has 25% increased Reservation", statOrder = { 3365, 9708 }, level = 8, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 37, 150, 150, 0 }, modTags = { }, }, - ["WeaponTreePrecisionEffectAndReservation2"] = { type = "Spawn", tier = 2, "Precision has 25% increased Aura Effect", "Precision has 25% increased Reservation", statOrder = { 3365, 9708 }, level = 56, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 37, 150, 150, 0 }, modTags = { }, }, - ["WeaponTreePrecisionEffectAndReservation3"] = { type = "Spawn", tier = 3, "Precision has 30% increased Aura Effect", "Precision has 25% increased Reservation", statOrder = { 3365, 9708 }, level = 82, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 37, 150, 150, 0 }, modTags = { }, }, - ["WeaponTreePrecisionEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Precision has 40% increased Aura Effect", "Precision has 50% increased Reservation", statOrder = { 3365, 9708 }, level = 8, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 37, 150, 0 }, modTags = { }, }, - ["WeaponTreePrecisionEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Precision has 50% increased Aura Effect", "Precision has 50% increased Reservation", statOrder = { 3365, 9708 }, level = 56, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 37, 150, 0 }, modTags = { }, }, - ["WeaponTreePrecisionEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Precision has 60% increased Aura Effect", "Precision has 50% increased Reservation", statOrder = { 3365, 9708 }, level = 82, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 37, 150, 0 }, modTags = { }, }, - ["WeaponTreeBannerEffectAndReservation1"] = { type = "Spawn", tier = 1, "Banner Skills have 20% increased Aura Effect", "25% increased Reservation of Banner Skills", statOrder = { 3362, 4972 }, level = 8, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeBannerEffectAndReservation2"] = { type = "Spawn", tier = 2, "Banner Skills have 25% increased Aura Effect", "25% increased Reservation of Banner Skills", statOrder = { 3362, 4972 }, level = 56, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeBannerEffectAndReservation3"] = { type = "Spawn", tier = 3, "Banner Skills have 30% increased Aura Effect", "25% increased Reservation of Banner Skills", statOrder = { 3362, 4972 }, level = 82, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeBannerEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Banner Skills have 40% increased Aura Effect", "50% increased Reservation of Banner Skills", statOrder = { 3362, 4972 }, level = 8, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 37, 150, 0 }, modTags = { }, }, - ["WeaponTreeBannerEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Banner Skills have 50% increased Aura Effect", "50% increased Reservation of Banner Skills", statOrder = { 3362, 4972 }, level = 56, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 37, 150, 0 }, modTags = { }, }, - ["WeaponTreeBannerEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Banner Skills have 60% increased Aura Effect", "50% increased Reservation of Banner Skills", statOrder = { 3362, 4972 }, level = 82, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 37, 150, 0 }, modTags = { }, }, - ["WeaponTreeSpellSuppressionSpellDamageSuppressed1"] = { type = "Spawn", tier = 1, "-5% to amount of Suppressed Spell Damage Prevented", "+20% chance to Suppress Spell Damage", statOrder = { 1141, 1143 }, level = 15, group = "WeaponTreeSpellSuppressionSpellDamageSuppressed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellSuppressionSpellDamageSuppressed2"] = { type = "Spawn", tier = 2, "-5% to amount of Suppressed Spell Damage Prevented", "+25% chance to Suppress Spell Damage", statOrder = { 1141, 1143 }, level = 60, group = "WeaponTreeSpellSuppressionSpellDamageSuppressed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageSuppressedSpellSuppression1"] = { type = "Spawn", tier = 1, "Prevent +2% of Suppressed Spell Damage", "-10% chance to Suppress Spell Damage", statOrder = { 1141, 1143 }, level = 15, group = "WeaponTreeSpellDamageSuppressedSpellSuppression", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageSuppressedSpellSuppression2"] = { type = "Spawn", tier = 2, "Prevent +3% of Suppressed Spell Damage", "-10% chance to Suppress Spell Damage", statOrder = { 1141, 1143 }, level = 60, group = "WeaponTreeSpellDamageSuppressedSpellSuppression", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently1"] = { type = "Spawn", tier = 1, "+20% chance to Suppress Spell Damage", "-15% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently", statOrder = { 1143, 10185 }, level = 5, group = "WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently2"] = { type = "Spawn", tier = 2, "+25% chance to Suppress Spell Damage", "-18% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently", statOrder = { 1143, 10185 }, level = 55, group = "WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLifeOnSupress1"] = { type = "Spawn", tier = 1, "Recover 2% of Life when you Suppress Spell Damage", statOrder = { 9844 }, level = 15, group = "WeaponTreeLifeOnSupress", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLifeOnSupress2"] = { type = "Spawn", tier = 2, "Recover 3% of Life when you Suppress Spell Damage", statOrder = { 9844 }, level = 60, group = "WeaponTreeLifeOnSupress", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLifeOnBlock1"] = { type = "Spawn", tier = 1, "Recover 30 Life when you Block", statOrder = { 1760 }, level = 1, group = "WeaponTreeLifeOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeLifeOnBlock2"] = { type = "Spawn", tier = 2, "Recover 50 Life when you Block", statOrder = { 1760 }, level = 50, group = "WeaponTreeLifeOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeEnergyShieldOnBlock1"] = { type = "Spawn", tier = 1, "Gain 30 Energy Shield when you Block", statOrder = { 1759 }, level = 1, group = "WeaponTreeEnergyShieldOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeEnergyShieldOnBlock2"] = { type = "Spawn", tier = 2, "Gain 50 Energy Shield when you Block", statOrder = { 1759 }, level = 50, group = "WeaponTreeEnergyShieldOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeManaOnBlock1"] = { type = "Spawn", tier = 1, "30 Mana gained when you Block", statOrder = { 1758 }, level = 1, group = "WeaponTreeManaOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeManaOnBlock2"] = { type = "Spawn", tier = 2, "50 Mana gained when you Block", statOrder = { 1758 }, level = 50, group = "WeaponTreeManaOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeChillOnBlock1"] = { type = "Spawn", tier = 1, "50% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 1, group = "WeaponTreeChillOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeChillOnBlock2"] = { type = "Spawn", tier = 2, "Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 50, group = "WeaponTreeChillOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeShockOnBlock1"] = { type = "Spawn", tier = 1, "50% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10006 }, level = 1, group = "WeaponTreeShockOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeShockOnBlock2"] = { type = "Spawn", tier = 2, "Shock Attackers for 4 seconds on Block", statOrder = { 10006 }, level = 50, group = "WeaponTreeShockOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeScorchOnBlock1"] = { type = "Spawn", tier = 1, "15% chance to Scorch Enemies when you Block their Damage", statOrder = { 5713 }, level = 30, group = "WeaponTreeScorchOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeScorchOnBlock2"] = { type = "Spawn", tier = 2, "20% chance to Scorch Enemies when you Block their Damage", statOrder = { 5713 }, level = 75, group = "WeaponTreeScorchOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeBrittleOnBlock1"] = { type = "Spawn", tier = 1, "15% chance to inflict Brittle on Enemies when you Block their Damage", statOrder = { 5708 }, level = 30, group = "WeaponTreeBrittleOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeBrittleOnBlock2"] = { type = "Spawn", tier = 2, "20% chance to inflict Brittle on Enemies when you Block their Damage", statOrder = { 5708 }, level = 75, group = "WeaponTreeBrittleOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeSapOnBlock1"] = { type = "Spawn", tier = 1, "15% chance to Sap Enemies when you Block their Damage", statOrder = { 5712 }, level = 30, group = "WeaponTreeSapOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeSapOnBlock2"] = { type = "Spawn", tier = 2, "20% chance to Sap Enemies when you Block their Damage", statOrder = { 5712 }, level = 75, group = "WeaponTreeSapOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeMaxBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "+2% to maximum Chance to Block Attack Damage", "You take 5% of Damage from Blocked Hits", statOrder = { 1988, 4996 }, level = 45, group = "WeaponTreeMaxBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeMaxBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "+3% to maximum Chance to Block Attack Damage", "You take 5% of Damage from Blocked Hits", statOrder = { 1988, 4996 }, level = 82, group = "WeaponTreeMaxBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeMaxSpellBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "+2% to maximum Chance to Block Spell Damage", "You take 5% of Damage from Blocked Hits", statOrder = { 1989, 4996 }, level = 75, group = "WeaponTreeMaxSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeMaxSpellBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "+3% to maximum Chance to Block Spell Damage", "You take 5% of Damage from Blocked Hits", statOrder = { 1989, 4996 }, level = 82, group = "WeaponTreeMaxSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeAvoidIgniteChanceToBeShocked1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Ignited", "+20% chance to be Shocked", statOrder = { 1846, 2949 }, level = 1, group = "WeaponTreeAvoidIgniteChanceToBeShocked", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeAvoidIgniteChanceToBeShocked2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Ignited", "+20% chance to be Shocked", statOrder = { 1846, 2949 }, level = 60, group = "WeaponTreeAvoidIgniteChanceToBeShocked", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeAvoidFreezeChanceToBeIgnited1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Frozen", "+20% chance to be Ignited", statOrder = { 1845, 2948 }, level = 1, group = "WeaponTreeAvoidFreezeChanceToBeIgnited", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeAvoidFreezeChanceToBeIgnited2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Frozen", "+20% chance to be Ignited", statOrder = { 1845, 2948 }, level = 60, group = "WeaponTreeAvoidFreezeChanceToBeIgnited", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeAvoidShockChanceToBeFrozen1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Shocked", "+20% chance to be Frozen", statOrder = { 1848, 2947 }, level = 1, group = "WeaponTreeAvoidShockChanceToBeFrozen", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeAvoidShockChanceToBeFrozen2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Shocked", "+20% chance to be Frozen", statOrder = { 1848, 2947 }, level = 60, group = "WeaponTreeAvoidShockChanceToBeFrozen", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeAvoidBleedChanceToBePoisoned1"] = { type = "Spawn", tier = 1, "+20% chance to be Poisoned", "60% chance to Avoid Bleeding", statOrder = { 3370, 4216 }, level = 12, group = "WeaponTreeAvoidBleedChanceToBePoisoned", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeAvoidBleedChanceToBePoisoned2"] = { type = "Spawn", tier = 2, "+20% chance to be Poisoned", "100% chance to Avoid Bleeding", statOrder = { 3370, 4216 }, level = 65, group = "WeaponTreeAvoidBleedChanceToBePoisoned", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeAvoidPoisonBleedDurationOnSelf1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Poisoned", "50% increased Bleed Duration on you", statOrder = { 1849, 9970 }, level = 12, group = "WeaponTreeAvoidPoisonBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeAvoidPoisonBleedDurationOnSelf2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Poisoned", "50% increased Bleed Duration on you", statOrder = { 1849, 9970 }, level = 65, group = "WeaponTreeAvoidPoisonBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeCorruptingBloodImmunityExposureEffectOnSelf1"] = { type = "Spawn", tier = 1, "Corrupted Blood cannot be inflicted on you", "50% increased Effect of Exposure on you", statOrder = { 5408, 6522 }, level = 40, group = "WeaponTreeCorruptingBloodImmunityExposureEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeExposureImmunityChanceToBeMaimed1"] = { type = "Spawn", tier = 1, "Attack Hits have 20% chance to Maim you for 4 seconds", "Immune to Exposure", statOrder = { 5641, 7228 }, level = 40, group = "WeaponTreeExposureImmunityChanceToBeMaimed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf1"] = { type = "Spawn", tier = 1, "20% reduced Damage per Curse on you", "30% reduced Effect of Curses on you", statOrder = { 1216, 2170 }, level = 28, group = "WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf2"] = { type = "Spawn", tier = 2, "20% reduced Damage per Curse on you", "40% reduced Effect of Curses on you", statOrder = { 1216, 2170 }, level = 73, group = "WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf1"] = { type = "Spawn", tier = 1, "10% increased Damage per Curse on you", "25% increased Effect of Curses on you", statOrder = { 1216, 2170 }, level = 28, group = "WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf2"] = { type = "Spawn", tier = 2, "15% increased Damage per Curse on you", "25% increased Effect of Curses on you", statOrder = { 1216, 2170 }, level = 73, group = "WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeStunThresholdStunDurationOnSelf1"] = { type = "Spawn", tier = 1, "100% increased Stun Threshold", "50% increased Stun Duration on you", statOrder = { 3272, 4174 }, level = 1, group = "WeaponTreeStunThresholdStunDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeStunThresholdStunDurationOnSelf2"] = { type = "Spawn", tier = 2, "150% increased Stun Threshold", "50% increased Stun Duration on you", statOrder = { 3272, 4174 }, level = 60, group = "WeaponTreeStunThresholdStunDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeStunRecoveryReducedStunThreshold1"] = { type = "Spawn", tier = 1, "100% increased Stun and Block Recovery", "25% reduced Stun Threshold", statOrder = { 1902, 3272 }, level = 1, group = "WeaponTreeStunRecoveryReducedStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeStunRecoveryReducedStunThreshold2"] = { type = "Spawn", tier = 2, "150% increased Stun and Block Recovery", "25% reduced Stun Threshold", statOrder = { 1902, 3272 }, level = 60, group = "WeaponTreeStunRecoveryReducedStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits1"] = { type = "Spawn", tier = 1, "You take 30% reduced Extra Damage from Critical Strikes", "Hits have 100% increased Critical Strike Chance against you", statOrder = { 1512, 3130 }, level = 1, group = "WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits2"] = { type = "Spawn", tier = 2, "You take 40% reduced Extra Damage from Critical Strikes", "Hits have 100% increased Critical Strike Chance against you", statOrder = { 1512, 3130 }, level = 45, group = "WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits1"] = { type = "Spawn", tier = 1, "You take 20% increased Extra Damage from Critical Strikes", "Hits have 50% reduced Critical Strike Chance against you", statOrder = { 1512, 3130 }, level = 1, group = "WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits2"] = { type = "Spawn", tier = 2, "You take 20% increased Extra Damage from Critical Strikes", "Hits have 70% reduced Critical Strike Chance against you", statOrder = { 1512, 3130 }, level = 45, group = "WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeElementalDamageReflectImmunePhysicalReflectDamageTaken1"] = { type = "Spawn", tier = 1, "100% reduced Reflected Elemental Damage taken", "100% increased Reflected Physical Damage taken", statOrder = { 2709, 2710 }, level = 68, group = "WeaponTreeElementalDamageReflectImmunePhysicalReflectDamageTaken", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamageReflectImmuneElementalReflectDamageTaken1"] = { type = "Spawn", tier = 1, "100% increased Reflected Elemental Damage taken", "100% reduced Reflected Physical Damage taken", statOrder = { 2709, 2710 }, level = 68, group = "WeaponTreePhysicalDamageReflectImmuneElementalReflectDamageTaken", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeDamageYouReflectGainedAsLife1"] = { type = "Spawn", tier = 1, "20% of Damage you Reflect to Enemies when Hit is leeched as Life", statOrder = { 2711 }, level = 1, group = "WeaponTreeDamageYouReflectGainedAsLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeDamageYouReflectGainedAsLife2"] = { type = "Spawn", tier = 2, "30% of Damage you Reflect to Enemies when Hit is leeched as Life", statOrder = { 2711 }, level = 50, group = "WeaponTreeDamageYouReflectGainedAsLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLifeRecoveryRateReducedMaximumLife1"] = { type = "Spawn", tier = 1, "10% reduced maximum Life", "12% increased Life Recovery rate", statOrder = { 1571, 1578 }, level = 1, group = "WeaponTreeLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeLifeRecoveryRateReducedMaximumLife2"] = { type = "Spawn", tier = 2, "10% reduced maximum Life", "16% increased Life Recovery rate", statOrder = { 1571, 1578 }, level = 72, group = "WeaponTreeLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield1"] = { type = "Spawn", tier = 1, "25% reduced Energy Shield", "12% increased Energy Shield Recovery rate", statOrder = { 1560, 1568 }, level = 1, group = "WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield2"] = { type = "Spawn", tier = 2, "25% reduced Energy Shield", "16% increased Energy Shield Recovery rate", statOrder = { 1560, 1568 }, level = 72, group = "WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeManaRecoveryRateReducedMaximumMana1"] = { type = "Spawn", tier = 1, "10% reduced maximum Mana", "12% increased Mana Recovery rate", statOrder = { 1580, 1586 }, level = 1, group = "WeaponTreeManaRecoveryRateReducedMaximumMana", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeManaRecoveryRateReducedMaximumMana2"] = { type = "Spawn", tier = 2, "10% reduced maximum Mana", "16% increased Mana Recovery rate", statOrder = { 1580, 1586 }, level = 72, group = "WeaponTreeManaRecoveryRateReducedMaximumMana", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLifeRegenOnLowLife1"] = { type = "Spawn", tier = 1, "Regenerate 2% of Life per second while on Low Life", statOrder = { 1945 }, level = 1, group = "WeaponTreeLifeRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLifeRegenOnLowLife2"] = { type = "Spawn", tier = 2, "Regenerate 3% of Life per second while on Low Life", statOrder = { 1945 }, level = 50, group = "WeaponTreeLifeRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeEnergyShieldRegenOnLowLife1"] = { type = "Spawn", tier = 1, "Regenerate 2% of Energy Shield per second while on Low Life", statOrder = { 1801 }, level = 10, group = "WeaponTreeEnergyShieldRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeEnergyShieldRegenOnLowLife2"] = { type = "Spawn", tier = 2, "Regenerate 3% of Energy Shield per second while on Low Life", statOrder = { 1801 }, level = 80, group = "WeaponTreeEnergyShieldRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock1"] = { type = "Spawn", tier = 1, "-20% chance to Block Projectile Attack Damage", "+25% chance to Block Projectile Spell Damage", statOrder = { 2464, 5051 }, level = 1, group = "WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock2"] = { type = "Spawn", tier = 2, "-20% chance to Block Projectile Attack Damage", "+30% chance to Block Projectile Spell Damage", statOrder = { 2464, 5051 }, level = 65, group = "WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock1"] = { type = "Spawn", tier = 1, "+25% chance to Block Projectile Attack Damage", "-20% chance to Block Projectile Spell Damage", statOrder = { 2464, 5051 }, level = 1, group = "WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock2"] = { type = "Spawn", tier = 2, "+30% chance to Block Projectile Attack Damage", "-20% chance to Block Projectile Spell Damage", statOrder = { 2464, 5051 }, level = 62, group = "WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeElusiveOnLowLifeReducedElusiveEffect1"] = { type = "Spawn", tier = 1, "30% reduced Elusive Effect", "Gain Elusive on reaching Low Life", statOrder = { 6350, 6745 }, level = 30, group = "WeaponTreeElusiveOnLowLifeReducedElusiveEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeElusiveOnLowLifeReducedElusiveEffect2"] = { type = "Spawn", tier = 2, "20% reduced Elusive Effect", "Gain Elusive on reaching Low Life", statOrder = { 6350, 6745 }, level = 76, group = "WeaponTreeElusiveOnLowLifeReducedElusiveEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife1"] = { type = "Spawn", tier = 1, "Cannot be Stunned when on Low Life", "8% increased Damage taken while on Low Life", statOrder = { 2174, 6120 }, level = 1, group = "WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife2"] = { type = "Spawn", tier = 2, "Cannot be Stunned when on Low Life", "5% increased Damage taken while on Low Life", statOrder = { 2174, 6120 }, level = 76, group = "WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeConsecratedGroundAilmentImmunityConsecratedGroundEffect1"] = { type = "Spawn", tier = 1, "100% chance to Avoid Elemental Ailments while on Consecrated Ground", "50% reduced Effect of Consecrated Ground you create", statOrder = { 3555, 5847 }, level = 40, group = "WeaponTreeConsecratedGroundAilmentImmunityConsecratedGroundEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeConsecratedGroundEffectConsecratedGroundArea1"] = { type = "Spawn", tier = 1, "50% reduced Consecrated Ground Area", "30% increased Effect of Consecrated Ground you create", statOrder = { 5845, 5847 }, level = 40, group = "WeaponTreeConsecratedGroundEffectConsecratedGroundArea", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeConsecratedGroundEffectConsecratedGroundArea2"] = { type = "Spawn", tier = 2, "50% reduced Consecrated Ground Area", "50% increased Effect of Consecrated Ground you create", statOrder = { 5845, 5847 }, level = 80, group = "WeaponTreeConsecratedGroundEffectConsecratedGroundArea", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeGuardSkillCooldownRecoveryGuardDuration1"] = { type = "Spawn", tier = 1, "Guard Skills have 60% increased Cooldown Recovery Rate", "Guard Skills have 50% reduced Duration", statOrder = { 6920, 6921 }, level = 15, group = "WeaponTreeGuardSkillCooldownRecoveryGuardDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeGuardSkillCooldownRecoveryGuardDuration2"] = { type = "Spawn", tier = 2, "Guard Skills have 80% increased Cooldown Recovery Rate", "Guard Skills have 50% reduced Duration", statOrder = { 6920, 6921 }, level = 65, group = "WeaponTreeGuardSkillCooldownRecoveryGuardDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeDebuffTimePassed1"] = { type = "Spawn", tier = 1, "Debuffs on you expire 15% faster", statOrder = { 6151 }, level = 25, group = "WeaponTreeDebuffTimePassed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeDebuffTimePassed2"] = { type = "Spawn", tier = 2, "Debuffs on you expire 25% faster", statOrder = { 6151 }, level = 78, group = "WeaponTreeDebuffTimePassed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeAvoidAilmentsFromCriticalStrikes1"] = { type = "Spawn", tier = 1, "50% chance to avoid Ailments from Critical Strikes", statOrder = { 4934 }, level = 1, group = "WeaponTreeAvoidAilmentsFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeAvoidAilmentsFromCriticalStrikes2"] = { type = "Spawn", tier = 2, "75% chance to avoid Ailments from Critical Strikes", statOrder = { 4934 }, level = 70, group = "WeaponTreeAvoidAilmentsFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery1"] = { type = "Spawn", tier = 1, "Retaliation Skills have 30% reduced Cooldown Recovery Rate", "Retaliation Skills deal 45% more Damage", statOrder = { 5889, 10588 }, level = 28, group = "WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery2"] = { type = "Spawn", tier = 2, "Retaliation Skills have 30% reduced Cooldown Recovery Rate", "Retaliation Skills deal 60% more Damage", statOrder = { 5889, 10588 }, level = 75, group = "WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["WeaponTreeFortificationDurationMaximumFortification1"] = { type = "Spawn", tier = 1, "150% increased Fortification Duration", "-2 to maximum Fortification", statOrder = { 2265, 5031 }, level = 35, group = "WeaponTreeFortificationDurationMaximumFortification", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeFortificationDurationMaximumFortification2"] = { type = "Spawn", tier = 2, "200% increased Fortification Duration", "-2 to maximum Fortification", statOrder = { 2265, 5031 }, level = 80, group = "WeaponTreeFortificationDurationMaximumFortification", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeNumberOfCorpsesReducedCorpseLife1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have +1 to Maximum number of corpses allowed", "Corpses you Spawn have 5% reduced Maximum Life", statOrder = { 6167, 9163 }, level = 16, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeNumberOfCorpsesReducedCorpseLife2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have +2 to Maximum number of corpses allowed", "Corpses you Spawn have 5% reduced Maximum Life", statOrder = { 6167, 9163 }, level = 72, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeNumberOfCorpsesReducedCorpseLife2h1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have +2 to Maximum number of corpses allowed", "Corpses you Spawn have 10% reduced Maximum Life", statOrder = { 6167, 9163 }, level = 16, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeNumberOfCorpsesReducedCorpseLife2h2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have +4 to Maximum number of corpses allowed", "Corpses you Spawn have 10% reduced Maximum Life", statOrder = { 6167, 9163 }, level = 72, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeCorpseLifeReducedNumberOfCorpses1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have -1 to Maximum number of corpses allowed", "Corpses you Spawn have 10% increased Maximum Life", statOrder = { 6167, 9163 }, level = 16, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeCorpseLifeReducedNumberOfCorpses2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have -1 to Maximum number of corpses allowed", "Corpses you Spawn have 15% increased Maximum Life", statOrder = { 6167, 9163 }, level = 72, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeCorpseLifeReducedNumberOfCorpses2h1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have -2 to Maximum number of corpses allowed", "Corpses you Spawn have 20% increased Maximum Life", statOrder = { 6167, 9163 }, level = 16, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeCorpseLifeReducedNumberOfCorpses2h2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have -2 to Maximum number of corpses allowed", "Corpses you Spawn have 30% increased Maximum Life", statOrder = { 6167, 9163 }, level = 72, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration1"] = { type = "Spawn", tier = 1, "10% reduced Minion Duration", "Minions have 15% increased Cooldown Recovery Rate", statOrder = { 5032, 9288 }, level = 12, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration2"] = { type = "Spawn", tier = 2, "10% reduced Minion Duration", "Minions have 25% increased Cooldown Recovery Rate", statOrder = { 5032, 9288 }, level = 64, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration2h1"] = { type = "Spawn", tier = 1, "20% reduced Minion Duration", "Minions have 30% increased Cooldown Recovery Rate", statOrder = { 5032, 9288 }, level = 12, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration2h2"] = { type = "Spawn", tier = 2, "20% reduced Minion Duration", "Minions have 50% increased Cooldown Recovery Rate", statOrder = { 5032, 9288 }, level = 64, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDurationReducedCooldownRecovery1"] = { type = "Spawn", tier = 1, "15% increased Minion Duration", "Minions have 15% reduced Cooldown Recovery Rate", statOrder = { 5032, 9288 }, level = 12, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionDurationReducedCooldownRecovery2"] = { type = "Spawn", tier = 2, "20% increased Minion Duration", "Minions have 15% reduced Cooldown Recovery Rate", statOrder = { 5032, 9288 }, level = 64, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionDurationReducedCooldownRecovery2h1"] = { type = "Spawn", tier = 1, "30% increased Minion Duration", "Minions have 30% reduced Cooldown Recovery Rate", statOrder = { 5032, 9288 }, level = 12, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionDurationReducedCooldownRecovery2h2"] = { type = "Spawn", tier = 2, "40% increased Minion Duration", "Minions have 30% reduced Cooldown Recovery Rate", statOrder = { 5032, 9288 }, level = 64, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAreaOfEffectReducedDamage1"] = { type = "Spawn", tier = 1, "Minions deal 15% reduced Damage", "Minions have 20% increased Area of Effect", statOrder = { 1973, 3024 }, level = 1, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAreaOfEffectReducedDamage2"] = { type = "Spawn", tier = 2, "Minions deal 15% reduced Damage", "Minions have 30% increased Area of Effect", statOrder = { 1973, 3024 }, level = 55, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAreaOfEffectReducedDamage2h1"] = { type = "Spawn", tier = 1, "Minions deal 30% reduced Damage", "Minions have 40% increased Area of Effect", statOrder = { 1973, 3024 }, level = 1, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAreaOfEffectReducedDamage2h2"] = { type = "Spawn", tier = 2, "Minions deal 30% reduced Damage", "Minions have 60% increased Area of Effect", statOrder = { 1973, 3024 }, level = 55, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionElementalResistanceReducedChaosResistance1"] = { type = "Spawn", tier = 1, "Minions have +12% to all Elemental Resistances", "Minions have -11% to Chaos Resistance", statOrder = { 2912, 2913 }, level = 1, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionElementalResistanceReducedChaosResistance2"] = { type = "Spawn", tier = 2, "Minions have +16% to all Elemental Resistances", "Minions have -11% to Chaos Resistance", statOrder = { 2912, 2913 }, level = 55, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionElementalResistanceReducedChaosResistance2h1"] = { type = "Spawn", tier = 1, "Minions have +25% to all Elemental Resistances", "Minions have -23% to Chaos Resistance", statOrder = { 2912, 2913 }, level = 1, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionElementalResistanceReducedChaosResistance2h2"] = { type = "Spawn", tier = 2, "Minions have +35% to all Elemental Resistances", "Minions have -23% to Chaos Resistance", statOrder = { 2912, 2913 }, level = 55, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionChaosResistanceReducedElementalResistance1"] = { type = "Spawn", tier = 1, "Minions have -6% to all Elemental Resistances", "Minions have +17% to Chaos Resistance", statOrder = { 2912, 2913 }, level = 1, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionChaosResistanceReducedElementalResistance2"] = { type = "Spawn", tier = 2, "Minions have -6% to all Elemental Resistances", "Minions have +23% to Chaos Resistance", statOrder = { 2912, 2913 }, level = 55, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionChaosResistanceReducedElementalResistance2h1"] = { type = "Spawn", tier = 1, "Minions have -12% to all Elemental Resistances", "Minions have +37% to Chaos Resistance", statOrder = { 2912, 2913 }, level = 1, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionChaosResistanceReducedElementalResistance2h2"] = { type = "Spawn", tier = 2, "Minions have -12% to all Elemental Resistances", "Minions have +47% to Chaos Resistance", statOrder = { 2912, 2913 }, level = 55, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionArmour1"] = { type = "Spawn", tier = 1, "Minions have +350 to Armour", statOrder = { 2905 }, level = 25, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionArmour2"] = { type = "Spawn", tier = 2, "Minions have +500 to Armour", statOrder = { 2905 }, level = 55, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionArmour2h1"] = { type = "Spawn", tier = 1, "Minions have +700 to Armour", statOrder = { 2905 }, level = 25, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionArmour2h2"] = { type = "Spawn", tier = 2, "Minions have +1000 to Armour", statOrder = { 2905 }, level = 55, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionEvasion1"] = { type = "Spawn", tier = 1, "Minions have 20% increased Evasion Rating", statOrder = { 9304 }, level = 1, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionEvasion2"] = { type = "Spawn", tier = 2, "Minions have 30% increased Evasion Rating", statOrder = { 9304 }, level = 55, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionEvasion2h1"] = { type = "Spawn", tier = 1, "Minions have 40% increased Evasion Rating", statOrder = { 9304 }, level = 1, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionEvasion2h2"] = { type = "Spawn", tier = 2, "Minions have 60% increased Evasion Rating", statOrder = { 9304 }, level = 55, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion1"] = { type = "Spawn", tier = 1, "Minions have 15% reduced Evasion Rating", "Minions have +15% chance to Suppress Spell Damage", statOrder = { 9304, 9334 }, level = 24, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion2"] = { type = "Spawn", tier = 2, "Minions have 15% reduced Evasion Rating", "Minions have +25% chance to Suppress Spell Damage", statOrder = { 9304, 9334 }, level = 76, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion2h1"] = { type = "Spawn", tier = 1, "Minions have 30% reduced Evasion Rating", "Minions have +30% chance to Suppress Spell Damage", statOrder = { 9304, 9334 }, level = 24, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion2h2"] = { type = "Spawn", tier = 2, "Minions have 30% reduced Evasion Rating", "Minions have +50% chance to Suppress Spell Damage", statOrder = { 9304, 9334 }, level = 76, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeReducedLifeRecoveryRate1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced Life Recovery rate", "Minions have 20% increased maximum Life", statOrder = { 1765, 1766 }, level = 1, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeReducedLifeRecoveryRate2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced Life Recovery rate", "Minions have 30% increased maximum Life", statOrder = { 1765, 1766 }, level = 62, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeReducedLifeRecoveryRate2h1"] = { type = "Spawn", tier = 1, "Minions have 20% reduced Life Recovery rate", "Minions have 40% increased maximum Life", statOrder = { 1765, 1766 }, level = 1, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeReducedLifeRecoveryRate2h2"] = { type = "Spawn", tier = 2, "Minions have 20% reduced Life Recovery rate", "Minions have 60% increased maximum Life", statOrder = { 1765, 1766 }, level = 62, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife1"] = { type = "Spawn", tier = 1, "Minions have 15% increased Life Recovery rate", "Minions have 15% reduced maximum Life", statOrder = { 1765, 1766 }, level = 10, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife2"] = { type = "Spawn", tier = 2, "Minions have 20% increased Life Recovery rate", "Minions have 15% reduced maximum Life", statOrder = { 1765, 1766 }, level = 66, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife2h1"] = { type = "Spawn", tier = 1, "Minions have 30% increased Life Recovery rate", "Minions have 30% reduced maximum Life", statOrder = { 1765, 1766 }, level = 10, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife2h2"] = { type = "Spawn", tier = 2, "Minions have 40% increased Life Recovery rate", "Minions have 30% reduced maximum Life", statOrder = { 1765, 1766 }, level = 66, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance1"] = { type = "Spawn", tier = 1, "Minions have -6% to all Elemental Resistances", "Minions gain 15% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 2912, 9319 }, level = 15, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance2"] = { type = "Spawn", tier = 2, "Minions have -6% to all Elemental Resistances", "Minions gain 20% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 2912, 9319 }, level = 78, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance2h1"] = { type = "Spawn", tier = 1, "Minions have -12% to all Elemental Resistances", "Minions gain 30% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 2912, 9319 }, level = 15, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance2h2"] = { type = "Spawn", tier = 2, "Minions have -12% to all Elemental Resistances", "Minions gain 40% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 2912, 9319 }, level = 78, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionMaximumElementalResistances1"] = { type = "Spawn", tier = 1, "Minions have +1% to all maximum Elemental Resistances", statOrder = { 9318 }, level = 83, group = "WeaponTreeMinionMaximumElementalResistances", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionMaximumElementalResistances2h1"] = { type = "Spawn", tier = 1, "Minions have +2% to all maximum Elemental Resistances", statOrder = { 9318 }, level = 83, group = "WeaponTreeMinionMaximumElementalResistances", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionBlindOnHitChance1"] = { type = "Spawn", tier = 1, "Minions have 10% chance to Blind on Hit with Attacks", statOrder = { 9277 }, level = 20, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionBlindOnHitChance2"] = { type = "Spawn", tier = 2, "Minions have 15% chance to Blind on Hit with Attacks", statOrder = { 9277 }, level = 73, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionBlindOnHitChance2h1"] = { type = "Spawn", tier = 1, "Minions have 20% chance to Blind on Hit with Attacks", statOrder = { 9277 }, level = 20, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionBlindOnHitChance2h2"] = { type = "Spawn", tier = 2, "Minions have 30% chance to Blind on Hit with Attacks", statOrder = { 9277 }, level = 73, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionHinderOnHitChance1"] = { type = "Spawn", tier = 1, "Minions have 10% chance to Hinder Enemies on Hit with Spells", statOrder = { 9335 }, level = 20, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionHinderOnHitChance2"] = { type = "Spawn", tier = 2, "Minions have 15% chance to Hinder Enemies on Hit with Spells", statOrder = { 9335 }, level = 73, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionHinderOnHitChance2h1"] = { type = "Spawn", tier = 1, "Minions have 20% chance to Hinder Enemies on Hit with Spells", statOrder = { 9335 }, level = 20, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionHinderOnHitChance2h2"] = { type = "Spawn", tier = 2, "Minions have 30% chance to Hinder Enemies on Hit with Spells", statOrder = { 9335 }, level = 73, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionMovementSpeed1"] = { type = "Spawn", tier = 1, "Minions have 12% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { }, }, - ["WeaponTreeMinionMovementSpeed2"] = { type = "Spawn", tier = 2, "Minions have 16% increased Movement Speed", statOrder = { 1769 }, level = 52, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { }, }, - ["WeaponTreeMinionMovementSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 24% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { }, }, - ["WeaponTreeMinionMovementSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 32% increased Movement Speed", statOrder = { 1769 }, level = 52, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { }, }, - ["WeaponTreeMinionProjectileSpeed1"] = { type = "Spawn", tier = 1, "Minions have 15% increased Projectile Speed", statOrder = { 9327 }, level = 1, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionProjectileSpeed2"] = { type = "Spawn", tier = 2, "Minions have 20% increased Projectile Speed", statOrder = { 9327 }, level = 76, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionProjectileSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 30% increased Projectile Speed", statOrder = { 9327 }, level = 1, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionProjectileSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 40% increased Projectile Speed", statOrder = { 9327 }, level = 76, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionBleedChanceBleedDurationOnSelf1"] = { type = "Spawn", tier = 1, "Minions have 8% chance to cause Bleeding with Attacks", "20% increased Bleed Duration on you", statOrder = { 2490, 9970 }, level = 25, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionBleedChanceBleedDurationOnSelf2"] = { type = "Spawn", tier = 2, "Minions have 12% chance to cause Bleeding with Attacks", "20% increased Bleed Duration on you", statOrder = { 2490, 9970 }, level = 78, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionBleedChanceBleedDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "Minions have 16% chance to cause Bleeding with Attacks", "40% increased Bleed Duration on you", statOrder = { 2490, 9970 }, level = 25, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionBleedChanceBleedDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "Minions have 24% chance to cause Bleeding with Attacks", "40% increased Bleed Duration on you", statOrder = { 2490, 9970 }, level = 78, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf1"] = { type = "Spawn", tier = 1, "Minions have 8% chance to Poison Enemies on Hit", "20% increased Poison Duration on you", statOrder = { 3174, 9979 }, level = 25, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf2"] = { type = "Spawn", tier = 2, "Minions have 12% chance to Poison Enemies on Hit", "20% increased Poison Duration on you", statOrder = { 3174, 9979 }, level = 78, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "Minions have 16% chance to Poison Enemies on Hit", "40% increased Poison Duration on you", statOrder = { 3174, 9979 }, level = 25, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "Minions have 24% chance to Poison Enemies on Hit", "40% increased Poison Duration on you", statOrder = { 3174, 9979 }, level = 78, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf1"] = { type = "Spawn", tier = 1, "20% increased Ignite Duration on you", "Minions have 8% chance to Ignite", statOrder = { 1875, 9285 }, level = 25, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf2"] = { type = "Spawn", tier = 2, "20% increased Ignite Duration on you", "Minions have 12% chance to Ignite", statOrder = { 1875, 9285 }, level = 78, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "40% increased Ignite Duration on you", "Minions have 16% chance to Ignite", statOrder = { 1875, 9285 }, level = 25, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "40% increased Ignite Duration on you", "Minions have 24% chance to Ignite", statOrder = { 1875, 9285 }, level = 78, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf1"] = { type = "Spawn", tier = 1, "20% increased Freeze Duration on you", "Minions have 8% chance to Freeze", statOrder = { 1874, 9282 }, level = 25, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf2"] = { type = "Spawn", tier = 2, "20% increased Freeze Duration on you", "Minions have 12% chance to Freeze", statOrder = { 1874, 9282 }, level = 78, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "40% increased Freeze Duration on you", "Minions have 16% chance to Freeze", statOrder = { 1874, 9282 }, level = 25, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "40% increased Freeze Duration on you", "Minions have 24% chance to Freeze", statOrder = { 1874, 9282 }, level = 78, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionShockChanceShockDurationOnSelf1"] = { type = "Spawn", tier = 1, "20% increased Shock Duration on you", "Minions have 8% chance to Shock", statOrder = { 1873, 9287 }, level = 25, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionShockChanceShockDurationOnSelf2"] = { type = "Spawn", tier = 2, "20% increased Shock Duration on you", "Minions have 12% chance to Shock", statOrder = { 1873, 9287 }, level = 78, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionShockChanceShockDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "40% increased Shock Duration on you", "Minions have 16% chance to Shock", statOrder = { 1873, 9287 }, level = 25, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionShockChanceShockDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "40% increased Shock Duration on you", "Minions have 24% chance to Shock", statOrder = { 1873, 9287 }, level = 78, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeLinkSkillsEffectReducedLinkManaCost1"] = { type = "Spawn", tier = 1, "Link Skills have 8% increased Buff Effect", "20% increased Mana Cost of Link Skills", statOrder = { 7486, 7494 }, level = 40, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeLinkSkillsEffectReducedLinkManaCost2"] = { type = "Spawn", tier = 2, "Link Skills have 12% increased Buff Effect", "20% increased Mana Cost of Link Skills", statOrder = { 7486, 7494 }, level = 82, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeLinkSkillsEffectReducedLinkManaCost2h1"] = { type = "Spawn", tier = 1, "Link Skills have 16% increased Buff Effect", "40% increased Mana Cost of Link Skills", statOrder = { 7486, 7494 }, level = 40, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeLinkSkillsEffectReducedLinkManaCost2h2"] = { type = "Spawn", tier = 2, "Link Skills have 24% increased Buff Effect", "40% increased Mana Cost of Link Skills", statOrder = { 7486, 7494 }, level = 82, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect1"] = { type = "Spawn", tier = 1, "Link Skills have 20% reduced Buff Effect", "Link Skills Link to 1 additional random target", statOrder = { 7486, 7508 }, level = 84, group = "WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect2h1"] = { type = "Spawn", tier = 1, "Link Skills have 30% reduced Buff Effect", "Link Skills Link to 2 additional random targets", statOrder = { 7486, 7508 }, level = 84, group = "WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect1"] = { type = "Spawn", tier = 1, "Convocation has 25% increased Cooldown Recovery Rate", "20% reduced Convocation Buff Effect", statOrder = { 3877, 4023 }, level = 28, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect2"] = { type = "Spawn", tier = 2, "Convocation has 40% increased Cooldown Recovery Rate", "20% reduced Convocation Buff Effect", statOrder = { 3877, 4023 }, level = 70, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect2h1"] = { type = "Spawn", tier = 1, "Convocation has 50% increased Cooldown Recovery Rate", "40% reduced Convocation Buff Effect", statOrder = { 3877, 4023 }, level = 28, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect2h2"] = { type = "Spawn", tier = 2, "Convocation has 80% increased Cooldown Recovery Rate", "40% reduced Convocation Buff Effect", statOrder = { 3877, 4023 }, level = 70, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeOfferingEffectReducedDuration1"] = { type = "Spawn", tier = 1, "10% increased effect of Offerings", "Offering Skills have 15% reduced Duration", statOrder = { 4063, 9553 }, level = 16, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeOfferingEffectReducedDuration2"] = { type = "Spawn", tier = 2, "15% increased effect of Offerings", "Offering Skills have 15% reduced Duration", statOrder = { 4063, 9553 }, level = 78, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeOfferingEffectReducedDuration2h1"] = { type = "Spawn", tier = 1, "20% increased effect of Offerings", "Offering Skills have 30% reduced Duration", statOrder = { 4063, 9553 }, level = 16, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeOfferingEffectReducedDuration2h2"] = { type = "Spawn", tier = 2, "30% increased effect of Offerings", "Offering Skills have 30% reduced Duration", statOrder = { 4063, 9553 }, level = 78, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeOfferingDurationReducedEffect1"] = { type = "Spawn", tier = 1, "10% reduced effect of Offerings", "Offering Skills have 25% increased Duration", statOrder = { 4063, 9553 }, level = 16, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeOfferingDurationReducedEffect2"] = { type = "Spawn", tier = 2, "10% reduced effect of Offerings", "Offering Skills have 40% increased Duration", statOrder = { 4063, 9553 }, level = 78, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeOfferingDurationReducedEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced effect of Offerings", "Offering Skills have 50% increased Duration", statOrder = { 4063, 9553 }, level = 16, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeOfferingDurationReducedEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced effect of Offerings", "Offering Skills have 80% increased Duration", statOrder = { 4063, 9553 }, level = 78, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced Movement Speed", "Minions have 10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1769, 3381 }, level = 50, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced Movement Speed", "Minions have 15% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1769, 3381 }, level = 81, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced Movement Speed", "Minions have 20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1769, 3381 }, level = 50, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced Movement Speed", "Minions have 30% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1769, 3381 }, level = 81, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance1"] = { type = "Spawn", tier = 1, "Minions have -7% to Chaos Resistance", "Minions have 10% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 2913, 3379 }, level = 50, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance2"] = { type = "Spawn", tier = 2, "Minions have -7% to Chaos Resistance", "Minions have 15% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 2913, 3379 }, level = 81, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance2h1"] = { type = "Spawn", tier = 1, "Minions have -7% to Chaos Resistance", "Minions have 20% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 2913, 3379 }, level = 50, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance2h2"] = { type = "Spawn", tier = 2, "Minions have -7% to Chaos Resistance", "Minions have 30% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 2913, 3379 }, level = 81, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionBlockReducedSpellBlock1"] = { type = "Spawn", tier = 1, "Minions have +20% Chance to Block Attack Damage", "Minions have -10% Chance to Block Spell Damage", statOrder = { 2903, 2904 }, level = 24, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionBlockReducedSpellBlock2"] = { type = "Spawn", tier = 2, "Minions have +25% Chance to Block Attack Damage", "Minions have -10% Chance to Block Spell Damage", statOrder = { 2903, 2904 }, level = 75, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionBlockReducedSpellBlock2h1"] = { type = "Spawn", tier = 1, "Minions have +30% Chance to Block Attack Damage", "Minions have -15% Chance to Block Spell Damage", statOrder = { 2903, 2904 }, level = 24, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionBlockReducedSpellBlock2h2"] = { type = "Spawn", tier = 2, "Minions have +40% Chance to Block Attack Damage", "Minions have -15% Chance to Block Spell Damage", statOrder = { 2903, 2904 }, level = 75, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionSpellBlockReducedBlock1"] = { type = "Spawn", tier = 1, "Minions have -10% Chance to Block Attack Damage", "Minions have +20% Chance to Block Spell Damage", statOrder = { 2903, 2904 }, level = 24, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionSpellBlockReducedBlock2"] = { type = "Spawn", tier = 2, "Minions have -10% Chance to Block Attack Damage", "Minions have +25% Chance to Block Spell Damage", statOrder = { 2903, 2904 }, level = 75, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionSpellBlockReducedBlock2h1"] = { type = "Spawn", tier = 1, "Minions have -15% Chance to Block Attack Damage", "Minions have +30% Chance to Block Spell Damage", statOrder = { 2903, 2904 }, level = 24, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionSpellBlockReducedBlock2h2"] = { type = "Spawn", tier = 2, "Minions have -15% Chance to Block Attack Damage", "Minions have +40% Chance to Block Spell Damage", statOrder = { 2903, 2904 }, level = 75, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced maximum Life", "Minions Recover 3% of their Life when they Block", statOrder = { 1766, 3061 }, level = 50, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced maximum Life", "Minions Recover 4% of their Life when they Block", statOrder = { 1766, 3061 }, level = 81, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife2h1"] = { type = "Spawn", tier = 1, "Minions have 20% reduced maximum Life", "Minions Recover 6% of their Life when they Block", statOrder = { 1766, 3061 }, level = 50, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife2h2"] = { type = "Spawn", tier = 2, "Minions have 20% reduced maximum Life", "Minions Recover 8% of their Life when they Block", statOrder = { 1766, 3061 }, level = 81, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeGolemsAllowedReducedGolemBuffEffect1"] = { type = "Spawn", tier = 1, "+1 to maximum number of Summoned Golems", "50% reduced Effect of Buffs granted by your Golems", statOrder = { 3690, 6894 }, level = 40, group = "WeaponTreeGolemsAllowedReducedGolemBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeGolemsAllowedReducedGolemBuffEffect2h1"] = { type = "Spawn", tier = 1, "+2 to maximum number of Summoned Golems", "100% reduced Effect of Buffs granted by your Golems", statOrder = { 3690, 6894 }, level = 77, group = "WeaponTreeGolemsAllowedReducedGolemBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeGolemBuffEffectReducedGolemsAllowed1"] = { type = "Spawn", tier = 1, "-1 to maximum number of Summoned Golems", "75% increased Effect of Buffs granted by your Golems", statOrder = { 3690, 6894 }, level = 40, group = "WeaponTreeGolemBuffEffectReducedGolemsAllowed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeGolemBuffEffectReducedGolemsAllowed2h1"] = { type = "Spawn", tier = 1, "-2 to maximum number of Summoned Golems", "150% increased Effect of Buffs granted by your Golems", statOrder = { 3690, 6894 }, level = 77, group = "WeaponTreeGolemBuffEffectReducedGolemsAllowed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeSupportManaLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Mana Leech", statOrder = { 514 }, level = 38, group = "WeaponTreeSupportManaLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportManaLeech2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Mana Leech", statOrder = { 514 }, level = 38, group = "WeaponTreeSupportManaLeech", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportAdditionalAccuracy"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 15 Additional Accuracy", statOrder = { 480 }, level = 38, group = "WeaponTreeSupportAdditionalAccuracy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportAdditionalAccuracy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 15 Additional Accuracy", statOrder = { 480 }, level = 38, group = "WeaponTreeSupportAdditionalAccuracy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportArrogance"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Arrogance", statOrder = { 459 }, level = 38, group = "WeaponTreeSupportArrogance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportArrogance2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Arrogance", statOrder = { 459 }, level = 38, group = "WeaponTreeSupportArrogance", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportFork"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Fork", statOrder = { 486 }, level = 38, group = "WeaponTreeSupportFork", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportFork2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Fork", statOrder = { 486 }, level = 38, group = "WeaponTreeSupportFork", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChanceToPoison"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance to Poison", statOrder = { 523 }, level = 38, group = "WeaponTreeSupportChanceToPoison", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChanceToPoison2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance to Poison", statOrder = { 523 }, level = 38, group = "WeaponTreeSupportChanceToPoison", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportLifeLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Life Leech", statOrder = { 483 }, level = 38, group = "WeaponTreeSupportLifeLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportLifeLeech2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Life Leech", statOrder = { 483 }, level = 38, group = "WeaponTreeSupportLifeLeech", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportMeleeSplash"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Melee Splash", statOrder = { 471 }, level = 38, group = "WeaponTreeSupportMeleeSplash", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportMeleeSplash2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Melee Splash", statOrder = { 471 }, level = 38, group = "WeaponTreeSupportMeleeSplash", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportFasterProjectiles"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Faster Projectiles", statOrder = { 482 }, level = 38, group = "WeaponTreeSupportFasterProjectiles", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportFasterProjectiles2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Faster Projectiles", statOrder = { 482 }, level = 38, group = "WeaponTreeSupportFasterProjectiles", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportStun"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Stun", statOrder = { 479 }, level = 38, group = "WeaponTreeSupportStun", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportStun2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Stun", statOrder = { 479 }, level = 38, group = "WeaponTreeSupportStun", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIncreasedArea"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Increased Area of Effect", statOrder = { 224 }, level = 38, group = "WeaponTreeSupportIncreasedArea", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIncreasedArea2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Increased Area of Effect", statOrder = { 224 }, level = 38, group = "WeaponTreeSupportIncreasedArea", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportKnockback"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Knockback", statOrder = { 502 }, level = 38, group = "WeaponTreeSupportKnockback", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportKnockback2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Knockback", statOrder = { 502 }, level = 38, group = "WeaponTreeSupportKnockback", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportMinionLife"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Life", statOrder = { 504 }, level = 38, group = "WeaponTreeSupportMinionLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportMinionLife2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Life", statOrder = { 504 }, level = 38, group = "WeaponTreeSupportMinionLife", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportMinionSpeed"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Speed", statOrder = { 508 }, level = 38, group = "WeaponTreeSupportMinionSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportMinionSpeed2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Speed", statOrder = { 508 }, level = 38, group = "WeaponTreeSupportMinionSpeed", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportLesserMultipleProjectiles"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Multiple Projectiles", statOrder = { 505 }, level = 38, group = "WeaponTreeSupportLesserMultipleProjectiles", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportLesserMultipleProjectiles2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Multiple Projectiles", statOrder = { 505 }, level = 38, group = "WeaponTreeSupportLesserMultipleProjectiles", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportBlind"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Blind", statOrder = { 470 }, level = 38, group = "WeaponTreeSupportBlind", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportBlind2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Blind", statOrder = { 470 }, level = 38, group = "WeaponTreeSupportBlind", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportBlasphemy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Blasphemy", statOrder = { 520 }, level = 38, group = "WeaponTreeSupportBlasphemy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportBlasphemy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Blasphemy", statOrder = { 520 }, level = 38, group = "WeaponTreeSupportBlasphemy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIronWill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Will", statOrder = { 501 }, level = 38, group = "WeaponTreeSupportIronWill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIronWill2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Will", statOrder = { 501 }, level = 38, group = "WeaponTreeSupportIronWill", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportFasterCast"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 500 }, level = 38, group = "WeaponTreeSupportFasterCast", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportFasterCast2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 500 }, level = 38, group = "WeaponTreeSupportFasterCast", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChanceToFlee"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Chance to Flee", statOrder = { 498 }, level = 38, group = "WeaponTreeSupportChanceToFlee", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChanceToFlee2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Chance to Flee", statOrder = { 498 }, level = 38, group = "WeaponTreeSupportChanceToFlee", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportItemRarity"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Item Rarity", statOrder = { 321 }, level = 38, group = "WeaponTreeSupportItemRarity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportItemRarity2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Item Rarity", statOrder = { 321 }, level = 38, group = "WeaponTreeSupportItemRarity", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChanceToIgnite"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Combustion", statOrder = { 245 }, level = 38, group = "WeaponTreeSupportChanceToIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChanceToIgnite2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Combustion", statOrder = { 245 }, level = 38, group = "WeaponTreeSupportChanceToIgnite", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportLifeGainOnHit"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Life Gain On Hit", statOrder = { 324 }, level = 38, group = "WeaponTreeSupportLifeGainOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportLifeGainOnHit2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Life Gain On Hit", statOrder = { 324 }, level = 38, group = "WeaponTreeSupportLifeGainOnHit", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportCullingStrike"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Culling Strike", statOrder = { 254 }, level = 38, group = "WeaponTreeSupportCullingStrike", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportCullingStrike2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Culling Strike", statOrder = { 254 }, level = 38, group = "WeaponTreeSupportCullingStrike", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportPointBlank"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Point Blank", statOrder = { 354 }, level = 38, group = "WeaponTreeSupportPointBlank", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportPointBlank2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Point Blank", statOrder = { 354 }, level = 38, group = "WeaponTreeSupportPointBlank", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIronGrip"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Grip", statOrder = { 319 }, level = 38, group = "WeaponTreeSupportIronGrip", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIronGrip2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Grip", statOrder = { 319 }, level = 38, group = "WeaponTreeSupportIronGrip", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChain"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chain", statOrder = { 243 }, level = 38, group = "WeaponTreeSupportChain", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChain2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chain", statOrder = { 243 }, level = 38, group = "WeaponTreeSupportChain", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportElementalArmy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Army Support", statOrder = { 384 }, level = 38, group = "WeaponTreeSupportElementalArmy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportElementalArmy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Army Support", statOrder = { 384 }, level = 38, group = "WeaponTreeSupportElementalArmy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportEmpower"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Empower", statOrder = { 269 }, level = 38, group = "WeaponTreeSupportEmpower", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportEmpower2H"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Empower", statOrder = { 269 }, level = 38, group = "WeaponTreeSupportEmpower", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportSlowerProjectiles"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Slower Projectiles", statOrder = { 377 }, level = 38, group = "WeaponTreeSupportSlowerProjectiles", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportSlowerProjectiles2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Slower Projectiles", statOrder = { 377 }, level = 38, group = "WeaponTreeSupportSlowerProjectiles", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportLessDuration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Less Duration", statOrder = { 365 }, level = 38, group = "WeaponTreeSupportLessDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportLessDuration2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Less Duration", statOrder = { 365 }, level = 38, group = "WeaponTreeSupportLessDuration", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportEnhance"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enhance", statOrder = { 271 }, level = 38, group = "WeaponTreeSupportEnhance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportEnhance2H"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enhance", statOrder = { 271 }, level = 38, group = "WeaponTreeSupportEnhance", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportEnlighten"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enlighten", statOrder = { 272 }, level = 38, group = "WeaponTreeSupportEnlighten", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportEnlighten2H"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enlighten", statOrder = { 272 }, level = 38, group = "WeaponTreeSupportEnlighten", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportPhysicalToLightning"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Physical To Lightning", statOrder = { 352 }, level = 38, group = "WeaponTreeSupportPhysicalToLightning", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportPhysicalToLightning2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Physical To Lightning", statOrder = { 352 }, level = 38, group = "WeaponTreeSupportPhysicalToLightning", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportAdvancedTraps"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Advanced Traps", statOrder = { 390 }, level = 38, group = "WeaponTreeSupportAdvancedTraps", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportAdvancedTraps2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Advanced Traps", statOrder = { 390 }, level = 38, group = "WeaponTreeSupportAdvancedTraps", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIgniteProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ignite Proliferation", statOrder = { 308 }, level = 38, group = "WeaponTreeSupportIgniteProliferation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIgniteProliferation2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ignite Proliferation", statOrder = { 308 }, level = 38, group = "WeaponTreeSupportIgniteProliferation", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChanceToBleed"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance To Bleed", statOrder = { 244 }, level = 38, group = "WeaponTreeSupportChanceToBleed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChanceToBleed2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance To Bleed", statOrder = { 244 }, level = 38, group = "WeaponTreeSupportChanceToBleed", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportDecay"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Decay", statOrder = { 259 }, level = 38, group = "WeaponTreeSupportDecay", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportDecay2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Decay", statOrder = { 259 }, level = 38, group = "WeaponTreeSupportDecay", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportMaim"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Maim", statOrder = { 331 }, level = 38, group = "WeaponTreeSupportMaim", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportMaim2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Maim", statOrder = { 331 }, level = 38, group = "WeaponTreeSupportMaim", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportOnslaught"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 344 }, level = 38, group = "WeaponTreeSupportOnslaught", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportOnslaught2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 344 }, level = 38, group = "WeaponTreeSupportOnslaught", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportArcaneSurge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arcane Surge", statOrder = { 226 }, level = 38, group = "WeaponTreeSupportArcaneSurge", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportArcaneSurge2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arcane Surge", statOrder = { 226 }, level = 38, group = "WeaponTreeSupportArcaneSurge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportArrowNova"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arrow Nova", statOrder = { 361 }, level = 38, group = "WeaponTreeSupportArrowNova", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSupportArrowNova2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arrow Nova", statOrder = { 361 }, level = 38, group = "WeaponTreeSupportArrowNova", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportPierce"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Pierce", statOrder = { 509 }, level = 38, group = "WeaponTreeSupportPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportPierce2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Pierce", statOrder = { 509 }, level = 38, group = "WeaponTreeSupportPierce", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportGenerosity"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Generosity", statOrder = { 495 }, level = 38, group = "WeaponTreeSupportGenerosity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportGenerosity2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Generosity", statOrder = { 495 }, level = 38, group = "WeaponTreeSupportGenerosity", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportFortify"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Fortify", statOrder = { 496 }, level = 38, group = "WeaponTreeSupportFortify", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportFortify2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Fortify", statOrder = { 496 }, level = 38, group = "WeaponTreeSupportFortify", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportElementalProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Proliferation", statOrder = { 466 }, level = 38, group = "WeaponTreeSupportElementalProliferation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportElementalProliferation2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Proliferation", statOrder = { 466 }, level = 38, group = "WeaponTreeSupportElementalProliferation", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportVolley"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Volley", statOrder = { 350 }, level = 38, group = "WeaponTreeSupportVolley", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportVolley2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Volley", statOrder = { 350 }, level = 38, group = "WeaponTreeSupportVolley", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportSpellCascade"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Spell Cascade", statOrder = { 379 }, level = 38, group = "WeaponTreeSupportSpellCascade", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportSpellCascade2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Spell Cascade", statOrder = { 379 }, level = 38, group = "WeaponTreeSupportSpellCascade", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportAncestralCall"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ancestral Call", statOrder = { 382 }, level = 38, group = "WeaponTreeSupportAncestralCall", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportAncestralCall2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ancestral Call", statOrder = { 382 }, level = 38, group = "WeaponTreeSupportAncestralCall", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportSummonGhostOnKill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Summon Phantasm", statOrder = { 385 }, level = 38, group = "WeaponTreeSupportSummonGhostOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportSummonGhostOnKill2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Summon Phantasm", statOrder = { 385 }, level = 38, group = "WeaponTreeSupportSummonGhostOnKill", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportWitheringTouch"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Withering Touch", statOrder = { 405 }, level = 38, group = "WeaponTreeSupportWitheringTouch", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportWitheringTouch2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Withering Touch", statOrder = { 405 }, level = 38, group = "WeaponTreeSupportWitheringTouch", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportEnergyLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Energy Leech", statOrder = { 270 }, level = 38, group = "WeaponTreeSupportEnergyLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportEnergyLeech2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Energy Leech", statOrder = { 270 }, level = 38, group = "WeaponTreeSupportEnergyLeech", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIntensify"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Intensify", statOrder = { 380 }, level = 38, group = "WeaponTreeSupportIntensify", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIntensify2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Intensify", statOrder = { 380 }, level = 38, group = "WeaponTreeSupportIntensify", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportImpale"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Impale", statOrder = { 310 }, level = 38, group = "WeaponTreeSupportImpale", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportImpale2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Impale", statOrder = { 310 }, level = 38, group = "WeaponTreeSupportImpale", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportRage"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Rage", statOrder = { 360 }, level = 38, group = "WeaponTreeSupportRage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportRage2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Rage", statOrder = { 360 }, level = 38, group = "WeaponTreeSupportRage", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportShockwave"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Shockwave", statOrder = { 376 }, level = 38, group = "WeaponTreeSupportShockwave", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportShockwave2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Shockwave", statOrder = { 376 }, level = 38, group = "WeaponTreeSupportShockwave", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "staff", "mace", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportFeedingFrenzy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Feeding Frenzy", statOrder = { 276 }, level = 38, group = "WeaponTreeSupportFeedingFrenzy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportFeedingFrenzy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Feeding Frenzy", statOrder = { 276 }, level = 38, group = "WeaponTreeSupportFeedingFrenzy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportPredator"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Predator", statOrder = { 258 }, level = 38, group = "WeaponTreeSupportPredator", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportPredator2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Predator", statOrder = { 258 }, level = 38, group = "WeaponTreeSupportPredator", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportInfernalLegion"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Infernal Legion", statOrder = { 315 }, level = 38, group = "WeaponTreeSupportInfernalLegion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportInfernalLegion2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Infernal Legion", statOrder = { 315 }, level = 38, group = "WeaponTreeSupportInfernalLegion", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportSwiftAssembly"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swift Assembly", statOrder = { 386 }, level = 38, group = "WeaponTreeSupportSwiftAssembly", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportSwiftAssembly2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swift Assembly", statOrder = { 386 }, level = 38, group = "WeaponTreeSupportSwiftAssembly", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportSecondWind"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Second Wind", statOrder = { 375 }, level = 38, group = "WeaponTreeSupportSecondWind", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportSecondWind2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Second Wind", statOrder = { 375 }, level = 38, group = "WeaponTreeSupportSecondWind", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportUrgentOrders"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Urgent Orders", statOrder = { 397 }, level = 38, group = "WeaponTreeSupportUrgentOrders", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportUrgentOrders2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Urgent Orders", statOrder = { 397 }, level = 38, group = "WeaponTreeSupportUrgentOrders", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportSwiftBrand"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swiftbrand", statOrder = { 387 }, level = 38, group = "WeaponTreeSupportSwiftBrand", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportSwiftBrand2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swiftbrand", statOrder = { 387 }, level = 38, group = "WeaponTreeSupportSwiftBrand", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportImpendingDoom"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Impending Doom", statOrder = { 311 }, level = 38, group = "WeaponTreeSupportImpendingDoom", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { "support", "gem" }, }, - ["WeaponTreeSupportImpendingDoom2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Impending Doom", statOrder = { 311 }, level = 38, group = "WeaponTreeSupportImpendingDoom", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { "support", "gem" }, }, - ["WeaponTreeSupportLifetap"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Lifetap", statOrder = { 325 }, level = 38, group = "WeaponTreeSupportLifetap", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportLifetap2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Lifetap", statOrder = { 325 }, level = 38, group = "WeaponTreeSupportLifetap", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportBehead"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Behead", statOrder = { 231 }, level = 38, group = "WeaponTreeSupportBehead", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportBehead2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Behead", statOrder = { 231 }, level = 38, group = "WeaponTreeSupportBehead", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportDivineBlessing"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Divine Blessing", statOrder = { 228 }, level = 38, group = "WeaponTreeSupportDivineBlessing", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportDivineBlessing2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Divine Blessing", statOrder = { 228 }, level = 38, group = "WeaponTreeSupportDivineBlessing", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportEternalBlessing"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Eternal Blessing", statOrder = { 273 }, level = 38, group = "WeaponTreeSupportEternalBlessing", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportEternalBlessing2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Eternal Blessing", statOrder = { 273 }, level = 38, group = "WeaponTreeSupportEternalBlessing", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportOvercharge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Overcharge", statOrder = { 345 }, level = 38, group = "WeaponTreeSupportOvercharge", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportOvercharge2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Overcharge", statOrder = { 345 }, level = 38, group = "WeaponTreeSupportOvercharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportCursedGround"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Cursed Ground", statOrder = { 256 }, level = 38, group = "WeaponTreeSupportCursedGround", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportCursedGround2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Cursed Ground", statOrder = { 256 }, level = 38, group = "WeaponTreeSupportCursedGround", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportHexBloom"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Hex Bloom", statOrder = { 304 }, level = 38, group = "WeaponTreeSupportHexBloom", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportHexBloom2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Hex Bloom", statOrder = { 304 }, level = 38, group = "WeaponTreeSupportHexBloom", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportPinpoint"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Pinpoint", statOrder = { 353 }, level = 38, group = "WeaponTreeSupportPinpoint", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportPinpoint2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Pinpoint", statOrder = { 353 }, level = 38, group = "WeaponTreeSupportPinpoint", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSkillTornadoShotSplitArrow"] = { type = "Spawn", tier = 1, "Trigger Level 20 Tornado when you Attack with Split Arrow or Tornado Shot", statOrder = { 5475 }, level = 1, group = "WeaponTreeSkillTornadoShotSplitArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillMirrorArrowBlinkArrow"] = { type = "Spawn", tier = 1, "Trigger Level 20 Blink Arrow when you Attack with Mirror Arrow", "Trigger Level 20 Mirror Arrow when you Attack with Blink Arrow", statOrder = { 5453, 5459 }, level = 1, group = "WeaponTreeSkillMirrorArrowBlinkArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillCleaveReave"] = { type = "Spawn", tier = 1, "Trigger Level 20 Summon Spectral Wolf on Critical Strike with Cleave or Reave", statOrder = { 5474 }, level = 1, group = "WeaponTreeSkillCleaveReave", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "axe", "dagger", "claw", "shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillBodySwapDetonateDead"] = { type = "Spawn", tier = 1, "Trigger Level 20 Bodyswap when you Explode a Corpse with Detonate Dead", statOrder = { 5454 }, level = 1, group = "WeaponTreeSkillBodySwapDetonateDead", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillGlacialCascadeIceNova"] = { type = "Spawn", tier = 1, "Trigger Level 20 Ice Nova from the Final Burst location of Glacial Cascades you Cast", statOrder = { 5458 }, level = 1, group = "WeaponTreeSkillGlacialCascadeIceNova", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillLaceratePerforate"] = { type = "Spawn", tier = 1, "Trigger Level 20 Stance Swap when you Attack with Perforate or Lacerate", statOrder = { 5473 }, level = 1, group = "WeaponTreeSkillLaceratePerforate", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "axe", "shield", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillStormBurstDivineIre"] = { type = "Spawn", tier = 1, "Trigger Level 20 Gravity Sphere when you Cast Storm Burst or Divine Ire", statOrder = { 5456 }, level = 1, group = "WeaponTreeSkillStormBurstDivineIre", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillHeavyStrikeBoneshatter"] = { type = "Spawn", tier = 1, "Trigger Level 20 Bone Corpses when you Stun an Enemy with Heavy Strike or Boneshatter", statOrder = { 5455 }, level = 1, group = "WeaponTreeSkillHeavyStrikeBoneshatter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "staff", "sceptre", "mace", "axe", "shield", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillBladeFlurryChargedDash"] = { type = "Spawn", tier = 1, "Trigger a Socketed Spell every second while Channelling Blade Flurry or Charged Dash", statOrder = { 5452 }, level = 1, group = "WeaponTreeSkillBladeFlurryChargedDash", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "sword", "dagger", "claw", "weapon", "shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillBurningArrowExplosiveArrow"] = { type = "Spawn", tier = 1, "Killing Blows with Burning Arrow or Explosive Arrow Shatter Enemies as though Frozen", statOrder = { 5380 }, level = 1, group = "WeaponTreeSkillBurningArrowExplosiveArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillBlastRainArtilleryBallista"] = { type = "Spawn", tier = 1, "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", statOrder = { 5096, 5097 }, level = 1, group = "WeaponTreeSkillBlastRainArtilleryBallista", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillShrapnelBallistaSiegeBallista"] = { type = "Spawn", tier = 1, "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", statOrder = { 4294, 10027, 10032 }, level = 1, group = "WeaponTreeSkillShrapnelBallistaSiegeBallista", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillLightningArrowIceShot"] = { type = "Spawn", tier = 1, "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", statOrder = { 7437, 7438 }, level = 1, group = "WeaponTreeSkillLightningArrowIceShot", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillGalvanicArrowStormRain"] = { type = "Spawn", tier = 1, "Galvanic Arrow and Storm Rain Repeat an additional time when used by a Mine", statOrder = { 6852 }, level = 1, group = "WeaponTreeSkillGalvanicArrowStormRain", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillElementalHitWildStrike"] = { type = "Spawn", tier = 1, "Always inflict Scorch, Brittle and Sapped with Elemental Hit and Wild Strike Hits", "Cannot Ignite, Chill, Freeze or Shock", statOrder = { 6325, 9479 }, level = 1, group = "WeaponTreeSkillElementalHitWildStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "shield", "weapon", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillBarrageFrenzy"] = { type = "Spawn", tier = 1, "Barrage and Frenzy have 25% increased Critical Strike Chance per Endurance Charge", statOrder = { 4981 }, level = 1, group = "WeaponTreeSkillBarrageFrenzy", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 1000, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillBarrageFrenzy2H"] = { type = "Spawn", tier = 1, "Barrage and Frenzy have 40% increased Critical Strike Chance per Endurance Charge", statOrder = { 4981 }, level = 1, group = "WeaponTreeSkillBarrageFrenzy", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillToxicRainRainofArrows"] = { type = "Spawn", tier = 1, "Rain of Arrows and Toxic Rain deal 300% more Damage with Bleeding", "-60% of Toxic Rain Physical Damage Converted to Chaos Damage", statOrder = { 9811, 10413 }, level = 1, group = "WeaponTreeSkillToxicRainRainofArrows", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillCausticArrowScourgeArrow"] = { type = "Spawn", tier = 1, "Caustic Arrow and Scourge Arrow fire 25% more projectiles", statOrder = { 5478 }, level = 1, group = "WeaponTreeSkillCausticArrowScourgeArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillPunctureEnsnaringArrow"] = { type = "Spawn", tier = 1, "Enemies you Kill with Puncture or Ensnaring Arrow Hits Explode, dealing 10% of their Life as Physical Damage", statOrder = { 9758 }, level = 1, group = "WeaponTreeSkillPunctureEnsnaringArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "dagger", "claw", "sword", "shield", "default", }, weightVal = { 1000, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFrostBladesLightningStrike"] = { type = "Spawn", tier = 1, "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", statOrder = { 7471, 7472 }, level = 1, group = "WeaponTreeSkillFrostBladesLightningStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillFrostBladesLightningStrike2H"] = { type = "Spawn", tier = 1, "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", statOrder = { 7471, 7472 }, level = 1, group = "WeaponTreeSkillFrostBladesLightningStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillViperStrikePestilentStrike"] = { type = "Spawn", tier = 1, "Viper Strike and Pestilent Strike deal 25% increased Attack Damage per Frenzy Charge", statOrder = { 10528 }, level = 1, group = "WeaponTreeSkillViperStrikePestilentStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "sword", "claw", "dagger", "shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillViperStrikePestilentStrike2H"] = { type = "Spawn", tier = 1, "Viper Strike and Pestilent Strike deal 40% increased Attack Damage per Frenzy Charge", statOrder = { 10528 }, level = 1, group = "WeaponTreeSkillViperStrikePestilentStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "sword", "claw", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillDominatingBlowAbsolution"] = { type = "Spawn", tier = 1, "Increases and Reductions to Minion Damage also affect Dominating Blow and Absolution at 150% of their value", statOrder = { 6258 }, level = 1, group = "WeaponTreeSkillDominatingBlowAbsolution", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "shield", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "weapon", "default", }, weightVal = { 0, 500, 1000, 1000, 250, 0 }, modTags = { }, }, - ["WeaponTreeSkillVolcanicFissureMoltenStrike"] = { type = "Spawn", tier = 1, "Vaal Volcanic Fissure and Vaal Molten Strike have 40% reduced Soul Gain Prevention Duration", statOrder = { 10525 }, level = 1, group = "WeaponTreeSkillVolcanicFissureMoltenStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillVolcanicFissureMoltenStrike2H"] = { type = "Spawn", tier = 1, "Vaal Volcanic Fissure and Vaal Molten Strike have 80% reduced Soul Gain Prevention Duration", statOrder = { 10525 }, level = 1, group = "WeaponTreeSkillVolcanicFissureMoltenStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillStaticStrikeSmite"] = { type = "Spawn", tier = 1, "Killing Blows from Smite and Static Strike Consume corpses to Recover 5% of Life", statOrder = { 10084 }, level = 1, group = "WeaponTreeSkillStaticStrikeSmite", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillVigilantStrikeFlickerStrike"] = { type = "Spawn", tier = 1, "Flicker Strike and Vigilant Strike's Cooldown can be bypassed by Power Charges instead of Frenzy or Endurance Charges", statOrder = { 10527 }, level = 1, group = "WeaponTreeSkillVigilantStrikeFlickerStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillDoubleStrikeDualStrike"] = { type = "Spawn", tier = 1, "50% chance to gain Soul Eater for 20 seconds on Killing Blow against Rare and Unique Enemies with Double Strike or Dual Strike", statOrder = { 6262 }, level = 1, group = "WeaponTreeSkillDoubleStrikeDualStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillDoubleStrikeDualStrike2H"] = { type = "Spawn", tier = 1, "Gain Soul Eater for 20 seconds on Killing Blow against Rare and Unique Enemies with Double Strike or Dual Strike", statOrder = { 6262 }, level = 1, group = "WeaponTreeSkillDoubleStrikeDualStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillIceCrashGlacialHammer"] = { type = "Spawn", tier = 1, "Enemies Frozen by Ice Crash or Glacial Hammer become Covered in Frost for 4 seconds as they Unfreeze", statOrder = { 7185 }, level = 1, group = "WeaponTreeSkillIceCrashGlacialHammer", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "shield", "sword", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 500, 500, 1000, 1000, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillEarthquakeEarthshatter"] = { type = "Spawn", tier = 1, "Killing Blows with Earthquake and Earthshatter Shatter Enemies as though Frozen", statOrder = { 6285 }, level = 1, group = "WeaponTreeSkillEarthquakeEarthshatter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "shield", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillGroundSlamSunder"] = { type = "Spawn", tier = 1, "Poisons inflicted by Sunder or Ground Slam on non-Poisoned Enemies deal 400% increased Damage", statOrder = { 6915 }, level = 1, group = "WeaponTreeSkillGroundSlamSunder", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "shield", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 500, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillGroundSlamSunder2H"] = { type = "Spawn", tier = 1, "Poisons inflicted by Sunder or Ground Slam on non-Poisoned Enemies deal 600% increased Damage", statOrder = { 6915 }, level = 1, group = "WeaponTreeSkillGroundSlamSunder", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillTectonicSlamInfernalBlow"] = { type = "Spawn", tier = 1, "Tectonic Slam and Infernal Blow deal 1% increased Attack Damage per 700 Armour", statOrder = { 10360 }, level = 1, group = "WeaponTreeSkillTectonicSlamInfernalBlow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "shield", "sword", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 500, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillTectonicSlamInfernalBlow2H"] = { type = "Spawn", tier = 1, "Tectonic Slam and Infernal Blow deal 1% increased Attack Damage per 450 Armour", statOrder = { 10359 }, level = 1, group = "WeaponTreeSkillTectonicSlamInfernalBlow2H", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "sword", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillRageVortexBladestorm"] = { type = "Spawn", tier = 1, "Enemies in your Rage Vortex or Bladestorms are Hindered and Unnerved", statOrder = { 5092 }, level = 1, group = "WeaponTreeSkillRageVortexBladestorm", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "axe", "shield", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillShieldCrushSpectralShieldThrow"] = { type = "Spawn", tier = 1, "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", statOrder = { 9998, 9999, 10000 }, level = 1, group = "WeaponTreeSkillShieldCrushSpectralShieldThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillShieldCrushSpectralShieldThrowUniqueHelmet"] = { type = "Spawn", tier = 1, "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", statOrder = { 9998, 9999, 10000 }, level = 1, group = "WeaponTreeSkillShieldCrushSpectralShieldThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillCycloneSweep"] = { type = "Spawn", tier = 1, "Knockback direction is reversed with Cyclone and Holy Sweep", "Knock Enemies Back on hit with Cyclone and Holy Sweep", statOrder = { 6011, 6012 }, level = 1, group = "WeaponTreeSkillCycloneSweep", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillCobraLashVenomGyre"] = { type = "Spawn", tier = 1, "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", statOrder = { 5791, 5792 }, level = 1, group = "WeaponTreeSkillCobraLashVenomGyre", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "claw", "dagger", "shield", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillPoisonousConcoctionExplosiveConcoction"] = { type = "Spawn", tier = 1, "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", statOrder = { 6643, 7879 }, level = 1, group = "WeaponTreeSkillPoisonousConcoctionExplosiveConcoction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillPoisonousConcoctionExplosiveConcoctionUniqueHelmet"] = { type = "Spawn", tier = 1, "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", statOrder = { 6643, 7879 }, level = 1, group = "WeaponTreeSkillPoisonousConcoctionExplosiveConcoction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel"] = { type = "Spawn", tier = 1, "Recover 1% of Energy Shield per Steel Shard Consumed", statOrder = { 9853 }, level = 1, group = "WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "sword", "axe", "shield", "default", }, weightVal = { 0, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel2H"] = { type = "Spawn", tier = 1, "Recover 2% of Energy Shield per Steel Shard Consumed", statOrder = { 9853 }, level = 1, group = "WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "sword", "axe", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillSpectralHelixSpectralThrow"] = { type = "Spawn", tier = 1, "Each Projectile from Spectral Helix or Spectral Throw has", "between 40% more and 40% less Projectile Speed at random", statOrder = { 10112, 10112.1 }, level = 1, group = "WeaponTreeSkillSpectralHelixSpectralThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillSpectralHelixSpectralThrow2H"] = { type = "Spawn", tier = 1, "Each Projectile from Spectral Helix or Spectral Throw has", "between 75% more and 75% less Projectile Speed at random", statOrder = { 10112, 10112.1 }, level = 1, group = "WeaponTreeSkillSpectralHelixSpectralThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillChainHookShieldCharge"] = { type = "Spawn", tier = 1, "Shield Charge and Chain Hook have 2% increased Attack Speed per 10 Rampage Kills", statOrder = { 5482 }, level = 1, group = "WeaponTreeSkillChainHookShieldCharge", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "sword", "axe", "mace", "sceptre", "shield", "default", }, weightVal = { 0, 500, 500, 500, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillConsecratedPathPurifyingFlame"] = { type = "Spawn", tier = 1, "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", statOrder = { 5858, 5859 }, level = 1, group = "WeaponTreeSkillConsecratedPathPurifyingFlame", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "bow", "claw", "weapon_can_roll_minion_modifiers", "attack_dagger", "shield", "weapon", "default", }, weightVal = { 1000, 0, 0, 0, 0, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillFrozenLegionGeneralsCry"] = { type = "Spawn", tier = 1, "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", statOrder = { 6688, 6693, 6859 }, level = 1, group = "WeaponTreeSkillFrozenLegionGeneralsCry", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillAncestralProtectorAncestralWarchief"] = { type = "Spawn", tier = 1, "20% of Damage Dealt by Ancestor Totems Leeched to you as Energy Shield", statOrder = { 4664 }, level = 1, group = "WeaponTreeSkillAncestralProtectorAncestralWarchief", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillAncestralProtectorAncestralWarchief2H"] = { type = "Spawn", tier = 1, "40% of Damage Dealt by Ancestor Totems Leeched to you as Energy Shield", statOrder = { 4664 }, level = 1, group = "WeaponTreeSkillAncestralProtectorAncestralWarchief", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillKineticBoltKineticBlastPowerSiphon"] = { type = "Spawn", tier = 1, "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", statOrder = { 7318, 7319 }, level = 1, group = "WeaponTreeSkillKineticBoltKineticBlastPowerSiphon", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "wand", "shield", "default", }, weightVal = { 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillExsanguinateReap"] = { type = "Spawn", tier = 1, "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", statOrder = { 6526, 6528, 9832 }, level = 1, group = "WeaponTreeSkillExsanguinateReap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFirestormBladefall"] = { type = "Spawn", tier = 1, "15% chance for Firestorm and Bladefall to affect the same area again when they finish", statOrder = { 6596 }, level = 1, group = "WeaponTreeSkillFirestormBladefall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFirestormBladefall2H"] = { type = "Spawn", tier = 1, "25% chance for Firestorm and Bladefall to affect the same area again when they finish", statOrder = { 6596 }, level = 1, group = "WeaponTreeSkillFirestormBladefall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillEtherealKnives"] = { type = "Spawn", tier = 1, "Ethereal Knives requires 1 fewer Projectile Fired to leave each Lingering Blade", statOrder = { 6472 }, level = 1, group = "WeaponTreeSkillEtherealKnives", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillEtherealKnives2H"] = { type = "Spawn", tier = 1, "Ethereal Knives requires 2 fewer Projectiles Fired to leave each Lingering Blade", statOrder = { 6472 }, level = 1, group = "WeaponTreeSkillEtherealKnives", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillFireballRollingMagma"] = { type = "Spawn", tier = 1, "Fireball and Rolling Magma have 100% more Area of Effect", "Modifiers to number of Projectiles do not apply to Fireball and Rolling Magma", statOrder = { 6592, 6593 }, level = 1, group = "WeaponTreeSkillFireballRollingMagma", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFireballRollingMagma2H"] = { type = "Spawn", tier = 1, "Fireball and Rolling Magma have 200% more Area of Effect", "Modifiers to number of Projectiles do not apply to Fireball and Rolling Magma", statOrder = { 6592, 6593 }, level = 1, group = "WeaponTreeSkillFireballRollingMagma", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillFreezingPulseEyeOfWinter"] = { type = "Spawn", tier = 1, "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", statOrder = { 6668, 6669 }, level = 1, group = "WeaponTreeSkillFreezingPulseEyeOfWinter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFreezingPulseEyeOfWinter2H"] = { type = "Spawn", tier = 1, "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", statOrder = { 6668, 6669 }, level = 1, group = "WeaponTreeSkillFreezingPulseEyeOfWinter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillBladeVortexBladeBlast"] = { type = "Spawn", tier = 1, "30% chance for Blade Vortex and Blade Blast to Impale Enemies on Hit", "Blade Vortex and Blade Blast deal no Non-Physical Damage", statOrder = { 5088, 5089 }, level = 1, group = "WeaponTreeSkillBladeVortexBladeBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillBladeVortexBladeBlast2H"] = { type = "Spawn", tier = 1, "60% chance for Blade Vortex and Blade Blast to Impale Enemies on Hit", "Blade Vortex and Blade Blast deal no Non-Physical Damage", statOrder = { 5088, 5089 }, level = 1, group = "WeaponTreeSkillBladeVortexBladeBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillShockNovaStormCall"] = { type = "Spawn", tier = 1, "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", statOrder = { 10015, 10016 }, level = 1, group = "WeaponTreeSkillShockNovaStormCall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillShockNovaStormCall2H"] = { type = "Spawn", tier = 1, "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", statOrder = { 10015, 10016 }, level = 1, group = "WeaponTreeSkillShockNovaStormCall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillCreepingFrostColdSnap"] = { type = "Spawn", tier = 1, "All Damage from Cold Snap and Creeping Frost can Sap", "25% chance for Cold Snap and Creeping Frost to Sap Enemies in Chilling Areas", statOrder = { 5910, 5911 }, level = 1, group = "WeaponTreeSkillCreepingFrostColdSnap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillCreepingFrostColdSnap2H"] = { type = "Spawn", tier = 1, "All Damage from Cold Snap and Creeping Frost can Sap", "50% chance for Cold Snap and Creeping Frost to Sap Enemies in Chilling Areas", statOrder = { 5910, 5911 }, level = 1, group = "WeaponTreeSkillCreepingFrostColdSnap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillLightningConduitGalvanicField"] = { type = "Spawn", tier = 1, "Killing Blows with Lightning Conduit and Galvanic Field Shatter Enemies as though Frozen", statOrder = { 7440 }, level = 1, group = "WeaponTreeSkillLightningConduitGalvanicField", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillManabondStormbind"] = { type = "Spawn", tier = 1, "Manabond and Stormbind Freeze enemies as though dealing 200% more Damage", "50% of Manabond and Stormbind Lightning Damage Converted to Cold Damage", statOrder = { 8220, 8221 }, level = 1, group = "WeaponTreeSkillManabondStormbind", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillManabondStormbind2H"] = { type = "Spawn", tier = 1, "Manabond and Stormbind Freeze enemies as though dealing 300% more Damage", "100% of Manabond and Stormbind Lightning Damage Converted to Cold Damage", statOrder = { 8220, 8221 }, level = 1, group = "WeaponTreeSkillManabondStormbind", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillIceSpearBallLightning"] = { type = "Spawn", tier = 1, "Ice Spear and Ball Lightning fire Projectiles in a circle", "Ice Spear and Ball Lightning Projectiles Return to you", statOrder = { 7198, 7199 }, level = 1, group = "WeaponTreeSkillIceSpearBallLightning", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFlameblastIncinerate"] = { type = "Spawn", tier = 1, "+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", statOrder = { 6621, 6622, 6623, 7263 }, level = 1, group = "WeaponTreeSkillFlameblastIncinerate", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFlameblastIncinerate2H"] = { type = "Spawn", tier = 1, "+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", statOrder = { 6621, 6622, 6623, 7263 }, level = 1, group = "WeaponTreeSkillFlameblastIncinerate", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillHexblastDoomBlast"] = { type = "Spawn", tier = 1, "10% of Hexblast and Doom Blast Overkill Damage is Leeched as Life", statOrder = { 7135 }, level = 1, group = "WeaponTreeSkillHexblastDoomBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillHexblastDoomBlast2H"] = { type = "Spawn", tier = 1, "20% of Hexblast and Doom Blast Overkill Damage is Leeched as Life", statOrder = { 7135 }, level = 1, group = "WeaponTreeSkillHexblastDoomBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillForbiddenRiteDarkPact"] = { type = "Spawn", tier = 1, "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", statOrder = { 6655 }, level = 1, group = "WeaponTreeSkillForbiddenRiteDarkPact", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillForbiddenRiteDarkPact2H"] = { type = "Spawn", tier = 1, "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", statOrder = { 6655 }, level = 1, group = "WeaponTreeSkillForbiddenRiteDarkPact", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillBaneContagion"] = { type = "Spawn", tier = 1, "Enemies inflicted with Bane or Contagion are Chilled", statOrder = { 6368 }, level = 1, group = "WeaponTreeSkillBaneContagion", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillEssenceDrainSoulrend"] = { type = "Spawn", tier = 1, "25% reduced Essence Drain and Soulrend Projectile Speed", "Essence Drain and Soulrend fire 2 additional Projectiles", statOrder = { 6470, 6471 }, level = 1, group = "WeaponTreeSkillEssenceDrainSoulrend", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillEssenceDrainSoulrend2H"] = { type = "Spawn", tier = 1, "50% reduced Essence Drain and Soulrend Projectile Speed", "Essence Drain and Soulrend fire 4 additional Projectiles", statOrder = { 6470, 6471 }, level = 1, group = "WeaponTreeSkillEssenceDrainSoulrend", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillSparkLightningTendrils"] = { type = "Spawn", tier = 1, "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", statOrder = { 7474, 10101 }, level = 1, group = "WeaponTreeSkillSparkLightningTendrils", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillSparkLightningTendrils2H"] = { type = "Spawn", tier = 1, "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", statOrder = { 7474, 10101 }, level = 1, group = "WeaponTreeSkillSparkLightningTendrils", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillFrostBombOrbofStorms"] = { type = "Spawn", tier = 1, "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", statOrder = { 6678, 9561 }, level = 1, group = "WeaponTreeSkillFrostBombOrbofStorms", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFrostBombOrbofStorms2H"] = { type = "Spawn", tier = 1, "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", statOrder = { 6678, 9561 }, level = 1, group = "WeaponTreeSkillFrostBombOrbofStorms", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillWinterOrbHydrosphere"] = { type = "Spawn", tier = 1, "Trigger Level 20 Hydrosphere while you Channel Winter Orb", statOrder = { 5457 }, level = 1, group = "WeaponTreeSkillWinterOrbHydrosphere", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillWintertideBrandArcanistBrand"] = { type = "Spawn", tier = 1, "Enemies Branded by Wintertide Brand or Arcanist Brand Explode on Death dealing a quarter of their maximum Life as Chaos damage", statOrder = { 10622 }, level = 1, group = "WeaponTreeSkillWintertideBrandArcanistBrand", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillAnimateWeapon"] = { type = "Spawn", tier = 1, "Animated Lingering Blades have +1.5% to Critical Strike Chance", statOrder = { 4690 }, level = 1, group = "WeaponTreeSkillAnimateWeapon", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillAnimateWeapon2H"] = { type = "Spawn", tier = 1, "Animated Lingering Blades have +2.5% to Critical Strike Chance", statOrder = { 4690 }, level = 1, group = "WeaponTreeSkillAnimateWeapon", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillSummonCarrionGolemSummonStoneGolemSummonChaosGolem"] = { type = "Spawn", tier = 1, "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", statOrder = { 5451, 5751, 10235 }, level = 1, group = "WeaponTreeSkillSummonCarrionGolemSummonStoneGolemSummonChaosGolem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillSummonFlameGolemSummonIceGolemSummonLightningGolem"] = { type = "Spawn", tier = 1, "Maximum Life of Summoned Elemental Golems is Doubled", statOrder = { 6324 }, level = 1, group = "WeaponTreeSkillSummonFlameGolemSummonIceGolemSummonLightningGolem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillSummonHolyRelicSummonSkeletons"] = { type = "Spawn", tier = 1, "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", statOrder = { 10050, 10051 }, level = 1, group = "WeaponTreeSkillSummonHolyRelicSummonSkeletons", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillSummonHolyRelicSummonSkeletons2H"] = { type = "Spawn", tier = 1, "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", statOrder = { 10050, 10051 }, level = 1, group = "WeaponTreeSkillSummonHolyRelicSummonSkeletons", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillRaiseSpectreRaiseZombie"] = { type = "Spawn", tier = 1, "Raised Zombies and Spectres gain Adrenaline for 8 seconds when Raised", statOrder = { 10117 }, level = 1, group = "WeaponTreeSkillRaiseSpectreRaiseZombie", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillRaiseSpectreRaiseZombie2H"] = { type = "Spawn", tier = 1, "Raised Zombies and Spectres gain Adrenaline for 14 seconds when Raised", statOrder = { 10117 }, level = 1, group = "WeaponTreeSkillRaiseSpectreRaiseZombie", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillSummonRagingSpiritSummonPhantasmSupport"] = { type = "Spawn", tier = 1, "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", statOrder = { 9537, 9539, 10307, 10318 }, level = 1, group = "WeaponTreeSkillSummonRagingSpiritSummonPhantasmSupport", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillFireTrapExplosiveTrap"] = { type = "Spawn", tier = 1, "Fire Trap and Explosive Trap Throw an additional Trap when used by a Mine", statOrder = { 6552 }, level = 1, group = "WeaponTreeSkillFireTrapExplosiveTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFireTrapExplosiveTrap2H"] = { type = "Spawn", tier = 1, "Fire Trap and Explosive Trap Throws 2 additional Traps when used by a Mine", statOrder = { 6552 }, level = 1, group = "WeaponTreeSkillFireTrapExplosiveTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillIceTrapLightningTrap"] = { type = "Spawn", tier = 1, "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", statOrder = { 7182, 7183, 7184 }, level = 1, group = "WeaponTreeSkillIceTrapLightningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillIceTrapLightningTrap2H"] = { type = "Spawn", tier = 1, "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", statOrder = { 7182, 7183, 7184 }, level = 1, group = "WeaponTreeSkillIceTrapLightningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap"] = { type = "Spawn", tier = 1, "Flamethrower, Seismic and Lightning Spire Trap have 30% increased Cooldown Recovery Rate", "Flamethrower, Seismic and Lightning Spire Trap have -1 Cooldown Use", statOrder = { 6624, 6625 }, level = 1, group = "WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap2H"] = { type = "Spawn", tier = 1, "Flamethrower, Seismic and Lightning Spire Trap have 50% increased Cooldown Recovery Rate", "Flamethrower, Seismic and Lightning Spire Trap have -2 Cooldown Uses", statOrder = { 6624, 6625 }, level = 1, group = "WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillStormblastMinePyroclastMineIcicleMine"] = { type = "Spawn", tier = 1, "Stormblast, Icicle and Pyroclast Mine have 150% increased Aura Effect", "Stormblast, Icicle and Pyroclast Mine deal no Damage", statOrder = { 10254, 10255 }, level = 1, group = "WeaponTreeSkillStormblastMinePyroclastMineIcicleMine", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillStormblastMinePyroclastMineIcicleMine2H"] = { type = "Spawn", tier = 1, "Stormblast, Icicle and Pyroclast Mine have 300% increased Aura Effect", "Stormblast, Icicle and Pyroclast Mine deal no Damage", statOrder = { 10254, 10255 }, level = 1, group = "WeaponTreeSkillStormblastMinePyroclastMineIcicleMine", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillBearTrapSiphoningTrap"] = { type = "Spawn", tier = 1, "Bear Trap and Siphoning Trap Debuffs also apply 15% reduced Cooldown Recovery Rate to affected Enemies", statOrder = { 5063 }, level = 1, group = "WeaponTreeSkillBearTrapSiphoningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillBearTrapSiphoningTrap2H"] = { type = "Spawn", tier = 1, "Bear Trap and Siphoning Trap Debuffs also apply 25% reduced Cooldown Recovery Rate to affected Enemies", statOrder = { 5063 }, level = 1, group = "WeaponTreeSkillBearTrapSiphoningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillHolyFlameTotemShockwaveTotem"] = { type = "Spawn", tier = 1, "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", statOrder = { 7174 }, level = 1, group = "WeaponTreeSkillHolyFlameTotemShockwaveTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillHolyFlameTotemShockwaveTotem2H"] = { type = "Spawn", tier = 1, "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", statOrder = { 7174 }, level = 1, group = "WeaponTreeSkillHolyFlameTotemShockwaveTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem"] = { type = "Spawn", tier = 1, "Decoy, Devouring and Rejuvenation Totems Reflect 100% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 6152 }, level = 1, group = "WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem2H"] = { type = "Spawn", tier = 1, "Decoy, Devouring and Rejuvenation Totems Reflect 200% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 6152 }, level = 1, group = "WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillRighteousFireScorchingRay"] = { type = "Spawn", tier = 1, "Regenerate 15 Mana per second while any Enemy is in your Righteous Fire or Scorching Ray", statOrder = { 9946 }, level = 1, group = "WeaponTreeSkillRighteousFireScorchingRay", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillRighteousFireScorchingRay2H"] = { type = "Spawn", tier = 1, "Regenerate 25 Mana per second while any Enemy is in your Righteous Fire or Scorching Ray", statOrder = { 9946 }, level = 1, group = "WeaponTreeSkillRighteousFireScorchingRay", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillBlightWither"] = { type = "Spawn", tier = 1, "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%", statOrder = { 5117, 10623 }, level = 1, group = "WeaponTreeSkillBlightWither", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillBlightWither2H"] = { type = "Spawn", tier = 1, "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%", statOrder = { 5117, 10623 }, level = 1, group = "WeaponTreeSkillBlightWither", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillVoltaxicBurstDischarge"] = { type = "Spawn", tier = 1, "Discharge and Voltaxic Burst are Cast at the targeted location instead of around you", statOrder = { 6181 }, level = 1, group = "WeaponTreeSkillVoltaxicBurstDischarge", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillStormArmageddonBrandSummonReaper"] = { type = "Spawn", tier = 1, "Storm and Armageddon Brands can be attached to your Summoned Reaper", statOrder = { 10236 }, level = 1, group = "WeaponTreeSkillStormArmageddonBrandSummonReaper", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 1000, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillArcCracklingLance"] = { type = "Spawn", tier = 1, "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", statOrder = { 4699, 4700 }, level = 1, group = "WeaponTreeSkillArcCracklingLance", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillArcCracklingLance2H"] = { type = "Spawn", tier = 1, "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", statOrder = { 4699, 4700 }, level = 1, group = "WeaponTreeSkillArcCracklingLance", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillAnimateGuardian"] = { type = "Spawn", tier = 1, "50% increased Effect of Link Buffs on Animated Guardian", "Link Skills can target Animated Guardian", statOrder = { 7483, 7498 }, level = 1, group = "WeaponTreeSkillAnimateGuardian", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillBlazingSalvoFlameWall"] = { type = "Spawn", tier = 1, "Blazing Salvo Projectiles Fork when they pass through a Flame Wall", statOrder = { 5100 }, level = 1, group = "WeaponTreeSkillBlazingSalvoFlameWall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillVolatileDeadCremation"] = { type = "Spawn", tier = 1, "Volatile Dead and Cremation Penetrate 2% Fire Resistance per 100 Dexterity", statOrder = { 10540 }, level = 1, group = "WeaponTreeSkillVolatileDeadCremation", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillVolatileDeadCremation2H"] = { type = "Spawn", tier = 1, "Volatile Dead and Cremation Penetrate 4% Fire Resistance per 100 Dexterity", statOrder = { 10540 }, level = 1, group = "WeaponTreeSkillVolatileDeadCremation", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillWaveofConviction"] = { type = "Spawn", tier = 1, "+10% to Wave of Conviction Damage over Time Multiplier per 0.1 seconds of Duration expired", statOrder = { 9763 }, level = 1, group = "WeaponTreeSkillWaveofConviction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillWaveofConviction2H"] = { type = "Spawn", tier = 1, "+15% to Wave of Conviction Damage over Time Multiplier per 0.1 seconds of Duration expired", statOrder = { 9763 }, level = 1, group = "WeaponTreeSkillWaveofConviction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillVortexFrostbolt"] = { type = "Spawn", tier = 1, "+15% to Vortex Critical Strike Chance when Cast on Frostbolt", statOrder = { 10551 }, level = 1, group = "WeaponTreeSkillVortexFrostbolt", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillVortexFrostbolt2H"] = { type = "Spawn", tier = 1, "+25% to Vortex Critical Strike Chance when Cast on Frostbolt", statOrder = { 10551 }, level = 1, group = "WeaponTreeSkillVortexFrostbolt", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSellPriceMagmaticOre"] = { type = "Spawn", tier = 1, "Item sells for an additional Magmatic Ore", statOrder = { 10597 }, level = 50, group = "WeaponTreeSellPriceMagmaticOre", nodeType = "SellBonus", nodeLocation = { 3, 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 1275, 1275, 938, 750 }, modTags = { }, }, - ["WeaponTreeSellNodeScouringOrb"] = { type = "Spawn", tier = 1, "Item sells for 20 additional Orbs of Scouring", statOrder = { 10608 }, level = 50, group = "WeaponTreeSellNodeScouringOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 340, 340, 250, 200 }, modTags = { }, }, - ["WeaponTreeSellNodeScouringOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 40 additional Orbs of Scouring", statOrder = { 10608 }, level = 78, group = "WeaponTreeSellNodeScouringOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 170, 170, 125, 100 }, modTags = { }, }, - ["WeaponTreeSellNodeChaosOrb"] = { type = "Spawn", tier = 1, "Item sells for 20 additional Chaos Orbs", statOrder = { 10593 }, level = 50, group = "WeaponTreeSellNodeChaosOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 408, 408, 300, 240 }, modTags = { }, }, - ["WeaponTreeSellNodeChaosOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 40 additional Chaos Orbs", statOrder = { 10593 }, level = 78, group = "WeaponTreeSellNodeChaosOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 204, 204, 150, 120 }, modTags = { }, }, - ["WeaponTreeSellNodeOrbOfRegret"] = { type = "Spawn", tier = 1, "Item sells for 15 additional Orbs of Regret", statOrder = { 10605 }, level = 50, group = "WeaponTreeSellNodeOrbOfRegret", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 228, 228, 168, 134 }, modTags = { }, }, - ["WeaponTreeSellNodeOrbOfRegretHigh"] = { type = "Spawn", tier = 2, "Item sells for 30 additional Orbs of Regret", statOrder = { 10605 }, level = 78, group = "WeaponTreeSellNodeOrbOfRegretHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 114, 114, 84, 67 }, modTags = { }, }, - ["WeaponTreeSellNodeRegalOrb"] = { type = "Spawn", tier = 1, "Item sells for 10 additional Regal Orbs", statOrder = { 10606 }, level = 50, group = "WeaponTreeSellNodeRegalOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 102, 102, 75, 60 }, modTags = { }, }, - ["WeaponTreeSellNodeRegalOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 20 additional Regal Orbs", statOrder = { 10606 }, level = 78, group = "WeaponTreeSellNodeRegalOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 51, 51, 38, 30 }, modTags = { }, }, - ["WeaponTreeSellNodeVaalOrb"] = { type = "Spawn", tier = 1, "Item sells for 15 additional Vaal Orbs", statOrder = { 10609 }, level = 50, group = "WeaponTreeSellNodeVaalOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 228, 228, 168, 134 }, modTags = { }, }, - ["WeaponTreeSellNodeVaalOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 30 additional Vaal Orbs", statOrder = { 10609 }, level = 78, group = "WeaponTreeSellNodeVaalOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 114, 114, 84, 67 }, modTags = { }, }, - ["WeaponTreeSellNodeGemcutters"] = { type = "Spawn", tier = 1, "Item sells for 15 additional Gemcutter's Prisms", statOrder = { 10600 }, level = 50, group = "WeaponTreeSellNodeGemcutters", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 92, 92, 68, 54 }, modTags = { }, }, - ["WeaponTreeSellNodeGemcuttersHigh"] = { type = "Spawn", tier = 2, "Item sells for 30 additional Gemcutter's Prisms", statOrder = { 10600 }, level = 78, group = "WeaponTreeSellNodeGemcuttersHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 46, 46, 34, 27 }, modTags = { }, }, - ["WeaponTreeSellNodeBlessedOrb"] = { type = "Spawn", tier = 1, "Item sells for 10 additional Blessed Orbs", statOrder = { 10592 }, level = 50, group = "WeaponTreeSellNodeBlessedOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 136, 136, 100, 80 }, modTags = { }, }, - ["WeaponTreeSellNodeBlessedOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 20 additional Blessed Orbs", statOrder = { 10592 }, level = 78, group = "WeaponTreeSellNodeBlessedOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 68, 68, 50, 40 }, modTags = { }, }, - ["WeaponTreeSellNodeAwakenedSextant"] = { type = "Spawn", tier = 1, "Item sells for an additional Cartography Scarab of every type", statOrder = { 10591 }, level = 78, group = "WeaponTreeSellNodeAwakenedSextant", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 238, 238, 175, 140 }, modTags = { }, }, - ["WeaponTreeSellNodeAwakenedSextantHigh"] = { type = "Spawn", tier = 2, "Item sells for 2 additional Cartography Scarabs of every type", statOrder = { 10591 }, level = 78, group = "WeaponTreeSellNodeAwakenedSextantHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 119, 119, 88, 70 }, modTags = { }, }, - ["WeaponTreeSellNodeOrbOfAnnulment"] = { type = "Spawn", tier = 1, "Item sells for an additional Orb of Annulment", statOrder = { 10604 }, level = 68, group = "WeaponTreeSellNodeOrbOfAnnulment", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 68, 68, 50, 40 }, modTags = { }, }, - ["WeaponTreeSellNodeOrbOfAnnulmentHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Orbs of Annulment", statOrder = { 10604 }, level = 78, group = "WeaponTreeSellNodeOrbOfAnnulmentHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 24, 24, 18, 14 }, modTags = { }, }, - ["WeaponTreeSellNodeExaltedOrb"] = { type = "Spawn", tier = 1, "Item sells for an additional Exalted Orb", statOrder = { 10596 }, level = 68, group = "WeaponTreeSellNodeExaltedOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 170, 170, 125, 100 }, modTags = { }, }, - ["WeaponTreeSellNodeExaltedOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Exalted Orbs", statOrder = { 10596 }, level = 78, group = "WeaponTreeSellNodeExaltedOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 58, 58, 43, 34 }, modTags = { }, }, - ["WeaponTreeSellNodeDivineOrb"] = { type = "Spawn", tier = 1, "Item sells for an additional Divine Orb", statOrder = { 10595 }, level = 68, group = "WeaponTreeSellNodeDivineOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 170, 170, 125, 100 }, modTags = { }, }, - ["WeaponTreeSellNodeDivineOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Divine Orbs", statOrder = { 10595 }, level = 78, group = "WeaponTreeSellNodeDivineOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 58, 58, 43, 34 }, modTags = { }, }, - ["WeaponTreeSellNodeSacredOrb"] = { type = "Spawn", tier = 1, "Item sells for an additional Sacred Orb", statOrder = { 10607 }, level = 80, group = "WeaponTreeSellNodeSacredOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 9, 9, 6, 5 }, modTags = { }, }, - ["WeaponTreeSellNodeSacredOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Sacred Orbs", statOrder = { 10607 }, level = 84, group = "WeaponTreeSellNodeSacredOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 3, 3, 3, 2 }, modTags = { }, }, - ["WeaponTreeSellNodeIgneousGeode"] = { type = "Spawn", tier = 1, "Item sells for an additional Igneous Geode", statOrder = { 10601 }, level = 75, group = "WeaponTreeSellNodeIgneousGeode", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 2125, 2125, 1563, 1250 }, modTags = { }, }, - ["WeaponTreeSellNodeCrystallineGeode"] = { type = "Spawn", tier = 1, "Item sells for an additional Crystalline Geode", statOrder = { 10594 }, level = 84, group = "WeaponTreeSellNodeCrystallineGeode", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 228, 228, 168, 134 }, modTags = { }, }, - ["WeaponTreeSellNodeDouble"] = { type = "Spawn", tier = 1, "Crucible Passives that sell for items sell for twice as much", statOrder = { 10603 }, level = 84, group = "WeaponTreeSellNodeDouble", nodeType = "SellBonus", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 340, 340, 250, 200 }, modTags = { }, }, - ["WeaponTreeFishingLineStrength"] = { type = "Spawn", tier = 1, "30% increased Fishing Line Strength", statOrder = { 2844 }, level = 1, group = "WeaponTreeFishingLineStrength", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingQuantity"] = { type = "Spawn", tier = 1, "20% increased Quantity of Fish Caught", statOrder = { 2849 }, level = 1, group = "WeaponTreeFishingQuantity", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingRarity"] = { type = "Spawn", tier = 1, "40% increased Rarity of Fish Caught", statOrder = { 2850 }, level = 1, group = "WeaponTreeFishingRarity", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingPoolConsumption"] = { type = "Spawn", tier = 1, "20% increased Fishing Pool Consumption", statOrder = { 2845 }, level = 1, group = "WeaponTreeFishingPoolConsumption", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingExoticFish"] = { type = "Spawn", tier = 1, "You can catch Exotic Fish", statOrder = { 2854 }, level = 1, group = "WeaponTreeFishingExoticFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingBiteSensitivity"] = { type = "Spawn", tier = 1, "50% increased Fish Bite Sensitivity", statOrder = { 3583 }, level = 1, group = "WeaponTreeFishingBiteSensitivity", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingReelStability"] = { type = "Spawn", tier = 1, "100% increased Reeling Stability", statOrder = { 6612 }, level = 1, group = "WeaponTreeFishingReelStability", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingChanceToCatchBoots"] = { type = "Spawn", tier = 1, "25% reduced chance to catch Boots", statOrder = { 6602 }, level = 1, group = "WeaponTreeFishingChanceToCatchBoots", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingChanceToCatchDivineOrb"] = { type = "Spawn", tier = 1, "5% increased chance to catch a Divine Orb", statOrder = { 6603 }, level = 1, group = "WeaponTreeFishingChanceToCatchDivineOrb", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingCanCatchDivineFish"] = { type = "Spawn", tier = 1, "You can catch Divine Fish", statOrder = { 6601 }, level = 1, group = "WeaponTreeFishingCanCatchDivineFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingGhastlyFishermanCannotSpawn"] = { type = "Spawn", tier = 1, "The Ghastly Fisherman cannot spawn", statOrder = { 6606 }, level = 1, group = "WeaponTreeFishingGhastlyFishermanCannotSpawn", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingGhastlyFishermanSpawnsBehindYou"] = { type = "Spawn", tier = 1, "The Ghastly Fisherman always appears behind you", statOrder = { 6607 }, level = 1, group = "WeaponTreeFishingGhastlyFishermanSpawnsBehindYou", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingTasalioIrePerFishCaught"] = { type = "Spawn", tier = 1, "20% reduced Tasalio's Ire per Fish caught", statOrder = { 6613 }, level = 1, group = "WeaponTreeFishingTasalioIrePerFishCaught", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingValakoAidPerStormyDay"] = { type = "Spawn", tier = 1, "20% increased Valako's Aid per Stormy Day", statOrder = { 6614 }, level = 1, group = "WeaponTreeFishingValakoAidPerStormyDay", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingBestiaryLuresAtFishingHoles"] = { type = "Spawn", tier = 1, "Can use Bestiary Lures at Fishing Holes", statOrder = { 6600 }, level = 1, group = "WeaponTreeFishingBestiaryLuresAtFishingHoles", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingCorruptedFishCleansedChance"] = { type = "Spawn", tier = 1, "Corrupted Fish have 10% chance to be Cleansed", statOrder = { 6604 }, level = 1, group = "WeaponTreeFishingCorruptedFishCleansedChance", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingKrillsonAffectionPerFishGifted"] = { type = "Spawn", tier = 1, "23% increased Krillson Affection per Fish Gifted", statOrder = { 6608 }, level = 1, group = "WeaponTreeFishingKrillsonAffectionPerFishGifted", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingLifeOfFishWithThisRod"] = { type = "Spawn", tier = 1, "40% increased Life of Fish caught with this Fishing Rod", statOrder = { 6609 }, level = 1, group = "WeaponTreeFishingLifeOfFishWithThisRod", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingFishAlwaysTellTruthWithThisRod"] = { type = "Spawn", tier = 1, "Fish caught with this Fishing Rod will always tell the truth", statOrder = { 6605 }, level = 1, group = "WeaponTreeFishingFishAlwaysTellTruthWithThisRod", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingWishPerFish"] = { type = "Spawn", tier = 1, "+3 Wishes per Ancient Fish caught", statOrder = { 6616 }, level = 1, group = "WeaponTreeFishingWishPerFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingWishEffectOfAncientFish"] = { type = "Spawn", tier = 1, "50% increased effect of Wishes granted by Ancient Fish", statOrder = { 6615 }, level = 1, group = "WeaponTreeFishingWishEffectOfAncientFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingMagmaticFishAreCooked"] = { type = "Spawn", tier = 1, "Fish caught from Magmatic Fishing Holes are already Cooked", statOrder = { 6610 }, level = 1, group = "WeaponTreeFishingMagmaticFishAreCooked", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingMoltenOneConfusionPerFishGifted"] = { type = "Spawn", tier = 1, "15% increased Molten One confusion per Fish Gifted", statOrder = { 6611 }, level = 1, group = "WeaponTreeFishingMoltenOneConfusionPerFishGifted", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportArcaneSurge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Arcane Surge", statOrder = { 226 }, level = 1, group = "WeaponTreeSupportArcaneSurge", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportChanceToIgnite"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Combustion", statOrder = { 245 }, level = 1, group = "WeaponTreeSupportChanceToIgnite", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportDecay"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Decay", statOrder = { 259 }, level = 1, group = "WeaponTreeSupportDecay", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportElementalProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Elemental Proliferation", statOrder = { 466 }, level = 1, group = "WeaponTreeSupportElementalProliferation", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportEnergyLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Energy Leech", statOrder = { 270 }, level = 1, group = "WeaponTreeSupportEnergyLeech", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportFasterCast"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Faster Casting", statOrder = { 500 }, level = 1, group = "WeaponTreeSupportFasterCast", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportIgniteProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Ignite Proliferation", statOrder = { 308 }, level = 1, group = "WeaponTreeSupportIgniteProliferation", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportIntensify"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Intensify", statOrder = { 380 }, level = 1, group = "WeaponTreeSupportIntensify", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportOvercharge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Overcharge", statOrder = { 345 }, level = 1, group = "WeaponTreeSupportOvercharge", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportPhysicalToLightning"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Physical To Lightning", statOrder = { 352 }, level = 1, group = "WeaponTreeSupportPhysicalToLightning", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportPinpoint"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Pinpoint", statOrder = { 353 }, level = 1, group = "WeaponTreeSupportPinpoint", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportSpellCascade"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Spell Cascade", statOrder = { 379 }, level = 1, group = "WeaponTreeSupportSpellCascade", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportSummonGhostOnKill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Summon Phantasm", statOrder = { 385 }, level = 1, group = "WeaponTreeSupportSummonGhostOnKill", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportSwiftBrand"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Swiftbrand", statOrder = { 387 }, level = 1, group = "WeaponTreeSupportSwiftBrand", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportAddedChaos"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Added Chaos Damage", statOrder = { 458 }, level = 1, group = "WeaponTreeSupportAddedChaos", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportAddedCold"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Added Cold Damage", statOrder = { 518 }, level = 1, group = "WeaponTreeSupportAddedCold", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportAddedLightning"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Added Lightning Damage", statOrder = { 467 }, level = 1, group = "WeaponTreeSupportAddedLightning", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportArchmage"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Archmage", statOrder = { 227 }, level = 1, group = "WeaponTreeSupportArchmage", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportBonechill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Bonechill", statOrder = { 235 }, level = 1, group = "WeaponTreeSupportBonechill", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportConcentratedEffect"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Concentrated Effect", statOrder = { 453 }, level = 1, group = "WeaponTreeSupportConcentratedEffect", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportControlledDestruction"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Controlled Destruction", statOrder = { 525 }, level = 1, group = "WeaponTreeSupportControlledDestruction", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportEfficacy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Efficacy", statOrder = { 265 }, level = 1, group = "WeaponTreeSupportEfficacy", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportElementalFocus"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Elemental Focus", statOrder = { 267 }, level = 1, group = "WeaponTreeSupportElementalFocus", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportElementalPenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Elemental Penetration", statOrder = { 268 }, level = 1, group = "WeaponTreeSupportElementalPenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportImmolate"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Immolate", statOrder = { 309 }, level = 1, group = "WeaponTreeSupportImmolate", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportIncreasedCriticalDamage"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 30 Increased Critical Damage", statOrder = { 485 }, level = 1, group = "WeaponTreeSupportIncreasedCriticalDamage", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportIncreasedCriticalStrikes"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Increased Critical Strikes", statOrder = { 313 }, level = 1, group = "WeaponTreeSupportIncreasedCriticalStrikes", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportInfusedChannelling"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Infused Channelling", statOrder = { 383 }, level = 1, group = "WeaponTreeSupportInfusedChannelling", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportInnervate"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Innervate", statOrder = { 521 }, level = 1, group = "WeaponTreeSupportInnervate", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportFirePenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Fire Penetration", statOrder = { 465 }, level = 1, group = "WeaponTreeSupportFirePenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportColdPenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Cold Penetration", statOrder = { 513 }, level = 1, group = "WeaponTreeSupportColdPenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportLightningPenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Lightning Penetration", statOrder = { 326 }, level = 1, group = "WeaponTreeSupportLightningPenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportPowerChargeOnCrit"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Power Charge On Critical Strike", statOrder = { 356 }, level = 1, group = "WeaponTreeSupportPowerChargeOnCrit", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportSpellEcho"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Spell Echo", statOrder = { 341 }, level = 1, group = "WeaponTreeSupportSpellEcho", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportTrinity"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Trinity", statOrder = { 392 }, level = 1, group = "WeaponTreeSupportTrinity", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportUnboundAilments"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Unbound Ailments", statOrder = { 393 }, level = 1, group = "WeaponTreeSupportUnboundAilments", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportUnleash"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Unleash", statOrder = { 396 }, level = 1, group = "WeaponTreeSupportUnleash", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportBurningDamage"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Burning Damage", statOrder = { 312 }, level = 1, group = "WeaponTreeSupportBurningDamage", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportColdToFire"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Cold to Fire", statOrder = { 463 }, level = 1, group = "WeaponTreeSupportColdToFire", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportInspiration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Inspiration", statOrder = { 494 }, level = 1, group = "WeaponTreeSupportInspiration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportIceBite"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Ice Bite", statOrder = { 512 }, level = 1, group = "WeaponTreeSupportIceBite", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportCriticalStrikeAffliction"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Critical Strike Affliction", statOrder = { 355 }, level = 1, group = "WeaponTreeSupportCriticalStrikeAffliction", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportDeadlyAilments"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Deadly Ailments", statOrder = { 257 }, level = 1, group = "WeaponTreeSupportDeadlyAilments", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportHypothermia"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Hypothermia", statOrder = { 511 }, level = 1, group = "WeaponTreeSupportHypothermia", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportSwiftAffliction"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Swift Affliction", statOrder = { 363 }, level = 1, group = "WeaponTreeSupportSwiftAffliction", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 2 to 7 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 58320, }, + ["WeaponTreeAddedPhysicalHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 3 to 11 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 2397, }, + ["WeaponTreeAddedPhysicalHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 6 to 12 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 20412, }, + ["WeaponTreeAddedPhysicalHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 6 to 16 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 51047, }, + ["WeaponTreeAddedPhysicalHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 8 to 19 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 28634, }, + ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 12 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 25161, }, + ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 6 to 16 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 1163, }, + ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 9 to 20 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 52531, }, + ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 11 to 25 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 22332, }, + ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 14 to 33 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 4467, }, + ["WeaponTreeAddedPhysical1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", statOrder = { 1276 }, level = 1, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 7394, }, + ["WeaponTreeAddedPhysical2"] = { type = "Spawn", tier = 2, "Adds 2 to 8 Physical Damage", statOrder = { 1276 }, level = 21, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 24582, }, + ["WeaponTreeAddedPhysical3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", statOrder = { 1276 }, level = 46, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 31100, }, + ["WeaponTreeAddedPhysical4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", statOrder = { 1276 }, level = 65, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 65423, }, + ["WeaponTreeAddedPhysical5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", statOrder = { 1276 }, level = 77, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 53268, }, + ["WeaponTreeAddedPhysical2h1"] = { type = "Spawn", tier = 1, "Adds 4 to 9 Physical Damage", statOrder = { 1276 }, level = 1, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 37103, }, + ["WeaponTreeAddedPhysical2h2"] = { type = "Spawn", tier = 2, "Adds 6 to 11 Physical Damage", statOrder = { 1276 }, level = 21, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 21788, }, + ["WeaponTreeAddedPhysical2h3"] = { type = "Spawn", tier = 3, "Adds 7 to 16 Physical Damage", statOrder = { 1276 }, level = 46, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 37668, }, + ["WeaponTreeAddedPhysical2h4"] = { type = "Spawn", tier = 4, "Adds 8 to 19 Physical Damage", statOrder = { 1276 }, level = 65, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 65328, }, + ["WeaponTreeAddedPhysical2h5"] = { type = "Spawn", tier = 5, "Adds 11 to 26 Physical Damage", statOrder = { 1276 }, level = 77, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 1490, }, + ["WeaponTreeAddedPhysicalLowFireConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 48262, }, + ["WeaponTreeAddedPhysicalLowFireConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 54503, }, + ["WeaponTreeAddedPhysicalLowFireConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 49446, }, + ["WeaponTreeAddedPhysicalLowFireConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHash = 24057, }, + ["WeaponTreeAddedPhysicalLowFireConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, tradeHash = 61453, }, + ["WeaponTreeAddedPhysical2hLowFireConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 28724, }, + ["WeaponTreeAddedPhysical2hLowFireConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 17154, }, + ["WeaponTreeAddedPhysical2hLowFireConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 9703, }, + ["WeaponTreeAddedPhysical2hLowFireConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHash = 11236, }, + ["WeaponTreeAddedPhysical2hLowFireConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, tradeHash = 924, }, + ["WeaponTreeAddedPhysicalLowColdConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 9502, }, + ["WeaponTreeAddedPhysicalLowColdConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 42157, }, + ["WeaponTreeAddedPhysicalLowColdConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 58280, }, + ["WeaponTreeAddedPhysicalLowColdConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHash = 34572, }, + ["WeaponTreeAddedPhysicalLowColdConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, tradeHash = 10664, }, + ["WeaponTreeAddedPhysical2hLowColdConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 35090, }, + ["WeaponTreeAddedPhysical2hLowColdConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 59590, }, + ["WeaponTreeAddedPhysical2hLowColdConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 58310, }, + ["WeaponTreeAddedPhysical2hLowColdConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHash = 21596, }, + ["WeaponTreeAddedPhysical2hLowColdConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, tradeHash = 30768, }, + ["WeaponTreeAddedPhysicalLowLightningConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 19998, }, + ["WeaponTreeAddedPhysicalLowLightningConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 50630, }, + ["WeaponTreeAddedPhysicalLowLightningConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 42341, }, + ["WeaponTreeAddedPhysicalLowLightningConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHash = 12038, }, + ["WeaponTreeAddedPhysicalLowLightningConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, tradeHash = 39503, }, + ["WeaponTreeAddedPhysical2hLowLightningConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 53227, }, + ["WeaponTreeAddedPhysical2hLowLightningConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 57439, }, + ["WeaponTreeAddedPhysical2hLowLightningConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 3893, }, + ["WeaponTreeAddedPhysical2hLowLightningConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHash = 10615, }, + ["WeaponTreeAddedPhysical2hLowLightningConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, tradeHash = 50927, }, + ["WeaponTreeAddedPhysicalLowChaosConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHash = 26442, }, + ["WeaponTreeAddedPhysicalLowChaosConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHash = 7846, }, + ["WeaponTreeAddedPhysicalLowChaosConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHash = 57561, }, + ["WeaponTreeAddedPhysicalLowChaosConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, tradeHash = 671, }, + ["WeaponTreeAddedPhysicalLowChaosConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 12, 0 }, modTags = { }, tradeHash = 8915, }, + ["WeaponTreeAddedPhysical2hLowChaosConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHash = 13422, }, + ["WeaponTreeAddedPhysical2hLowChaosConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHash = 36266, }, + ["WeaponTreeAddedPhysical2hLowChaosConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHash = 22547, }, + ["WeaponTreeAddedPhysical2hLowChaosConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, tradeHash = 46249, }, + ["WeaponTreeAddedPhysical2hLowChaosConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 12, 0 }, modTags = { }, tradeHash = 44096, }, + ["WeaponTreeAddedPhysicalLowRandomElementConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHash = 15253, }, + ["WeaponTreeAddedPhysicalLowRandomElementConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHash = 24002, }, + ["WeaponTreeAddedPhysicalLowRandomElementConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHash = 13318, }, + ["WeaponTreeAddedPhysicalLowRandomElementConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, tradeHash = 5806, }, + ["WeaponTreeAddedPhysicalLowRandomElementConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 12, 0 }, modTags = { }, tradeHash = 25097, }, + ["WeaponTreeAddedPhysical2hLowRandomElementConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHash = 43606, }, + ["WeaponTreeAddedPhysical2hLowRandomElementConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHash = 5172, }, + ["WeaponTreeAddedPhysical2hLowRandomElementConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHash = 25664, }, + ["WeaponTreeAddedPhysical2hLowRandomElementConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, tradeHash = 8271, }, + ["WeaponTreeAddedPhysical2hLowRandomElementConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 12, 0 }, modTags = { }, tradeHash = 36251, }, + ["WeaponTreeAddedPhysicalLowBleedChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 64268, }, + ["WeaponTreeAddedPhysicalLowBleedChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 452, }, + ["WeaponTreeAddedPhysicalLowBleedChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 62, }, + ["WeaponTreeAddedPhysicalLowBleedChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 61454, }, + ["WeaponTreeAddedPhysicalLowBleedChance5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 30556, }, + ["WeaponTreeAddedPhysical2hLowBleedChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 15398, }, + ["WeaponTreeAddedPhysical2hLowBleedChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 26710, }, + ["WeaponTreeAddedPhysical2hLowBleedChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 61223, }, + ["WeaponTreeAddedPhysical2hLowBleedChance4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 33265, }, + ["WeaponTreeAddedPhysical2hLowBleedChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 8452, }, + ["WeaponTreeAddedPhysicalLowImpaleChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 57703, }, + ["WeaponTreeAddedPhysicalLowImpaleChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 53584, }, + ["WeaponTreeAddedPhysicalLowImpaleChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 62527, }, + ["WeaponTreeAddedPhysicalLowImpaleChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 7016, }, + ["WeaponTreeAddedPhysicalLowImpaleChance5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 55724, }, + ["WeaponTreeAddedPhysical2hLowImpaleChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 58769, }, + ["WeaponTreeAddedPhysical2hLowImpaleChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 11894, }, + ["WeaponTreeAddedPhysical2hLowImpaleChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 12551, }, + ["WeaponTreeAddedPhysical2hLowImpaleChance4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 50747, }, + ["WeaponTreeAddedPhysical2hLowImpaleChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 32892, }, + ["WeaponTreeAddedFireHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 5 to 9 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 1, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 51716, }, + ["WeaponTreeAddedFireHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 9 to 13 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 26, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 34545, }, + ["WeaponTreeAddedFireHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 16 to 26 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 42, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 54465, }, + ["WeaponTreeAddedFireHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 27 to 42 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 62, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 52222, }, + ["WeaponTreeAddedFireHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 55 to 83 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 82, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 57667, }, + ["WeaponTreeAddedFire2hHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 9 to 14 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 1, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 22336, }, + ["WeaponTreeAddedFire2hHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 16 to 24 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 26, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 39077, }, + ["WeaponTreeAddedFire2hHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 30 to 47 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 42, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 22393, }, + ["WeaponTreeAddedFire2hHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 52 to 77 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 62, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 63596, }, + ["WeaponTreeAddedFire2hHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 102 to 153 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 82, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 4488, }, + ["WeaponTreeAddedFire1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Fire Damage", statOrder = { 1362 }, level = 1, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 64191, }, + ["WeaponTreeAddedFire2"] = { type = "Spawn", tier = 2, "Adds 7 to 10 Fire Damage", statOrder = { 1362 }, level = 26, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 12162, }, + ["WeaponTreeAddedFire3"] = { type = "Spawn", tier = 3, "Adds 13 to 18 Fire Damage", statOrder = { 1362 }, level = 42, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 51974, }, + ["WeaponTreeAddedFire4"] = { type = "Spawn", tier = 4, "Adds 22 to 32 Fire Damage", statOrder = { 1362 }, level = 62, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 51463, }, + ["WeaponTreeAddedFire5"] = { type = "Spawn", tier = 5, "Adds 42 to 63 Fire Damage", statOrder = { 1362 }, level = 82, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 556, }, + ["WeaponTreeAddedFire2h1"] = { type = "Spawn", tier = 1, "Adds 8 to 10 Fire Damage", statOrder = { 1362 }, level = 1, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 57276, }, + ["WeaponTreeAddedFire2h2"] = { type = "Spawn", tier = 2, "Adds 13 to 19 Fire Damage", statOrder = { 1362 }, level = 26, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 32429, }, + ["WeaponTreeAddedFire2h3"] = { type = "Spawn", tier = 3, "Adds 24 to 35 Fire Damage", statOrder = { 1362 }, level = 42, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 5561, }, + ["WeaponTreeAddedFire2h4"] = { type = "Spawn", tier = 4, "Adds 39 to 61 Fire Damage", statOrder = { 1362 }, level = 62, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 40598, }, + ["WeaponTreeAddedFire2h5"] = { type = "Spawn", tier = 5, "Adds 78 to 118 Fire Damage", statOrder = { 1362 }, level = 82, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 56502, }, + ["WeaponTreeAddedFireLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Fire Damage", "10% chance to Ignite", statOrder = { 1362, 2026 }, level = 1, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 34655, }, + ["WeaponTreeAddedFireLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Fire Damage", "10% chance to Ignite", statOrder = { 1362, 2026 }, level = 26, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 31456, }, + ["WeaponTreeAddedFireLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 12 Fire Damage", "10% chance to Ignite", statOrder = { 1362, 2026 }, level = 42, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 29983, }, + ["WeaponTreeAddedFireLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 12 to 19 Fire Damage", "10% chance to Ignite", statOrder = { 1362, 2026 }, level = 62, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 17381, }, + ["WeaponTreeAddedFireLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 25 to 39 Fire Damage", "10% chance to Ignite", statOrder = { 1362, 2026 }, level = 82, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 56300, }, + ["WeaponTreeAddedFire2hLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 4 to 9 Fire Damage", "20% chance to Ignite", statOrder = { 1362, 2026 }, level = 1, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 15317, }, + ["WeaponTreeAddedFire2hLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Fire Damage", "20% chance to Ignite", statOrder = { 1362, 2026 }, level = 26, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 44858, }, + ["WeaponTreeAddedFire2hLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 13 to 22 Fire Damage", "20% chance to Ignite", statOrder = { 1362, 2026 }, level = 42, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 23976, }, + ["WeaponTreeAddedFire2hLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 23 to 36 Fire Damage", "20% chance to Ignite", statOrder = { 1362, 2026 }, level = 62, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 19004, }, + ["WeaponTreeAddedFire2hLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 48 to 71 Fire Damage", "20% chance to Ignite", statOrder = { 1362, 2026 }, level = 82, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 38637, }, + ["WeaponTreeAddedFireLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 1 to 5 Fire Damage", statOrder = { 58, 1362 }, level = 10, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 37712, }, + ["WeaponTreeAddedFireLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 3 to 6 Fire Damage", statOrder = { 58, 1362 }, level = 30, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 29891, }, + ["WeaponTreeAddedFireLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 7 to 12 Fire Damage", statOrder = { 58, 1362 }, level = 48, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 45738, }, + ["WeaponTreeAddedFireLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 12 to 19 Fire Damage", statOrder = { 58, 1362 }, level = 66, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 5312, }, + ["WeaponTreeAddedFireLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 25 to 39 Fire Damage", statOrder = { 58, 1362 }, level = 84, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 55457, }, + ["WeaponTreeAddedFire2hLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 4 to 9 Fire Damage", statOrder = { 58, 1362 }, level = 10, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 48429, }, + ["WeaponTreeAddedFire2hLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 7 to 11 Fire Damage", statOrder = { 58, 1362 }, level = 30, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 46838, }, + ["WeaponTreeAddedFire2hLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 13 to 22 Fire Damage", statOrder = { 58, 1362 }, level = 48, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 39015, }, + ["WeaponTreeAddedFire2hLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 23 to 36 Fire Damage", statOrder = { 58, 1362 }, level = 66, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 3293, }, + ["WeaponTreeAddedFire2hLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 48 to 71 Fire Damage", statOrder = { 58, 1362 }, level = 84, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 5480, }, + ["WeaponTreeAddedColdHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 4 to 9 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 1, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 62341, }, + ["WeaponTreeAddedColdHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 26, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 65300, }, + ["WeaponTreeAddedColdHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 15 to 24 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 42, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 21311, }, + ["WeaponTreeAddedColdHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 26 to 39 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 62, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 7504, }, + ["WeaponTreeAddedColdHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 52 to 78 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 82, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 58336, }, + ["WeaponTreeAddedCold2hHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 8 to 14 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 1, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 5614, }, + ["WeaponTreeAddedCold2hHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 14 to 23 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 26, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 39084, }, + ["WeaponTreeAddedCold2hHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 28 to 44 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 42, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 49032, }, + ["WeaponTreeAddedCold2hHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 47 to 73 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 62, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 22572, }, + ["WeaponTreeAddedCold2hHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 95 to 144 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 82, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 33118, }, + ["WeaponTreeAddedCold1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Cold Damage", statOrder = { 1371 }, level = 1, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 31374, }, + ["WeaponTreeAddedCold2"] = { type = "Spawn", tier = 2, "Adds 5 to 10 Cold Damage", statOrder = { 1371 }, level = 26, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 44815, }, + ["WeaponTreeAddedCold3"] = { type = "Spawn", tier = 3, "Adds 12 to 18 Cold Damage", statOrder = { 1371 }, level = 42, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 25482, }, + ["WeaponTreeAddedCold4"] = { type = "Spawn", tier = 4, "Adds 19 to 30 Cold Damage", statOrder = { 1371 }, level = 62, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 39882, }, + ["WeaponTreeAddedCold5"] = { type = "Spawn", tier = 5, "Adds 41 to 60 Cold Damage", statOrder = { 1371 }, level = 82, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 16563, }, + ["WeaponTreeAddedCold2h1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Cold Damage", statOrder = { 1371 }, level = 1, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 55976, }, + ["WeaponTreeAddedCold2h2"] = { type = "Spawn", tier = 2, "Adds 10 to 17 Cold Damage", statOrder = { 1371 }, level = 26, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 45961, }, + ["WeaponTreeAddedCold2h3"] = { type = "Spawn", tier = 3, "Adds 21 to 34 Cold Damage", statOrder = { 1371 }, level = 42, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 7106, }, + ["WeaponTreeAddedCold2h4"] = { type = "Spawn", tier = 4, "Adds 37 to 55 Cold Damage", statOrder = { 1371 }, level = 62, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 60744, }, + ["WeaponTreeAddedCold2h5"] = { type = "Spawn", tier = 5, "Adds 74 to 111 Cold Damage", statOrder = { 1371 }, level = 82, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 19599, }, + ["WeaponTreeAddedColdLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Cold Damage", "10% chance to Freeze", statOrder = { 1371, 2029 }, level = 1, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 64377, }, + ["WeaponTreeAddedColdLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Cold Damage", "10% chance to Freeze", statOrder = { 1371, 2029 }, level = 26, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 9893, }, + ["WeaponTreeAddedColdLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Cold Damage", "10% chance to Freeze", statOrder = { 1371, 2029 }, level = 42, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 44638, }, + ["WeaponTreeAddedColdLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 12 to 19 Cold Damage", "10% chance to Freeze", statOrder = { 1371, 2029 }, level = 62, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 27407, }, + ["WeaponTreeAddedColdLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 24 to 35 Cold Damage", "10% chance to Freeze", statOrder = { 1371, 2029 }, level = 82, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 52619, }, + ["WeaponTreeAddedCold2hLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Cold Damage", "20% chance to Freeze", statOrder = { 1371, 2029 }, level = 1, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 23395, }, + ["WeaponTreeAddedCold2hLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Cold Damage", "20% chance to Freeze", statOrder = { 1371, 2029 }, level = 26, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 26947, }, + ["WeaponTreeAddedCold2hLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 13 to 21 Cold Damage", "20% chance to Freeze", statOrder = { 1371, 2029 }, level = 42, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 741, }, + ["WeaponTreeAddedCold2hLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 23 to 35 Cold Damage", "20% chance to Freeze", statOrder = { 1371, 2029 }, level = 62, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 25316, }, + ["WeaponTreeAddedCold2hLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 45 to 66 Cold Damage", "20% chance to Freeze", statOrder = { 1371, 2029 }, level = 82, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 10646, }, + ["WeaponTreeAddedColdLowAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 10, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 6602, }, + ["WeaponTreeAddedColdLowAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 30, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 22317, }, + ["WeaponTreeAddedColdLowAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 48, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 20897, }, + ["WeaponTreeAddedColdLowAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 12 to 19 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 66, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 50690, }, + ["WeaponTreeAddedColdLowAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 24 to 35 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 84, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 61585, }, + ["WeaponTreeAddedCold2hLowAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 10, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 21944, }, + ["WeaponTreeAddedCold2hLowAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 30, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 61470, }, + ["WeaponTreeAddedCold2hLowAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 13 to 21 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 48, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 6546, }, + ["WeaponTreeAddedCold2hLowAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 23 to 35 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 66, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 23822, }, + ["WeaponTreeAddedCold2hLowAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 45 to 66 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 84, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 34415, }, + ["WeaponTreeAddedLightningHighIncreasedDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 12 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 1, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 21850, }, + ["WeaponTreeAddedLightningHighIncreasedDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 20 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 26, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 64192, }, + ["WeaponTreeAddedLightningHighIncreasedDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 1 to 41 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 42, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 59436, }, + ["WeaponTreeAddedLightningHighIncreasedDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 3 to 66 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 62, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 8937, }, + ["WeaponTreeAddedLightningHighIncreasedDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 7 to 132 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 82, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 1934, }, + ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 21 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 1, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 58772, }, + ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 38 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 26, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 47211, }, + ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 3 to 75 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 42, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 32660, }, + ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 6 to 124 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 62, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 64902, }, + ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 13 to 242 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 82, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 2995, }, + ["WeaponTreeAddedLightning1"] = { type = "Spawn", tier = 1, "Adds 1 to 9 Lightning Damage", statOrder = { 1382 }, level = 1, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 4424, }, + ["WeaponTreeAddedLightning2"] = { type = "Spawn", tier = 2, "Adds 1 to 17 Lightning Damage", statOrder = { 1382 }, level = 26, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 11676, }, + ["WeaponTreeAddedLightning3"] = { type = "Spawn", tier = 3, "Adds 1 to 30 Lightning Damage", statOrder = { 1382 }, level = 42, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 16589, }, + ["WeaponTreeAddedLightning4"] = { type = "Spawn", tier = 4, "Adds 3 to 51 Lightning Damage", statOrder = { 1382 }, level = 62, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 17672, }, + ["WeaponTreeAddedLightning5"] = { type = "Spawn", tier = 5, "Adds 6 to 101 Lightning Damage", statOrder = { 1382 }, level = 82, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 26133, }, + ["WeaponTreeAddedLightning2h1"] = { type = "Spawn", tier = 1, "Adds 1 to 16 Lightning Damage", statOrder = { 1382 }, level = 1, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 18134, }, + ["WeaponTreeAddedLightning2h2"] = { type = "Spawn", tier = 2, "Adds 1 to 29 Lightning Damage", statOrder = { 1382 }, level = 26, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 50331, }, + ["WeaponTreeAddedLightning2h3"] = { type = "Spawn", tier = 3, "Adds 3 to 58 Lightning Damage", statOrder = { 1382 }, level = 42, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 24278, }, + ["WeaponTreeAddedLightning2h4"] = { type = "Spawn", tier = 4, "Adds 4 to 94 Lightning Damage", statOrder = { 1382 }, level = 62, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 42223, }, + ["WeaponTreeAddedLightning2h5"] = { type = "Spawn", tier = 5, "Adds 10 to 186 Lightning Damage", statOrder = { 1382 }, level = 82, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 7619, }, + ["WeaponTreeAddedLightningLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Lightning Damage", "10% chance to Shock", statOrder = { 1382, 2033 }, level = 1, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 5940, }, + ["WeaponTreeAddedLightningLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 10 Lightning Damage", "10% chance to Shock", statOrder = { 1382, 2033 }, level = 26, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 64600, }, + ["WeaponTreeAddedLightningLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 18 Lightning Damage", "10% chance to Shock", statOrder = { 1382, 2033 }, level = 42, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 4512, }, + ["WeaponTreeAddedLightningLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 31 Lightning Damage", "10% chance to Shock", statOrder = { 1382, 2033 }, level = 62, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 38707, }, + ["WeaponTreeAddedLightningLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 3 to 60 Lightning Damage", "10% chance to Shock", statOrder = { 1382, 2033 }, level = 82, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 42997, }, + ["WeaponTreeAddedLightning2hLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 10 Lightning Damage", "20% chance to Shock", statOrder = { 1382, 2033 }, level = 1, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 59525, }, + ["WeaponTreeAddedLightning2hLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 19 Lightning Damage", "20% chance to Shock", statOrder = { 1382, 2033 }, level = 26, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 20475, }, + ["WeaponTreeAddedLightning2hLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 34 Lightning Damage", "20% chance to Shock", statOrder = { 1382, 2033 }, level = 42, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 56853, }, + ["WeaponTreeAddedLightning2hLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 4 to 58 Lightning Damage", "20% chance to Shock", statOrder = { 1382, 2033 }, level = 62, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 27326, }, + ["WeaponTreeAddedLightning2hLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 112 Lightning Damage", "20% chance to Shock", statOrder = { 1382, 2033 }, level = 82, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 9341, }, + ["WeaponTreeAddedLightningLowCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 10, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 58047, }, + ["WeaponTreeAddedLightningLowCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 10 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 30, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 64083, }, + ["WeaponTreeAddedLightningLowCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 18 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 48, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 39498, }, + ["WeaponTreeAddedLightningLowCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 31 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 66, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 5507, }, + ["WeaponTreeAddedLightningLowCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 3 to 60 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 84, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 2816, }, + ["WeaponTreeAddedLightning2hLowCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 10 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 10, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 30845, }, + ["WeaponTreeAddedLightning2hLowCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 19 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 30, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 37645, }, + ["WeaponTreeAddedLightning2hLowCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 34 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 48, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 47415, }, + ["WeaponTreeAddedLightning2hLowCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 4 to 58 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 66, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 12538, }, + ["WeaponTreeAddedLightning2hLowCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 112 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 84, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 61644, }, + ["WeaponTreeAddedChaosHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Chaos Damage", "5% reduced maximum Life", statOrder = { 1390, 1571 }, level = 8, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 23529, }, + ["WeaponTreeAddedChaosHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 7 to 10 Chaos Damage", "5% reduced maximum Life", statOrder = { 1390, 1571 }, level = 28, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 8526, }, + ["WeaponTreeAddedChaosHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 12 to 18 Chaos Damage", "5% reduced maximum Life", statOrder = { 1390, 1571 }, level = 44, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 18947, }, + ["WeaponTreeAddedChaosHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 19 to 31 Chaos Damage", "5% reduced maximum Life", statOrder = { 1390, 1571 }, level = 70, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 30283, }, + ["WeaponTreeAddedChaosHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 39 to 59 Chaos Damage", "5% reduced maximum Life", statOrder = { 1390, 1571 }, level = 85, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 31388, }, + ["WeaponTreeAddedChaos2hHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Chaos Damage", "7% reduced maximum Life", statOrder = { 1390, 1571 }, level = 8, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 58910, }, + ["WeaponTreeAddedChaos2hHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 10 to 17 Chaos Damage", "7% reduced maximum Life", statOrder = { 1390, 1571 }, level = 28, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 7388, }, + ["WeaponTreeAddedChaos2hHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 20 to 30 Chaos Damage", "7% reduced maximum Life", statOrder = { 1390, 1571 }, level = 44, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 57950, }, + ["WeaponTreeAddedChaos2hHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 34 to 51 Chaos Damage", "7% reduced maximum Life", statOrder = { 1390, 1571 }, level = 70, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 3066, }, + ["WeaponTreeAddedChaos2hHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 66 to 99 Chaos Damage", "7% reduced maximum Life", statOrder = { 1390, 1571 }, level = 85, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 15164, }, + ["WeaponTreeAddedChaos1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Chaos Damage", statOrder = { 1390 }, level = 8, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 5117, }, + ["WeaponTreeAddedChaos2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Chaos Damage", statOrder = { 1390 }, level = 28, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 6852, }, + ["WeaponTreeAddedChaos3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Chaos Damage", statOrder = { 1390 }, level = 44, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 29319, }, + ["WeaponTreeAddedChaos4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Chaos Damage", statOrder = { 1390 }, level = 70, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 54260, }, + ["WeaponTreeAddedChaos5"] = { type = "Spawn", tier = 5, "Adds 29 to 46 Chaos Damage", statOrder = { 1390 }, level = 85, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 55286, }, + ["WeaponTreeAddedChaos2h1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Chaos Damage", statOrder = { 1390 }, level = 8, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 35963, }, + ["WeaponTreeAddedChaos2h2"] = { type = "Spawn", tier = 2, "Adds 7 to 13 Chaos Damage", statOrder = { 1390 }, level = 28, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 26177, }, + ["WeaponTreeAddedChaos2h3"] = { type = "Spawn", tier = 3, "Adds 15 to 24 Chaos Damage", statOrder = { 1390 }, level = 44, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 46252, }, + ["WeaponTreeAddedChaos2h4"] = { type = "Spawn", tier = 4, "Adds 26 to 39 Chaos Damage", statOrder = { 1390 }, level = 70, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 55950, }, + ["WeaponTreeAddedChaos2h5"] = { type = "Spawn", tier = 5, "Adds 50 to 77 Chaos Damage", statOrder = { 1390 }, level = 85, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 64292, }, + ["WeaponTreeAddedChaosLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 8, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 17840, }, + ["WeaponTreeAddedChaosLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 28, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 5349, }, + ["WeaponTreeAddedChaosLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 9 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 44, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 5479, }, + ["WeaponTreeAddedChaosLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 8 to 15 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 70, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 32010, }, + ["WeaponTreeAddedChaosLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 18 to 28 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 85, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, tradeHash = 52362, }, + ["WeaponTreeAddedChaos2hLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 8, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 34553, }, + ["WeaponTreeAddedChaos2hLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 28, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 22352, }, + ["WeaponTreeAddedChaos2hLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 9 to 14 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 44, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 62789, }, + ["WeaponTreeAddedChaos2hLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 70, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 16474, }, + ["WeaponTreeAddedChaos2hLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 31 to 46 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 85, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, tradeHash = 59841, }, + ["WeaponTreeAddedChaosLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 8, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 18265, }, + ["WeaponTreeAddedChaosLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 28, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 25509, }, + ["WeaponTreeAddedChaosLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 7 to 9 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 44, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 4715, }, + ["WeaponTreeAddedChaosLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 8 to 15 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 70, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 61196, }, + ["WeaponTreeAddedChaosLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 18 to 28 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 85, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, tradeHash = 31463, }, + ["WeaponTreeAddedChaos2hLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 8, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 5998, }, + ["WeaponTreeAddedChaos2hLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 28, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 54019, }, + ["WeaponTreeAddedChaos2hLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 9 to 14 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 44, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 31718, }, + ["WeaponTreeAddedChaos2hLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 70, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 1636, }, + ["WeaponTreeAddedChaos2hLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 31 to 46 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 85, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, tradeHash = 62579, }, + ["WeaponTreeAddedElementalHighCannotInflictElementalAilments1"] = { type = "Spawn", tier = 1, "Adds 7 to 11 Fire Damage", "Adds 7 to 11 Cold Damage", "Adds 1 to 19 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 36, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 61405, }, + ["WeaponTreeAddedElementalHighCannotInflictElementalAilments2"] = { type = "Spawn", tier = 2, "Adds 12 to 18 Fire Damage", "Adds 12 to 18 Cold Damage", "Adds 3 to 29 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 60, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 5360, }, + ["WeaponTreeAddedElementalHighCannotInflictElementalAilments3"] = { type = "Spawn", tier = 3, "Adds 24 to 35 Fire Damage", "Adds 24 to 35 Cold Damage", "Adds 3 to 55 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 85, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 46485, }, + ["WeaponTreeAddedElemental2hHighCannotInflictElementalAilments1"] = { type = "Spawn", tier = 1, "Adds 14 to 23 Fire Damage", "Adds 14 to 23 Cold Damage", "Adds 3 to 33 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 36, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 12476, }, + ["WeaponTreeAddedElemental2hHighCannotInflictElementalAilments2"] = { type = "Spawn", tier = 2, "Adds 23 to 34 Fire Damage", "Adds 23 to 34 Cold Damage", "Adds 4 to 56 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 60, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 35180, }, + ["WeaponTreeAddedElemental2hHighCannotInflictElementalAilments3"] = { type = "Spawn", tier = 3, "Adds 43 to 64 Fire Damage", "Adds 43 to 64 Cold Damage", "Adds 6 to 102 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 85, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 7669, }, + ["WeaponTreeAddedElemental1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Fire Damage", "Adds 5 to 10 Cold Damage", "Adds 1 to 15 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 36, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 28768, }, + ["WeaponTreeAddedElemental2"] = { type = "Spawn", tier = 2, "Adds 9 to 15 Fire Damage", "Adds 9 to 15 Cold Damage", "Adds 1 to 23 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 60, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 60306, }, + ["WeaponTreeAddedElemental3"] = { type = "Spawn", tier = 3, "Adds 18 to 27 Fire Damage", "Adds 18 to 27 Cold Damage", "Adds 3 to 42 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 85, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 25806, }, + ["WeaponTreeAddedElemental2h1"] = { type = "Spawn", tier = 1, "Adds 10 to 17 Fire Damage", "Adds 10 to 17 Cold Damage", "Adds 3 to 26 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 36, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 21009, }, + ["WeaponTreeAddedElemental2h2"] = { type = "Spawn", tier = 2, "Adds 17 to 26 Fire Damage", "Adds 17 to 26 Cold Damage", "Adds 3 to 42 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 60, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 63570, }, + ["WeaponTreeAddedElemental2h3"] = { type = "Spawn", tier = 3, "Adds 34 to 49 Fire Damage", "Adds 34 to 49 Cold Damage", "Adds 4 to 78 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 85, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 27395, }, + ["WeaponTreeAddedElementalLowElementalAilmentChance1"] = { type = "Spawn", tier = 1, "Adds 3 to 6 Fire Damage", "Adds 3 to 6 Cold Damage", "Adds 1 to 8 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 48691, }, + ["WeaponTreeAddedElementalLowElementalAilmentChance2"] = { type = "Spawn", tier = 2, "Adds 6 to 10 Fire Damage", "Adds 6 to 10 Cold Damage", "Adds 1 to 13 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 61524, }, + ["WeaponTreeAddedElementalLowElementalAilmentChance3"] = { type = "Spawn", tier = 3, "Adds 13 to 20 Fire Damage", "Adds 13 to 20 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, tradeHash = 30676, }, + ["WeaponTreeAddedElemental2hLowElementalAilmentChance1"] = { type = "Spawn", tier = 1, "Adds 7 to 11 Fire Damage", "Adds 7 to 11 Cold Damage", "Adds 3 to 15 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 41601, }, + ["WeaponTreeAddedElemental2hLowElementalAilmentChance2"] = { type = "Spawn", tier = 2, "Adds 12 to 20 Fire Damage", "Adds 12 to 20 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 9772, }, + ["WeaponTreeAddedElemental2hLowElementalAilmentChance3"] = { type = "Spawn", tier = 3, "Adds 24 to 35 Fire Damage", "Adds 24 to 35 Cold Damage", "Adds 4 to 46 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, tradeHash = 23098, }, + ["WeaponTreeAddedElementalLowElementalAilmentEffect1"] = { type = "Spawn", tier = 1, "Adds 3 to 6 Fire Damage", "Adds 3 to 6 Cold Damage", "Adds 1 to 8 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 13110, }, + ["WeaponTreeAddedElementalLowElementalAilmentEffect2"] = { type = "Spawn", tier = 2, "Adds 4 to 9 Fire Damage", "Adds 4 to 9 Cold Damage", "Adds 1 to 13 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 1775, }, + ["WeaponTreeAddedElementalLowElementalAilmentEffect3"] = { type = "Spawn", tier = 3, "Adds 11 to 15 Fire Damage", "Adds 11 to 15 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, tradeHash = 41492, }, + ["WeaponTreeAddedElemental2hLowElementalAilmentEffect1"] = { type = "Spawn", tier = 1, "Adds 7 to 10 Fire Damage", "Adds 7 to 10 Cold Damage", "Adds 3 to 15 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 11659, }, + ["WeaponTreeAddedElemental2hLowElementalAilmentEffect2"] = { type = "Spawn", tier = 2, "Adds 9 to 17 Fire Damage", "Adds 9 to 17 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 31799, }, + ["WeaponTreeAddedElemental2hLowElementalAilmentEffect3"] = { type = "Spawn", tier = 3, "Adds 20 to 29 Fire Damage", "Adds 20 to 29 Cold Damage", "Adds 4 to 46 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, tradeHash = 14627, }, + ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 16058, }, + ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 5 to 7 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 36536, }, + ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 42973, }, + ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 14 to 22 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, tradeHash = 27249, }, + ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 28 to 42 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, tradeHash = 15149, }, + ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 7 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 13412, }, + ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 7 to 12 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 50121, }, + ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 14 to 22 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 1766, }, + ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 24 to 37 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, tradeHash = 49935, }, + ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 47 to 71 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, tradeHash = 50230, }, + ["WeaponTreeSpellAddedPhysical1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Physical Damage to Spells", statOrder = { 1403 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 53045, }, + ["WeaponTreeSpellAddedPhysical2"] = { type = "Spawn", tier = 2, "Adds 2 to 6 Physical Damage to Spells", statOrder = { 1403 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 12689, }, + ["WeaponTreeSpellAddedPhysical3"] = { type = "Spawn", tier = 3, "Adds 6 to 10 Physical Damage to Spells", statOrder = { 1403 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 8935, }, + ["WeaponTreeSpellAddedPhysical4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", statOrder = { 1403 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 43622, }, + ["WeaponTreeSpellAddedPhysical5"] = { type = "Spawn", tier = 5, "Adds 21 to 33 Physical Damage to Spells", statOrder = { 1403 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, tradeHash = 14210, }, + ["WeaponTreeSpellAddedPhysical2h1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Physical Damage to Spells", statOrder = { 1403 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 37998, }, + ["WeaponTreeSpellAddedPhysical2h2"] = { type = "Spawn", tier = 2, "Adds 5 to 10 Physical Damage to Spells", statOrder = { 1403 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 63422, }, + ["WeaponTreeSpellAddedPhysical2h3"] = { type = "Spawn", tier = 3, "Adds 10 to 17 Physical Damage to Spells", statOrder = { 1403 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 6140, }, + ["WeaponTreeSpellAddedPhysical2h4"] = { type = "Spawn", tier = 4, "Adds 18 to 28 Physical Damage to Spells", statOrder = { 1403 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 39355, }, + ["WeaponTreeSpellAddedPhysical2h5"] = { type = "Spawn", tier = 5, "Adds 36 to 55 Physical Damage to Spells", statOrder = { 1403 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, tradeHash = 52206, }, + ["WeaponTreeSpellAddedPhysicalLowFireConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, tradeHash = 38894, }, + ["WeaponTreeSpellAddedPhysicalLowFireConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, tradeHash = 47310, }, + ["WeaponTreeSpellAddedPhysicalLowFireConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, tradeHash = 46411, }, + ["WeaponTreeSpellAddedPhysicalLowFireConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, tradeHash = 3386, }, + ["WeaponTreeSpellAddedPhysicalLowFireConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, modTags = { }, tradeHash = 24267, }, + ["WeaponTreeSpellAddedPhysical2hLowFireConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, tradeHash = 48760, }, + ["WeaponTreeSpellAddedPhysical2hLowFireConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, tradeHash = 26215, }, + ["WeaponTreeSpellAddedPhysical2hLowFireConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, tradeHash = 21032, }, + ["WeaponTreeSpellAddedPhysical2hLowFireConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, tradeHash = 63657, }, + ["WeaponTreeSpellAddedPhysical2hLowFireConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, modTags = { }, tradeHash = 3613, }, + ["WeaponTreeSpellAddedPhysicalLowColdConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, tradeHash = 2537, }, + ["WeaponTreeSpellAddedPhysicalLowColdConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, tradeHash = 17075, }, + ["WeaponTreeSpellAddedPhysicalLowColdConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, tradeHash = 55490, }, + ["WeaponTreeSpellAddedPhysicalLowColdConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, tradeHash = 10996, }, + ["WeaponTreeSpellAddedPhysicalLowColdConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, modTags = { }, tradeHash = 2252, }, + ["WeaponTreeSpellAddedPhysical2hLowColdConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, tradeHash = 10727, }, + ["WeaponTreeSpellAddedPhysical2hLowColdConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, tradeHash = 34534, }, + ["WeaponTreeSpellAddedPhysical2hLowColdConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, tradeHash = 15300, }, + ["WeaponTreeSpellAddedPhysical2hLowColdConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, tradeHash = 43554, }, + ["WeaponTreeSpellAddedPhysical2hLowColdConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, modTags = { }, tradeHash = 24082, }, + ["WeaponTreeSpellAddedPhysicalLowLightningConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, tradeHash = 5361, }, + ["WeaponTreeSpellAddedPhysicalLowLightningConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, tradeHash = 10049, }, + ["WeaponTreeSpellAddedPhysicalLowLightningConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, tradeHash = 34390, }, + ["WeaponTreeSpellAddedPhysicalLowLightningConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, tradeHash = 21381, }, + ["WeaponTreeSpellAddedPhysicalLowLightningConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, modTags = { }, tradeHash = 7125, }, + ["WeaponTreeSpellAddedPhysical2hLowLightningConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, tradeHash = 48103, }, + ["WeaponTreeSpellAddedPhysical2hLowLightningConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, tradeHash = 40271, }, + ["WeaponTreeSpellAddedPhysical2hLowLightningConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, tradeHash = 60447, }, + ["WeaponTreeSpellAddedPhysical2hLowLightningConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, tradeHash = 4189, }, + ["WeaponTreeSpellAddedPhysical2hLowLightningConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, modTags = { }, tradeHash = 53095, }, + ["WeaponTreeSpellAddedPhysicalLowChaosConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, tradeHash = 6968, }, + ["WeaponTreeSpellAddedPhysicalLowChaosConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, tradeHash = 41288, }, + ["WeaponTreeSpellAddedPhysicalLowChaosConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, tradeHash = 21473, }, + ["WeaponTreeSpellAddedPhysicalLowChaosConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, tradeHash = 47009, }, + ["WeaponTreeSpellAddedPhysicalLowChaosConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, modTags = { }, tradeHash = 64977, }, + ["WeaponTreeSpellAddedPhysical2hLowChaosConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, tradeHash = 36247, }, + ["WeaponTreeSpellAddedPhysical2hLowChaosConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, tradeHash = 65204, }, + ["WeaponTreeSpellAddedPhysical2hLowChaosConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, tradeHash = 29911, }, + ["WeaponTreeSpellAddedPhysical2hLowChaosConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, tradeHash = 60489, }, + ["WeaponTreeSpellAddedPhysical2hLowChaosConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, modTags = { }, tradeHash = 11109, }, + ["WeaponTreeSpellAddedPhysicalLowOverwhelm1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 55437, }, + ["WeaponTreeSpellAddedPhysicalLowOverwhelm2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 7879, }, + ["WeaponTreeSpellAddedPhysicalLowOverwhelm3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 29758, }, + ["WeaponTreeSpellAddedPhysicalLowOverwhelm4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, tradeHash = 36730, }, + ["WeaponTreeSpellAddedPhysicalLowOverwhelm5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, tradeHash = 54859, }, + ["WeaponTreeSpellAddedPhysical2hLowOverwhelm1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 63918, }, + ["WeaponTreeSpellAddedPhysical2hLowOverwhelm2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 28715, }, + ["WeaponTreeSpellAddedPhysical2hLowOverwhelm3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 17739, }, + ["WeaponTreeSpellAddedPhysical2hLowOverwhelm4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, tradeHash = 19601, }, + ["WeaponTreeSpellAddedPhysical2hLowOverwhelm5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, tradeHash = 56142, }, + ["WeaponTreeSpellAddedFireHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 35319, }, + ["WeaponTreeSpellAddedFireHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 6 to 10 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 46990, }, + ["WeaponTreeSpellAddedFireHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 12 to 18 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 4131, }, + ["WeaponTreeSpellAddedFireHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 19 to 30 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, tradeHash = 50658, }, + ["WeaponTreeSpellAddedFireHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 39 to 59 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, tradeHash = 63183, }, + ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 7 to 10 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 28272, }, + ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 11 to 17 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 34594, }, + ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 21 to 34 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 46484, }, + ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 37 to 55 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, tradeHash = 19083, }, + ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 73 to 109 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, tradeHash = 44944, }, + ["WeaponTreeSpellAddedFire1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 41540, }, + ["WeaponTreeSpellAddedFire2"] = { type = "Spawn", tier = 2, "Adds 5 to 7 Fire Damage to Spells", statOrder = { 1404 }, level = 26, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 31448, }, + ["WeaponTreeSpellAddedFire3"] = { type = "Spawn", tier = 3, "Adds 9 to 14 Fire Damage to Spells", statOrder = { 1404 }, level = 42, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 55254, }, + ["WeaponTreeSpellAddedFire4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Fire Damage to Spells", statOrder = { 1404 }, level = 62, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 35511, }, + ["WeaponTreeSpellAddedFire5"] = { type = "Spawn", tier = 5, "Adds 30 to 45 Fire Damage to Spells", statOrder = { 1404 }, level = 82, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, tradeHash = 8502, }, + ["WeaponTreeSpellAddedFire2h1"] = { type = "Spawn", tier = 1, "Adds 5 to 7 Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 63780, }, + ["WeaponTreeSpellAddedFire2h2"] = { type = "Spawn", tier = 2, "Adds 9 to 13 Fire Damage to Spells", statOrder = { 1404 }, level = 26, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 59188, }, + ["WeaponTreeSpellAddedFire2h3"] = { type = "Spawn", tier = 3, "Adds 16 to 26 Fire Damage to Spells", statOrder = { 1404 }, level = 42, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 10201, }, + ["WeaponTreeSpellAddedFire2h4"] = { type = "Spawn", tier = 4, "Adds 28 to 43 Fire Damage to Spells", statOrder = { 1404 }, level = 62, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 30193, }, + ["WeaponTreeSpellAddedFire2h5"] = { type = "Spawn", tier = 5, "Adds 56 to 84 Fire Damage to Spells", statOrder = { 1404 }, level = 82, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, tradeHash = 46855, }, + ["WeaponTreeSpellAddedFireLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1404, 2026 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 47615, }, + ["WeaponTreeSpellAddedFireLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1404, 2026 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 2663, }, + ["WeaponTreeSpellAddedFireLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 4 to 9 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1404, 2026 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 44375, }, + ["WeaponTreeSpellAddedFireLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 8 to 14 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1404, 2026 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, tradeHash = 56003, }, + ["WeaponTreeSpellAddedFireLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 18 to 28 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1404, 2026 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, tradeHash = 20146, }, + ["WeaponTreeSpellAddedFire2hLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1404, 2026 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 5887, }, + ["WeaponTreeSpellAddedFire2hLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1404, 2026 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 59541, }, + ["WeaponTreeSpellAddedFire2hLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 9 to 16 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1404, 2026 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 10877, }, + ["WeaponTreeSpellAddedFire2hLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 16 to 26 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1404, 2026 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, tradeHash = 30045, }, + ["WeaponTreeSpellAddedFire2hLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 34 to 51 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1404, 2026 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, tradeHash = 56432, }, + ["WeaponTreeSpellAddedFireLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 1 to 3 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 10, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 46218, }, + ["WeaponTreeSpellAddedFireLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 2 to 4 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 30, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 57645, }, + ["WeaponTreeSpellAddedFireLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 4 to 9 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 48, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 40760, }, + ["WeaponTreeSpellAddedFireLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 8 to 14 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 66, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, tradeHash = 51555, }, + ["WeaponTreeSpellAddedFireLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 18 to 28 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 84, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, tradeHash = 38110, }, + ["WeaponTreeSpellAddedFire2hLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 2 to 6 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 10, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 2354, }, + ["WeaponTreeSpellAddedFire2hLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 5 to 8 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 30, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 38526, }, + ["WeaponTreeSpellAddedFire2hLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 9 to 16 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 48, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 23898, }, + ["WeaponTreeSpellAddedFire2hLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 16 to 26 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 66, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, tradeHash = 35280, }, + ["WeaponTreeSpellAddedFire2hLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 34 to 51 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 84, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, tradeHash = 24211, }, + ["WeaponTreeSpellAddedColdHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 4180, }, + ["WeaponTreeSpellAddedColdHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 32431, }, + ["WeaponTreeSpellAddedColdHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 10 to 17 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 54352, }, + ["WeaponTreeSpellAddedColdHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 18 to 28 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, tradeHash = 64962, }, + ["WeaponTreeSpellAddedColdHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 37 to 56 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, tradeHash = 47547, }, + ["WeaponTreeSpellAddedCold2hHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 60772, }, + ["WeaponTreeSpellAddedCold2hHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 10 to 16 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 63835, }, + ["WeaponTreeSpellAddedCold2hHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 20 to 32 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 39641, }, + ["WeaponTreeSpellAddedCold2hHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 34 to 52 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, tradeHash = 33090, }, + ["WeaponTreeSpellAddedCold2hHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 68 to 103 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, tradeHash = 37311, }, + ["WeaponTreeSpellAddedCold1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 7221, }, + ["WeaponTreeSpellAddedCold2"] = { type = "Spawn", tier = 2, "Adds 3 to 7 Cold Damage to Spells", statOrder = { 1405 }, level = 26, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 27339, }, + ["WeaponTreeSpellAddedCold3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Cold Damage to Spells", statOrder = { 1405 }, level = 42, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 27792, }, + ["WeaponTreeSpellAddedCold4"] = { type = "Spawn", tier = 4, "Adds 14 to 21 Cold Damage to Spells", statOrder = { 1405 }, level = 62, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 12769, }, + ["WeaponTreeSpellAddedCold5"] = { type = "Spawn", tier = 5, "Adds 29 to 43 Cold Damage to Spells", statOrder = { 1405 }, level = 82, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, tradeHash = 60102, }, + ["WeaponTreeSpellAddedCold2h1"] = { type = "Spawn", tier = 1, "Adds 4 to 7 Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 25832, }, + ["WeaponTreeSpellAddedCold2h2"] = { type = "Spawn", tier = 2, "Adds 7 to 12 Cold Damage to Spells", statOrder = { 1405 }, level = 26, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 1750, }, + ["WeaponTreeSpellAddedCold2h3"] = { type = "Spawn", tier = 3, "Adds 15 to 24 Cold Damage to Spells", statOrder = { 1405 }, level = 42, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 60600, }, + ["WeaponTreeSpellAddedCold2h4"] = { type = "Spawn", tier = 4, "Adds 26 to 40 Cold Damage to Spells", statOrder = { 1405 }, level = 62, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 26963, }, + ["WeaponTreeSpellAddedCold2h5"] = { type = "Spawn", tier = 5, "Adds 53 to 79 Cold Damage to Spells", statOrder = { 1405 }, level = 82, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, tradeHash = 50869, }, + ["WeaponTreeSpellAddedColdLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1405, 2029 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 4889, }, + ["WeaponTreeSpellAddedColdLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1405, 2029 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 56717, }, + ["WeaponTreeSpellAddedColdLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 4 to 8 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1405, 2029 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 31320, }, + ["WeaponTreeSpellAddedColdLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 8 to 14 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1405, 2029 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, tradeHash = 25836, }, + ["WeaponTreeSpellAddedColdLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 17 to 25 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1405, 2029 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, tradeHash = 62311, }, + ["WeaponTreeSpellAddedCold2hLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1405, 2029 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 41494, }, + ["WeaponTreeSpellAddedCold2hLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1405, 2029 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 44622, }, + ["WeaponTreeSpellAddedCold2hLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 9 to 15 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1405, 2029 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 5961, }, + ["WeaponTreeSpellAddedCold2hLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 16 to 25 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1405, 2029 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, tradeHash = 27558, }, + ["WeaponTreeSpellAddedCold2hLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 32 to 47 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1405, 2029 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, tradeHash = 59529, }, + ["WeaponTreeSpellAddedColdLowCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1405, 1446 }, level = 10, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 53496, }, + ["WeaponTreeSpellAddedColdLowCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1405, 1446 }, level = 30, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 18814, }, + ["WeaponTreeSpellAddedColdLowCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 4 to 8 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1405, 1446 }, level = 48, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 55477, }, + ["WeaponTreeSpellAddedColdLowCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 8 to 14 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1405, 1446 }, level = 66, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, tradeHash = 10387, }, + ["WeaponTreeSpellAddedColdLowCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 17 to 25 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1405, 1446 }, level = 84, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, tradeHash = 12029, }, + ["WeaponTreeSpellAddedCold2hLowCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1405, 1446 }, level = 10, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 60122, }, + ["WeaponTreeSpellAddedCold2hLowCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1405, 1446 }, level = 30, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 46434, }, + ["WeaponTreeSpellAddedCold2hLowCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 9 to 15 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1405, 1446 }, level = 48, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 64064, }, + ["WeaponTreeSpellAddedCold2hLowCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 16 to 25 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1405, 1446 }, level = 66, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, tradeHash = 3471, }, + ["WeaponTreeSpellAddedCold2hLowCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 32 to 47 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1405, 1446 }, level = 84, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, tradeHash = 65047, }, + ["WeaponTreeSpellAddedLightningHighDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 9 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 9156, }, + ["WeaponTreeSpellAddedLightningHighDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 15 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 16838, }, + ["WeaponTreeSpellAddedLightningHighDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 1 to 29 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 20004, }, + ["WeaponTreeSpellAddedLightningHighDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 2 to 48 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, tradeHash = 13771, }, + ["WeaponTreeSpellAddedLightningHighDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 5 to 94 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, tradeHash = 34675, }, + ["WeaponTreeSpellAddedLightning2hHighDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 16 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 60934, }, + ["WeaponTreeSpellAddedLightning2hHighDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 28 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 51545, }, + ["WeaponTreeSpellAddedLightning2hHighDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 2 to 53 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 37788, }, + ["WeaponTreeSpellAddedLightning2hHighDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 4 to 88 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, tradeHash = 9920, }, + ["WeaponTreeSpellAddedLightning2hHighDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 9 to 173 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, tradeHash = 18073, }, + ["WeaponTreeSpellAddedLightning1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 14289, }, + ["WeaponTreeSpellAddedLightning2"] = { type = "Spawn", tier = 2, "Adds 1 to 12 Lightning Damage to Spells", statOrder = { 1406 }, level = 26, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 44428, }, + ["WeaponTreeSpellAddedLightning3"] = { type = "Spawn", tier = 3, "Adds 1 to 22 Lightning Damage to Spells", statOrder = { 1406 }, level = 42, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 60651, }, + ["WeaponTreeSpellAddedLightning4"] = { type = "Spawn", tier = 4, "Adds 2 to 37 Lightning Damage to Spells", statOrder = { 1406 }, level = 62, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 43163, }, + ["WeaponTreeSpellAddedLightning5"] = { type = "Spawn", tier = 5, "Adds 4 to 72 Lightning Damage to Spells", statOrder = { 1406 }, level = 82, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, tradeHash = 52539, }, + ["WeaponTreeSpellAddedLightning2h1"] = { type = "Spawn", tier = 1, "Adds 1 to 12 Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 34147, }, + ["WeaponTreeSpellAddedLightning2h2"] = { type = "Spawn", tier = 2, "Adds 1 to 21 Lightning Damage to Spells", statOrder = { 1406 }, level = 26, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 44958, }, + ["WeaponTreeSpellAddedLightning2h3"] = { type = "Spawn", tier = 3, "Adds 2 to 41 Lightning Damage to Spells", statOrder = { 1406 }, level = 42, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 53189, }, + ["WeaponTreeSpellAddedLightning2h4"] = { type = "Spawn", tier = 4, "Adds 3 to 68 Lightning Damage to Spells", statOrder = { 1406 }, level = 62, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 15896, }, + ["WeaponTreeSpellAddedLightning2h5"] = { type = "Spawn", tier = 5, "Adds 7 to 133 Lightning Damage to Spells", statOrder = { 1406 }, level = 82, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, tradeHash = 3424, }, + ["WeaponTreeSpellAddedLightningLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1406, 2033 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 12692, }, + ["WeaponTreeSpellAddedLightningLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 7 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1406, 2033 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 25397, }, + ["WeaponTreeSpellAddedLightningLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 14 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1406, 2033 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 8885, }, + ["WeaponTreeSpellAddedLightningLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 2 to 22 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1406, 2033 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, tradeHash = 5491, }, + ["WeaponTreeSpellAddedLightningLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 2 to 43 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1406, 2033 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, tradeHash = 3496, }, + ["WeaponTreeSpellAddedLightning2hLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 7 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1406, 2033 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 59835, }, + ["WeaponTreeSpellAddedLightning2hLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 13 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1406, 2033 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 40676, }, + ["WeaponTreeSpellAddedLightning2hLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 24 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1406, 2033 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 31739, }, + ["WeaponTreeSpellAddedLightning2hLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 41 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1406, 2033 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, tradeHash = 2961, }, + ["WeaponTreeSpellAddedLightning2hLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 4 to 80 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1406, 2033 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, tradeHash = 22429, }, + ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 10, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 61845, }, + ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 7 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 30, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 33978, }, + ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 14 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 48, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 57431, }, + ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 2 to 22 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 66, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, tradeHash = 40017, }, + ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 2 to 43 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 84, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, tradeHash = 46439, }, + ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 7 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 10, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 9832, }, + ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 13 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 30, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 43267, }, + ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 24 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 48, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 28686, }, + ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 41 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 66, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, tradeHash = 31432, }, + ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 4 to 80 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 84, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, tradeHash = 30612, }, + ["WeaponTreeSpellAddedChaosHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1407, 1571 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 62856, }, + ["WeaponTreeSpellAddedChaosHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 5 to 7 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1407, 1571 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 9716, }, + ["WeaponTreeSpellAddedChaosHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1407, 1571 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 49298, }, + ["WeaponTreeSpellAddedChaosHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 14 to 22 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1407, 1571 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, tradeHash = 54382, }, + ["WeaponTreeSpellAddedChaosHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 28 to 42 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1407, 1571 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, tradeHash = 17425, }, + ["WeaponTreeSpellAddedChaos2hHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 4 to 7 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1407, 1571 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 9388, }, + ["WeaponTreeSpellAddedChaos2hHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 7 to 12 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1407, 1571 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 31054, }, + ["WeaponTreeSpellAddedChaos2hHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 14 to 22 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1407, 1571 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 48564, }, + ["WeaponTreeSpellAddedChaos2hHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 24 to 37 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1407, 1571 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, tradeHash = 60066, }, + ["WeaponTreeSpellAddedChaos2hHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 47 to 71 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1407, 1571 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, tradeHash = 32924, }, + ["WeaponTreeSpellAddedChaos1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage to Spells", statOrder = { 1407 }, level = 8, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 34956, }, + ["WeaponTreeSpellAddedChaos2"] = { type = "Spawn", tier = 2, "Adds 2 to 6 Chaos Damage to Spells", statOrder = { 1407 }, level = 28, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 60686, }, + ["WeaponTreeSpellAddedChaos3"] = { type = "Spawn", tier = 3, "Adds 6 to 10 Chaos Damage to Spells", statOrder = { 1407 }, level = 44, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 50449, }, + ["WeaponTreeSpellAddedChaos4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Chaos Damage to Spells", statOrder = { 1407 }, level = 70, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, tradeHash = 13309, }, + ["WeaponTreeSpellAddedChaos5"] = { type = "Spawn", tier = 5, "Adds 21 to 33 Chaos Damage to Spells", statOrder = { 1407 }, level = 85, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, tradeHash = 57471, }, + ["WeaponTreeSpellAddedChaos2h1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Chaos Damage to Spells", statOrder = { 1407 }, level = 8, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 8001, }, + ["WeaponTreeSpellAddedChaos2h2"] = { type = "Spawn", tier = 2, "Adds 5 to 10 Chaos Damage to Spells", statOrder = { 1407 }, level = 28, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 44609, }, + ["WeaponTreeSpellAddedChaos2h3"] = { type = "Spawn", tier = 3, "Adds 10 to 17 Chaos Damage to Spells", statOrder = { 1407 }, level = 44, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 15671, }, + ["WeaponTreeSpellAddedChaos2h4"] = { type = "Spawn", tier = 4, "Adds 18 to 28 Chaos Damage to Spells", statOrder = { 1407 }, level = 70, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, tradeHash = 60397, }, + ["WeaponTreeSpellAddedChaos2h5"] = { type = "Spawn", tier = 5, "Adds 36 to 55 Chaos Damage to Spells", statOrder = { 1407 }, level = 85, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, tradeHash = 18508, }, + ["WeaponTreeSpellAddedChaosLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, tradeHash = 43950, }, + ["WeaponTreeSpellAddedChaosLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, tradeHash = 1270, }, + ["WeaponTreeSpellAddedChaosLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, tradeHash = 65446, }, + ["WeaponTreeSpellAddedChaosLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, tradeHash = 11624, }, + ["WeaponTreeSpellAddedChaosLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, tradeHash = 24863, }, + ["WeaponTreeSpellAddedChaos2hLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, tradeHash = 49656, }, + ["WeaponTreeSpellAddedChaos2hLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, tradeHash = 6224, }, + ["WeaponTreeSpellAddedChaos2hLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, tradeHash = 44112, }, + ["WeaponTreeSpellAddedChaos2hLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, tradeHash = 44129, }, + ["WeaponTreeSpellAddedChaos2hLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, tradeHash = 65008, }, + ["WeaponTreeSpellAddedChaosLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, tradeHash = 19477, }, + ["WeaponTreeSpellAddedChaosLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, tradeHash = 32325, }, + ["WeaponTreeSpellAddedChaosLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, tradeHash = 746, }, + ["WeaponTreeSpellAddedChaosLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, tradeHash = 18750, }, + ["WeaponTreeSpellAddedChaosLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, tradeHash = 34674, }, + ["WeaponTreeSpellAddedChaos2hLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, tradeHash = 22564, }, + ["WeaponTreeSpellAddedChaos2hLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, tradeHash = 51341, }, + ["WeaponTreeSpellAddedChaos2hLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, tradeHash = 5900, }, + ["WeaponTreeSpellAddedChaos2hLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, tradeHash = 39104, }, + ["WeaponTreeSpellAddedChaos2hLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, tradeHash = 16291, }, + ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "14% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 1, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 30749, }, + ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "21% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 21, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 37032, }, + ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "28% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 46, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 50952, }, + ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "35% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 65, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 375, 0, 375, 375, 375, 0 }, modTags = { }, tradeHash = 20811, }, + ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "42% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 77, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 187, 0, 187, 187, 187, 0 }, modTags = { }, tradeHash = 51994, }, + ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "22% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 1, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 39115, }, + ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "34% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 21, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 36040, }, + ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "45% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 46, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 34251, }, + ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "56% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 65, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, modTags = { }, tradeHash = 11734, }, + ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "68% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 77, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 187, 0, 187, 0 }, modTags = { }, tradeHash = 61669, }, + ["SpellDamage1"] = { tier = 1, "(3-7)% increased Spell Damage", statOrder = { 1223 }, level = 5, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 55287, }, + ["SpellDamage2"] = { tier = 2, "(8-12)% increased Spell Damage", statOrder = { 1223 }, level = 20, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 56135, }, + ["SpellDamage3"] = { tier = 3, "(13-17)% increased Spell Damage", statOrder = { 1223 }, level = 38, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 59759, }, + ["SpellDamage4"] = { tier = 4, "(18-22)% increased Spell Damage", statOrder = { 1223 }, level = 56, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 1035, }, + ["SpellDamage5"] = { tier = 5, "(23-26)% increased Spell Damage", statOrder = { 1223 }, level = 76, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 50290, }, + ["WeaponTreeSpellDamage2h1"] = { type = "Spawn", tier = 1, "16% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0, 1500, 0 }, modTags = { }, tradeHash = 55410, }, + ["WeaponTreeSpellDamage2h2"] = { type = "Spawn", tier = 2, "24% increased Spell Damage", statOrder = { 1223 }, level = 21, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0, 1500, 0 }, modTags = { }, tradeHash = 51830, }, + ["WeaponTreeSpellDamage2h3"] = { type = "Spawn", tier = 3, "32% increased Spell Damage", statOrder = { 1223 }, level = 46, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0, 1500, 0 }, modTags = { }, tradeHash = 56515, }, + ["WeaponTreeSpellDamage2h4"] = { type = "Spawn", tier = 4, "40% increased Spell Damage", statOrder = { 1223 }, level = 65, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, tradeHash = 42864, }, + ["WeaponTreeSpellDamage2h5"] = { type = "Spawn", tier = 5, "48% increased Spell Damage", statOrder = { 1223 }, level = 77, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, modTags = { }, tradeHash = 29079, }, + ["WeaponTreeSpellDamageLowMana1"] = { type = "Spawn", tier = 1, "7% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1223, 1580 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, tradeHash = 60047, }, + ["WeaponTreeSpellDamageLowMana2"] = { type = "Spawn", tier = 2, "10% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1223, 1580 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, tradeHash = 9319, }, + ["WeaponTreeSpellDamageLowMana3"] = { type = "Spawn", tier = 3, "13% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1223, 1580 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, tradeHash = 39067, }, + ["WeaponTreeSpellDamageLowMana4"] = { type = "Spawn", tier = 4, "17% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1223, 1580 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 375, 0, 375, 375, 375, 0 }, modTags = { }, tradeHash = 14939, }, + ["WeaponTreeSpellDamageLowMana5"] = { type = "Spawn", tier = 5, "20% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1223, 1580 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 187, 0, 187, 187, 187, 0 }, modTags = { }, tradeHash = 44978, }, + ["WeaponTreeSpellDamage2hLowMana1"] = { type = "Spawn", tier = 1, "11% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1223, 1580 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, tradeHash = 33931, }, + ["WeaponTreeSpellDamage2hLowMana2"] = { type = "Spawn", tier = 2, "16% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1223, 1580 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, tradeHash = 17085, }, + ["WeaponTreeSpellDamage2hLowMana3"] = { type = "Spawn", tier = 3, "21% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1223, 1580 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, tradeHash = 55828, }, + ["WeaponTreeSpellDamage2hLowMana4"] = { type = "Spawn", tier = 4, "26% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1223, 1580 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, modTags = { }, tradeHash = 13328, }, + ["WeaponTreeSpellDamage2hLowMana5"] = { type = "Spawn", tier = 5, "32% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1223, 1580 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 187, 0, 187, 0 }, modTags = { }, tradeHash = 23877, }, + ["WeaponTreeSpellDamageLowEnergyShield1"] = { type = "Spawn", tier = 1, "7% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, tradeHash = 31155, }, + ["WeaponTreeSpellDamageLowEnergyShield2"] = { type = "Spawn", tier = 2, "10% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, tradeHash = 19412, }, + ["WeaponTreeSpellDamageLowEnergyShield3"] = { type = "Spawn", tier = 3, "13% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, tradeHash = 48868, }, + ["WeaponTreeSpellDamageLowEnergyShield4"] = { type = "Spawn", tier = 4, "17% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 375, 0, 375, 375, 375, 0 }, modTags = { }, tradeHash = 63699, }, + ["WeaponTreeSpellDamageLowEnergyShield5"] = { type = "Spawn", tier = 5, "20% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 187, 0, 187, 187, 187, 0 }, modTags = { }, tradeHash = 56908, }, + ["WeaponTreeSpellDamage2hLowEnergyShield1"] = { type = "Spawn", tier = 1, "11% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, tradeHash = 43893, }, + ["WeaponTreeSpellDamage2hLowEnergyShield2"] = { type = "Spawn", tier = 2, "16% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, tradeHash = 50192, }, + ["WeaponTreeSpellDamage2hLowEnergyShield3"] = { type = "Spawn", tier = 3, "21% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, tradeHash = 41446, }, + ["WeaponTreeSpellDamage2hLowEnergyShield4"] = { type = "Spawn", tier = 4, "26% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, modTags = { }, tradeHash = 22342, }, + ["WeaponTreeSpellDamage2hLowEnergyShield5"] = { type = "Spawn", tier = 5, "32% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 187, 0, 187, 0 }, modTags = { }, tradeHash = 12305, }, + ["WeaponTreeDamageOverTimeHighLifeRecoveryRate1"] = { type = "Spawn", tier = 1, "14% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 5, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 7148, }, + ["WeaponTreeDamageOverTimeHighLifeRecoveryRate2"] = { type = "Spawn", tier = 2, "21% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 23, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 41615, }, + ["WeaponTreeDamageOverTimeHighLifeRecoveryRate3"] = { type = "Spawn", tier = 3, "28% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 51, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 4920, }, + ["WeaponTreeDamageOverTimeHighLifeRecoveryRate4"] = { type = "Spawn", tier = 4, "35% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 69, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 32414, }, + ["WeaponTreeDamageOverTimeHighLifeRecoveryRate5"] = { type = "Spawn", tier = 5, "42% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 80, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, tradeHash = 33745, }, + ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate1"] = { type = "Spawn", tier = 1, "22% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 5, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 2644, }, + ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate2"] = { type = "Spawn", tier = 2, "34% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 23, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 39139, }, + ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate3"] = { type = "Spawn", tier = 3, "45% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 51, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 22683, }, + ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate4"] = { type = "Spawn", tier = 4, "56% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 69, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 40014, }, + ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate5"] = { type = "Spawn", tier = 5, "68% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 80, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, tradeHash = 27694, }, + ["WeaponTreeDamageOverTime1"] = { type = "Spawn", tier = 1, "10% increased Damage over Time", statOrder = { 1210 }, level = 5, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 4268, }, + ["WeaponTreeDamageOverTime2"] = { type = "Spawn", tier = 2, "15% increased Damage over Time", statOrder = { 1210 }, level = 23, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 63889, }, + ["WeaponTreeDamageOverTime3"] = { type = "Spawn", tier = 3, "20% increased Damage over Time", statOrder = { 1210 }, level = 51, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 49233, }, + ["WeaponTreeDamageOverTime4"] = { type = "Spawn", tier = 4, "25% increased Damage over Time", statOrder = { 1210 }, level = 69, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 40471, }, + ["WeaponTreeDamageOverTime5"] = { type = "Spawn", tier = 5, "30% increased Damage over Time", statOrder = { 1210 }, level = 80, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 46628, }, + ["WeaponTreeDamageOverTime2h1"] = { type = "Spawn", tier = 1, "16% increased Damage over Time", statOrder = { 1210 }, level = 5, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 26817, }, + ["WeaponTreeDamageOverTime2h2"] = { type = "Spawn", tier = 2, "24% increased Damage over Time", statOrder = { 1210 }, level = 23, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 29817, }, + ["WeaponTreeDamageOverTime2h3"] = { type = "Spawn", tier = 3, "32% increased Damage over Time", statOrder = { 1210 }, level = 51, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 39435, }, + ["WeaponTreeDamageOverTime2h4"] = { type = "Spawn", tier = 4, "40% increased Damage over Time", statOrder = { 1210 }, level = 69, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 52142, }, + ["WeaponTreeDamageOverTime2h5"] = { type = "Spawn", tier = 5, "48% increased Damage over Time", statOrder = { 1210 }, level = 80, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 44265, }, + ["WeaponTreeDamageOverTimeLowSkillEffectDuration1"] = { type = "Spawn", tier = 1, "7% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 5, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 65319, }, + ["WeaponTreeDamageOverTimeLowSkillEffectDuration2"] = { type = "Spawn", tier = 2, "10% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 23, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 26674, }, + ["WeaponTreeDamageOverTimeLowSkillEffectDuration3"] = { type = "Spawn", tier = 3, "13% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 51, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 59741, }, + ["WeaponTreeDamageOverTimeLowSkillEffectDuration4"] = { type = "Spawn", tier = 4, "17% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 69, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 17079, }, + ["WeaponTreeDamageOverTimeLowSkillEffectDuration5"] = { type = "Spawn", tier = 5, "20% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 80, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, tradeHash = 34075, }, + ["WeaponTreeDamageOverTime2hLowSkillEffectDuration1"] = { type = "Spawn", tier = 1, "11% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 5, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 6568, }, + ["WeaponTreeDamageOverTime2hLowSkillEffectDuration2"] = { type = "Spawn", tier = 2, "16% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 23, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 61298, }, + ["WeaponTreeDamageOverTime2hLowSkillEffectDuration3"] = { type = "Spawn", tier = 3, "21% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 51, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 48145, }, + ["WeaponTreeDamageOverTime2hLowSkillEffectDuration4"] = { type = "Spawn", tier = 4, "26% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 69, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 28656, }, + ["WeaponTreeDamageOverTime2hLowSkillEffectDuration5"] = { type = "Spawn", tier = 5, "32% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 80, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, tradeHash = 42376, }, + ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou1"] = { type = "Spawn", tier = 1, "7% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 5, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 37213, }, + ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou2"] = { type = "Spawn", tier = 2, "10% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 23, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 13421, }, + ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou3"] = { type = "Spawn", tier = 3, "13% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 51, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 17039, }, + ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou4"] = { type = "Spawn", tier = 4, "17% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 69, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 25657, }, + ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou5"] = { type = "Spawn", tier = 5, "20% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 80, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, tradeHash = 29166, }, + ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou1"] = { type = "Spawn", tier = 1, "11% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 5, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 43198, }, + ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou2"] = { type = "Spawn", tier = 2, "16% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 23, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 40937, }, + ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou3"] = { type = "Spawn", tier = 3, "21% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 51, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, tradeHash = 866, }, + ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou4"] = { type = "Spawn", tier = 4, "26% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 69, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, tradeHash = 5261, }, + ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou5"] = { type = "Spawn", tier = 5, "32% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 80, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, tradeHash = 52801, }, + ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 33074, }, + ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 7 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 7163, }, + ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 8 to 14 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 5688, }, + ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 14 to 22 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 33685, }, + ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 28 to 42 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 46564, }, + ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 7 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 6782, }, + ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 7 to 12 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 27604, }, + ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 14 to 22 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 49079, }, + ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 24 to 37 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 21042, }, + ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 47 to 71 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 45709, }, + ["WeaponTreeMinionAddedPhysical1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Physical Damage", statOrder = { 3773 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 59259, }, + ["WeaponTreeMinionAddedPhysical2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 6 additional Physical Damage", statOrder = { 3773 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 63983, }, + ["WeaponTreeMinionAddedPhysical3"] = { type = "Spawn", tier = 3, "Minions deal 6 to 10 additional Physical Damage", statOrder = { 3773 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 3117, }, + ["WeaponTreeMinionAddedPhysical4"] = { type = "Spawn", tier = 4, "Minions deal 11 to 17 additional Physical Damage", statOrder = { 3773 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 22812, }, + ["WeaponTreeMinionAddedPhysical5"] = { type = "Spawn", tier = 5, "Minions deal 21 to 33 additional Physical Damage", statOrder = { 3773 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 37830, }, + ["WeaponTreeMinionAddedPhysical2h1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Physical Damage", statOrder = { 3773 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 14494, }, + ["WeaponTreeMinionAddedPhysical2h2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 10 additional Physical Damage", statOrder = { 3773 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 43725, }, + ["WeaponTreeMinionAddedPhysical2h3"] = { type = "Spawn", tier = 3, "Minions deal 10 to 17 additional Physical Damage", statOrder = { 3773 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 65111, }, + ["WeaponTreeMinionAddedPhysical2h4"] = { type = "Spawn", tier = 4, "Minions deal 18 to 28 additional Physical Damage", statOrder = { 3773 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 58965, }, + ["WeaponTreeMinionAddedPhysical2h5"] = { type = "Spawn", tier = 5, "Minions deal 36 to 55 additional Physical Damage", statOrder = { 3773 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 43619, }, + ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1956, 3773 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 41068, }, + ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 2 to 4 additional Physical Damage", statOrder = { 1956, 3773 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 8324, }, + ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 4 to 6 additional Physical Damage", statOrder = { 1956, 3773 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 32417, }, + ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 6 to 10 additional Physical Damage", statOrder = { 1956, 3773 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, tradeHash = 5529, }, + ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 13 to 20 additional Physical Damage", statOrder = { 1956, 3773 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, tradeHash = 31636, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1956, 3773 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 48387, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 3 to 6 additional Physical Damage", statOrder = { 1956, 3773 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 64900, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 7 to 10 additional Physical Damage", statOrder = { 1956, 3773 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 25659, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 11 to 17 additional Physical Damage", statOrder = { 1956, 3773 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, tradeHash = 5131, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 22 to 33 additional Physical Damage", statOrder = { 1956, 3773 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, tradeHash = 5011, }, + ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1958, 3773 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 46527, }, + ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 2 to 4 additional Physical Damage", statOrder = { 1958, 3773 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 19471, }, + ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 4 to 6 additional Physical Damage", statOrder = { 1958, 3773 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 38672, }, + ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 6 to 10 additional Physical Damage", statOrder = { 1958, 3773 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, tradeHash = 16912, }, + ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 13 to 20 additional Physical Damage", statOrder = { 1958, 3773 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, tradeHash = 52144, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1958, 3773 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 63303, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 3 to 6 additional Physical Damage", statOrder = { 1958, 3773 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 55703, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 7 to 10 additional Physical Damage", statOrder = { 1958, 3773 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 61396, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 11 to 17 additional Physical Damage", statOrder = { 1958, 3773 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, tradeHash = 34959, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 22 to 33 additional Physical Damage", statOrder = { 1958, 3773 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, tradeHash = 30377, }, + ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1960, 3773 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 34280, }, + ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 2 to 4 additional Physical Damage", statOrder = { 1960, 3773 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 16704, }, + ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 4 to 6 additional Physical Damage", statOrder = { 1960, 3773 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 54326, }, + ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 6 to 10 additional Physical Damage", statOrder = { 1960, 3773 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, tradeHash = 35240, }, + ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 13 to 20 additional Physical Damage", statOrder = { 1960, 3773 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, tradeHash = 54298, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1960, 3773 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 28694, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 3 to 6 additional Physical Damage", statOrder = { 1960, 3773 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 49124, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 7 to 10 additional Physical Damage", statOrder = { 1960, 3773 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 32059, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 11 to 17 additional Physical Damage", statOrder = { 1960, 3773 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, tradeHash = 51988, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 22 to 33 additional Physical Damage", statOrder = { 1960, 3773 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, tradeHash = 25789, }, + ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1963, 3773 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 49790, }, + ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 2 to 4 additional Physical Damage", statOrder = { 1963, 3773 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 48927, }, + ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 4 to 6 additional Physical Damage", statOrder = { 1963, 3773 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 6668, }, + ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 6 to 10 additional Physical Damage", statOrder = { 1963, 3773 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, tradeHash = 58472, }, + ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 13 to 20 additional Physical Damage", statOrder = { 1963, 3773 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, tradeHash = 9962, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1963, 3773 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 37617, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 3 to 6 additional Physical Damage", statOrder = { 1963, 3773 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 22872, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 7 to 10 additional Physical Damage", statOrder = { 1963, 3773 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 13797, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 11 to 17 additional Physical Damage", statOrder = { 1963, 3773 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, tradeHash = 47484, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 22 to 33 additional Physical Damage", statOrder = { 1963, 3773 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, tradeHash = 33929, }, + ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 55101, }, + ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 4 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 14291, }, + ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm3"] = { type = "Spawn", tier = 3, "Minions deal 4 to 6 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 18189, }, + ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm4"] = { type = "Spawn", tier = 4, "Minions deal 6 to 10 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 27773, }, + ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm5"] = { type = "Spawn", tier = 5, "Minions deal 13 to 20 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 33356, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 427, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm2"] = { type = "Spawn", tier = 2, "Minions deal 3 to 6 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 45079, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm3"] = { type = "Spawn", tier = 3, "Minions deal 7 to 10 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 4647, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm4"] = { type = "Spawn", tier = 4, "Minions deal 11 to 17 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 7278, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm5"] = { type = "Spawn", tier = 5, "Minions deal 22 to 33 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 42224, }, + ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 6 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 58222, }, + ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 6 to 10 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 45922, }, + ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 12 to 18 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 911, }, + ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 19 to 30 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 18043, }, + ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 39 to 59 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 54492, }, + ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 7 to 10 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 3437, }, + ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 11 to 17 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 63882, }, + ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 21 to 34 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 7684, }, + ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 37 to 55 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 37266, }, + ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 73 to 109 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 31521, }, + ["WeaponTreeMinionAddedFire1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Fire Damage", statOrder = { 3771 }, level = 1, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 34723, }, + ["WeaponTreeMinionAddedFire2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 7 additional Fire Damage", statOrder = { 3771 }, level = 26, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 6871, }, + ["WeaponTreeMinionAddedFire3"] = { type = "Spawn", tier = 3, "Minions deal 9 to 14 additional Fire Damage", statOrder = { 3771 }, level = 42, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 57885, }, + ["WeaponTreeMinionAddedFire4"] = { type = "Spawn", tier = 4, "Minions deal 15 to 24 additional Fire Damage", statOrder = { 3771 }, level = 62, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 41258, }, + ["WeaponTreeMinionAddedFire5"] = { type = "Spawn", tier = 5, "Minions deal 30 to 45 additional Fire Damage", statOrder = { 3771 }, level = 82, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 50723, }, + ["WeaponTreeMinionAddedFire2h1"] = { type = "Spawn", tier = 1, "Minions deal 5 to 7 additional Fire Damage", statOrder = { 3771 }, level = 1, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 32288, }, + ["WeaponTreeMinionAddedFire2h2"] = { type = "Spawn", tier = 2, "Minions deal 9 to 13 additional Fire Damage", statOrder = { 3771 }, level = 26, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 37836, }, + ["WeaponTreeMinionAddedFire2h3"] = { type = "Spawn", tier = 3, "Minions deal 16 to 26 additional Fire Damage", statOrder = { 3771 }, level = 42, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 36159, }, + ["WeaponTreeMinionAddedFire2h4"] = { type = "Spawn", tier = 4, "Minions deal 28 to 43 additional Fire Damage", statOrder = { 3771 }, level = 62, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 39499, }, + ["WeaponTreeMinionAddedFire2h5"] = { type = "Spawn", tier = 5, "Minions deal 56 to 84 additional Fire Damage", statOrder = { 3771 }, level = 82, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 11819, }, + ["WeaponTreeMinionAddedFireLowMinionIgniteChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3771, 9285 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 57934, }, + ["WeaponTreeMinionAddedFireLowMinionIgniteChance2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 4 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3771, 9285 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 797, }, + ["WeaponTreeMinionAddedFireLowMinionIgniteChance3"] = { type = "Spawn", tier = 3, "Minions deal 4 to 9 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3771, 9285 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 59717, }, + ["WeaponTreeMinionAddedFireLowMinionIgniteChance4"] = { type = "Spawn", tier = 4, "Minions deal 8 to 14 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3771, 9285 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 53810, }, + ["WeaponTreeMinionAddedFireLowMinionIgniteChance5"] = { type = "Spawn", tier = 5, "Minions deal 18 to 28 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3771, 9285 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 822, }, + ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 6 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3771, 9285 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 41177, }, + ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 8 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3771, 9285 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 38082, }, + ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance3"] = { type = "Spawn", tier = 3, "Minions deal 9 to 16 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3771, 9285 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 5094, }, + ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance4"] = { type = "Spawn", tier = 4, "Minions deal 16 to 26 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3771, 9285 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 60865, }, + ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance5"] = { type = "Spawn", tier = 5, "Minions deal 34 to 51 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3771, 9285 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 43972, }, + ["WeaponTreeMinionAddedFireLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Minions deal 1 to 3 additional Fire Damage", statOrder = { 58, 3771 }, level = 10, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 12622, }, + ["WeaponTreeMinionAddedFireLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Minions deal 2 to 4 additional Fire Damage", statOrder = { 58, 3771 }, level = 30, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 36252, }, + ["WeaponTreeMinionAddedFireLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Minions deal 4 to 9 additional Fire Damage", statOrder = { 58, 3771 }, level = 48, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 56874, }, + ["WeaponTreeMinionAddedFireLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Minions deal 8 to 14 additional Fire Damage", statOrder = { 58, 3771 }, level = 66, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 62282, }, + ["WeaponTreeMinionAddedFireLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Minions deal 18 to 28 additional Fire Damage", statOrder = { 58, 3771 }, level = 84, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 19454, }, + ["WeaponTreeMinionAddedFire2hLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Minions deal 2 to 6 additional Fire Damage", statOrder = { 58, 3771 }, level = 10, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 52919, }, + ["WeaponTreeMinionAddedFire2hLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Minions deal 5 to 8 additional Fire Damage", statOrder = { 58, 3771 }, level = 30, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 33621, }, + ["WeaponTreeMinionAddedFire2hLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Minions deal 9 to 16 additional Fire Damage", statOrder = { 58, 3771 }, level = 48, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 62448, }, + ["WeaponTreeMinionAddedFire2hLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Minions deal 16 to 26 additional Fire Damage", statOrder = { 58, 3771 }, level = 66, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 47035, }, + ["WeaponTreeMinionAddedFire2hLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Minions deal 34 to 51 additional Fire Damage", statOrder = { 58, 3771 }, level = 84, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 1865, }, + ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 6 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 1843, }, + ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 6 to 10 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 33210, }, + ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 12 to 18 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 32535, }, + ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 19 to 30 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 59606, }, + ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 39 to 59 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 40148, }, + ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 7 to 10 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 8327, }, + ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 11 to 17 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 7870, }, + ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 21 to 34 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 8684, }, + ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 37 to 55 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 50791, }, + ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 73 to 109 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 46632, }, + ["WeaponTreeMinionAddedCold1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 6 additional Cold Damage", statOrder = { 3770 }, level = 1, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 62339, }, + ["WeaponTreeMinionAddedCold2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 8 additional Cold Damage", statOrder = { 3770 }, level = 26, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 10108, }, + ["WeaponTreeMinionAddedCold3"] = { type = "Spawn", tier = 3, "Minions deal 10 to 17 additional Cold Damage", statOrder = { 3770 }, level = 42, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 58840, }, + ["WeaponTreeMinionAddedCold4"] = { type = "Spawn", tier = 4, "Minions deal 18 to 28 additional Cold Damage", statOrder = { 3770 }, level = 62, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 16557, }, + ["WeaponTreeMinionAddedCold5"] = { type = "Spawn", tier = 5, "Minions deal 37 to 56 additional Cold Damage", statOrder = { 3770 }, level = 82, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 56911, }, + ["WeaponTreeMinionAddedCold2h1"] = { type = "Spawn", tier = 1, "Minions deal 5 to 10 additional Cold Damage", statOrder = { 3770 }, level = 1, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 30083, }, + ["WeaponTreeMinionAddedCold2h2"] = { type = "Spawn", tier = 2, "Minions deal 10 to 16 additional Cold Damage", statOrder = { 3770 }, level = 26, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 51244, }, + ["WeaponTreeMinionAddedCold2h3"] = { type = "Spawn", tier = 3, "Minions deal 20 to 32 additional Cold Damage", statOrder = { 3770 }, level = 42, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 52471, }, + ["WeaponTreeMinionAddedCold2h4"] = { type = "Spawn", tier = 4, "Minions deal 34 to 52 additional Cold Damage", statOrder = { 3770 }, level = 62, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 32893, }, + ["WeaponTreeMinionAddedCold2h5"] = { type = "Spawn", tier = 5, "Minions deal 68 to 103 additional Cold Damage", statOrder = { 3770 }, level = 82, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 53931, }, + ["WeaponTreeMinionAddedColdLowMinionFreezeChance1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3770, 9282 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 23242, }, + ["WeaponTreeMinionAddedColdLowMinionFreezeChance2"] = { type = "Spawn", tier = 2, "Minions deal 3 to 7 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3770, 9282 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 18130, }, + ["WeaponTreeMinionAddedColdLowMinionFreezeChance3"] = { type = "Spawn", tier = 3, "Minions deal 8 to 14 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3770, 9282 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 58836, }, + ["WeaponTreeMinionAddedColdLowMinionFreezeChance4"] = { type = "Spawn", tier = 4, "Minions deal 14 to 21 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3770, 9282 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 22209, }, + ["WeaponTreeMinionAddedColdLowMinionFreezeChance5"] = { type = "Spawn", tier = 5, "Minions deal 29 to 43 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3770, 9282 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 43533, }, + ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 7 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3770, 9282 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 27276, }, + ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance2"] = { type = "Spawn", tier = 2, "Minions deal 7 to 12 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3770, 9282 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 33139, }, + ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance3"] = { type = "Spawn", tier = 3, "Minions deal 15 to 24 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3770, 9282 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 18164, }, + ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance4"] = { type = "Spawn", tier = 4, "Minions deal 26 to 40 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3770, 9282 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 2341, }, + ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance5"] = { type = "Spawn", tier = 5, "Minions deal 53 to 79 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3770, 9282 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 53920, }, + ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 10, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 31319, }, + ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 4 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 30, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 52578, }, + ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 4 to 8 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 48, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 64206, }, + ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 8 to 14 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 66, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 50744, }, + ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 17 to 25 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 84, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 46315, }, + ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 10, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 1715, }, + ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 8 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 30, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 48820, }, + ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 9 to 15 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 48, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 63368, }, + ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 16 to 25 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 66, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 58687, }, + ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 32 to 47 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 84, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 51658, }, + ["WeaponTreeMinionAddedLightningHighDamageTaken1"] = { type = "Spawn", tier = 1, "4% increased Lightning Damage taken", "Minions deal 1 to 9 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 47515, }, + ["WeaponTreeMinionAddedLightningHighDamageTaken2"] = { type = "Spawn", tier = 2, "4% increased Lightning Damage taken", "Minions deal 1 to 15 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 13733, }, + ["WeaponTreeMinionAddedLightningHighDamageTaken3"] = { type = "Spawn", tier = 3, "4% increased Lightning Damage taken", "Minions deal 1 to 29 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 41152, }, + ["WeaponTreeMinionAddedLightningHighDamageTaken4"] = { type = "Spawn", tier = 4, "4% increased Lightning Damage taken", "Minions deal 2 to 48 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 6571, }, + ["WeaponTreeMinionAddedLightningHighDamageTaken5"] = { type = "Spawn", tier = 5, "4% increased Lightning Damage taken", "Minions deal 5 to 94 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 18583, }, + ["WeaponTreeMinionAddedLightning2hHighDamageTaken1"] = { type = "Spawn", tier = 1, "6% increased Lightning Damage taken", "Minions deal 1 to 16 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 8560, }, + ["WeaponTreeMinionAddedLightning2hHighDamageTaken2"] = { type = "Spawn", tier = 2, "6% increased Lightning Damage taken", "Minions deal 1 to 28 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 15932, }, + ["WeaponTreeMinionAddedLightning2hHighDamageTaken3"] = { type = "Spawn", tier = 3, "6% increased Lightning Damage taken", "Minions deal 2 to 53 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 42416, }, + ["WeaponTreeMinionAddedLightning2hHighDamageTaken4"] = { type = "Spawn", tier = 4, "6% increased Lightning Damage taken", "Minions deal 4 to 88 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 32847, }, + ["WeaponTreeMinionAddedLightning2hHighDamageTaken5"] = { type = "Spawn", tier = 5, "6% increased Lightning Damage taken", "Minions deal 9 to 173 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 39733, }, + ["WeaponTreeMinionAddedLightning1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 6 additional Lightning Damage", statOrder = { 3772 }, level = 1, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 59256, }, + ["WeaponTreeMinionAddedLightning2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 12 additional Lightning Damage", statOrder = { 3772 }, level = 26, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 17346, }, + ["WeaponTreeMinionAddedLightning3"] = { type = "Spawn", tier = 3, "Minions deal 1 to 22 additional Lightning Damage", statOrder = { 3772 }, level = 42, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 1895, }, + ["WeaponTreeMinionAddedLightning4"] = { type = "Spawn", tier = 4, "Minions deal 2 to 37 additional Lightning Damage", statOrder = { 3772 }, level = 62, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 63645, }, + ["WeaponTreeMinionAddedLightning5"] = { type = "Spawn", tier = 5, "Minions deal 4 to 72 additional Lightning Damage", statOrder = { 3772 }, level = 82, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 5013, }, + ["WeaponTreeMinionAddedLightning2h1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 12 additional Lightning Damage", statOrder = { 3772 }, level = 1, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 562, }, + ["WeaponTreeMinionAddedLightning2h2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 21 additional Lightning Damage", statOrder = { 3772 }, level = 26, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 52863, }, + ["WeaponTreeMinionAddedLightning2h3"] = { type = "Spawn", tier = 3, "Minions deal 2 to 41 additional Lightning Damage", statOrder = { 3772 }, level = 42, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 33763, }, + ["WeaponTreeMinionAddedLightning2h4"] = { type = "Spawn", tier = 4, "Minions deal 3 to 68 additional Lightning Damage", statOrder = { 3772 }, level = 62, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 9845, }, + ["WeaponTreeMinionAddedLightning2h5"] = { type = "Spawn", tier = 5, "Minions deal 7 to 133 additional Lightning Damage", statOrder = { 3772 }, level = 82, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 51239, }, + ["WeaponTreeMinionAddedLightningLowMinionShockChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3772, 9287 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 12388, }, + ["WeaponTreeMinionAddedLightningLowMinionShockChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3772, 9287 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 7793, }, + ["WeaponTreeMinionAddedLightningLowMinionShockChance3"] = { type = "Spawn", tier = 3, "Minions deal 1 to 14 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3772, 9287 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 40344, }, + ["WeaponTreeMinionAddedLightningLowMinionShockChance4"] = { type = "Spawn", tier = 4, "Minions deal 2 to 22 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3772, 9287 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 44344, }, + ["WeaponTreeMinionAddedLightningLowMinionShockChance5"] = { type = "Spawn", tier = 5, "Minions deal 2 to 43 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3772, 9287 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 5604, }, + ["WeaponTreeMinionAddedLightning2hLowMinionShockChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3772, 9287 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 33325, }, + ["WeaponTreeMinionAddedLightning2hLowMinionShockChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 13 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3772, 9287 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 36608, }, + ["WeaponTreeMinionAddedLightning2hLowMinionShockChance3"] = { type = "Spawn", tier = 3, "Minions deal 2 to 24 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3772, 9287 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 27178, }, + ["WeaponTreeMinionAddedLightning2hLowMinionShockChance4"] = { type = "Spawn", tier = 4, "Minions deal 3 to 41 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3772, 9287 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 11377, }, + ["WeaponTreeMinionAddedLightning2hLowMinionShockChance5"] = { type = "Spawn", tier = 5, "Minions deal 4 to 80 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3772, 9287 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 42162, }, + ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 10, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 22221, }, + ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 30, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 62897, }, + ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 1 to 14 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 48, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 22229, }, + ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 2 to 22 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 66, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 52729, }, + ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 2 to 43 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 84, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 4446, }, + ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 10, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 46195, }, + ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 13 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 30, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 36637, }, + ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 2 to 24 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 48, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 64105, }, + ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 3 to 41 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 66, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 8376, }, + ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 4 to 80 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 84, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 5783, }, + ["WeaponTreeMinionAddedChaosHighReducedLife1"] = { type = "Spawn", tier = 1, "6% reduced maximum Life", "Minions deal 2 to 5 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 30920, }, + ["WeaponTreeMinionAddedChaosHighReducedLife2"] = { type = "Spawn", tier = 2, "6% reduced maximum Life", "Minions deal 5 to 7 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 63472, }, + ["WeaponTreeMinionAddedChaosHighReducedLife3"] = { type = "Spawn", tier = 3, "6% reduced maximum Life", "Minions deal 8 to 14 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 43892, }, + ["WeaponTreeMinionAddedChaosHighReducedLife4"] = { type = "Spawn", tier = 4, "6% reduced maximum Life", "Minions deal 14 to 22 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 60625, }, + ["WeaponTreeMinionAddedChaosHighReducedLife5"] = { type = "Spawn", tier = 5, "6% reduced maximum Life", "Minions deal 28 to 42 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, tradeHash = 50673, }, + ["WeaponTreeMinionAddedChaos2hHighReducedLife1"] = { type = "Spawn", tier = 1, "10% reduced maximum Life", "Minions deal 4 to 7 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 54863, }, + ["WeaponTreeMinionAddedChaos2hHighReducedLife2"] = { type = "Spawn", tier = 2, "10% reduced maximum Life", "Minions deal 7 to 12 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 38309, }, + ["WeaponTreeMinionAddedChaos2hHighReducedLife3"] = { type = "Spawn", tier = 3, "10% reduced maximum Life", "Minions deal 14 to 22 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 53218, }, + ["WeaponTreeMinionAddedChaos2hHighReducedLife4"] = { type = "Spawn", tier = 4, "10% reduced maximum Life", "Minions deal 24 to 37 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 30327, }, + ["WeaponTreeMinionAddedChaos2hHighReducedLife5"] = { type = "Spawn", tier = 5, "10% reduced maximum Life", "Minions deal 47 to 71 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, tradeHash = 10098, }, + ["WeaponTreeMinionAddedChaos1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Chaos Damage", statOrder = { 3769 }, level = 8, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 61815, }, + ["WeaponTreeMinionAddedChaos2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 6 additional Chaos Damage", statOrder = { 3769 }, level = 28, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 23448, }, + ["WeaponTreeMinionAddedChaos3"] = { type = "Spawn", tier = 3, "Minions deal 6 to 10 additional Chaos Damage", statOrder = { 3769 }, level = 44, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 13136, }, + ["WeaponTreeMinionAddedChaos4"] = { type = "Spawn", tier = 4, "Minions deal 11 to 17 additional Chaos Damage", statOrder = { 3769 }, level = 70, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 33317, }, + ["WeaponTreeMinionAddedChaos5"] = { type = "Spawn", tier = 5, "Minions deal 21 to 33 additional Chaos Damage", statOrder = { 3769 }, level = 85, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 56788, }, + ["WeaponTreeMinionAddedChaos2h1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Chaos Damage", statOrder = { 3769 }, level = 8, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 4365, }, + ["WeaponTreeMinionAddedChaos2h2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 10 additional Chaos Damage", statOrder = { 3769 }, level = 28, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 12328, }, + ["WeaponTreeMinionAddedChaos2h3"] = { type = "Spawn", tier = 3, "Minions deal 10 to 17 additional Chaos Damage", statOrder = { 3769 }, level = 44, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 30186, }, + ["WeaponTreeMinionAddedChaos2h4"] = { type = "Spawn", tier = 4, "Minions deal 18 to 28 additional Chaos Damage", statOrder = { 3769 }, level = 70, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 23081, }, + ["WeaponTreeMinionAddedChaos2h5"] = { type = "Spawn", tier = 5, "Minions deal 36 to 55 additional Chaos Damage", statOrder = { 3769 }, level = 85, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 44901, }, + ["WeaponTreeMinionAddedChaosLowMinionPoisonChance1"] = { type = "Spawn", tier = 1, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 1 to 3 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 32284, }, + ["WeaponTreeMinionAddedChaosLowMinionPoisonChance2"] = { type = "Spawn", tier = 2, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 2 to 4 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 64805, }, + ["WeaponTreeMinionAddedChaosLowMinionPoisonChance3"] = { type = "Spawn", tier = 3, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 4 to 6 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 58292, }, + ["WeaponTreeMinionAddedChaosLowMinionPoisonChance4"] = { type = "Spawn", tier = 4, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 6 to 10 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 29145, }, + ["WeaponTreeMinionAddedChaosLowMinionPoisonChance5"] = { type = "Spawn", tier = 5, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 13 to 20 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, tradeHash = 52766, }, + ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance1"] = { type = "Spawn", tier = 1, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 1 to 3 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 62323, }, + ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance2"] = { type = "Spawn", tier = 2, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 3 to 6 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 24625, }, + ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance3"] = { type = "Spawn", tier = 3, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 7 to 10 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 58150, }, + ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance4"] = { type = "Spawn", tier = 4, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 11 to 17 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 3733, }, + ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance5"] = { type = "Spawn", tier = 5, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 22 to 33 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, tradeHash = 53281, }, + ["WeaponTreeMinionAddedChaosLowChaosResistance1"] = { type = "Spawn", tier = 1, "+7% to Chaos Resistance", "Minions deal 1 to 3 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 28602, }, + ["WeaponTreeMinionAddedChaosLowChaosResistance2"] = { type = "Spawn", tier = 2, "+7% to Chaos Resistance", "Minions deal 2 to 4 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 1553, }, + ["WeaponTreeMinionAddedChaosLowChaosResistance3"] = { type = "Spawn", tier = 3, "+7% to Chaos Resistance", "Minions deal 4 to 6 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 9613, }, + ["WeaponTreeMinionAddedChaosLowChaosResistance4"] = { type = "Spawn", tier = 4, "+7% to Chaos Resistance", "Minions deal 6 to 10 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 40925, }, + ["WeaponTreeMinionAddedChaosLowChaosResistance5"] = { type = "Spawn", tier = 5, "+7% to Chaos Resistance", "Minions deal 13 to 20 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, tradeHash = 36962, }, + ["WeaponTreeMinionAddedChaos2hLowChaosResistance1"] = { type = "Spawn", tier = 1, "+13% to Chaos Resistance", "Minions deal 1 to 3 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 21582, }, + ["WeaponTreeMinionAddedChaos2hLowChaosResistance2"] = { type = "Spawn", tier = 2, "+13% to Chaos Resistance", "Minions deal 3 to 6 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 30096, }, + ["WeaponTreeMinionAddedChaos2hLowChaosResistance3"] = { type = "Spawn", tier = 3, "+13% to Chaos Resistance", "Minions deal 7 to 10 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, tradeHash = 5082, }, + ["WeaponTreeMinionAddedChaos2hLowChaosResistance4"] = { type = "Spawn", tier = 4, "+13% to Chaos Resistance", "Minions deal 11 to 17 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, tradeHash = 26937, }, + ["WeaponTreeMinionAddedChaos2hLowChaosResistance5"] = { type = "Spawn", tier = 5, "+13% to Chaos Resistance", "Minions deal 22 to 33 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, tradeHash = 46630, }, + ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 14% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 1, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 30633, }, + ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 21% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 21, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 21298, }, + ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 28% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 46, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 44376, }, + ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 35% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 65, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, tradeHash = 22075, }, + ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 42% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 77, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, tradeHash = 23715, }, + ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 22% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 1, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 27394, }, + ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 34% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 21, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 12091, }, + ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 45% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 46, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 64784, }, + ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 56% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 65, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, tradeHash = 63279, }, + ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 68% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 77, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, tradeHash = 26117, }, + ["WeaponTreeMinionDamage1"] = { type = "Spawn", tier = 1, "Minions deal 10% increased Damage", statOrder = { 1973 }, level = 1, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, tradeHash = 51892, }, + ["WeaponTreeMinionDamage2"] = { type = "Spawn", tier = 2, "Minions deal 15% increased Damage", statOrder = { 1973 }, level = 21, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, tradeHash = 17640, }, + ["WeaponTreeMinionDamage3"] = { type = "Spawn", tier = 3, "Minions deal 20% increased Damage", statOrder = { 1973 }, level = 46, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, tradeHash = 18058, }, + ["WeaponTreeMinionDamage4"] = { type = "Spawn", tier = 4, "Minions deal 25% increased Damage", statOrder = { 1973 }, level = 65, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, tradeHash = 35929, }, + ["WeaponTreeMinionDamage5"] = { type = "Spawn", tier = 5, "Minions deal 30% increased Damage", statOrder = { 1973 }, level = 77, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, tradeHash = 64645, }, + ["WeaponTreeMinionDamage2h1"] = { type = "Spawn", tier = 1, "Minions deal 16% increased Damage", statOrder = { 1973 }, level = 1, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, tradeHash = 20288, }, + ["WeaponTreeMinionDamage2h2"] = { type = "Spawn", tier = 2, "Minions deal 24% increased Damage", statOrder = { 1973 }, level = 21, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, tradeHash = 37459, }, + ["WeaponTreeMinionDamage2h3"] = { type = "Spawn", tier = 3, "Minions deal 32% increased Damage", statOrder = { 1973 }, level = 46, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, tradeHash = 26395, }, + ["WeaponTreeMinionDamage2h4"] = { type = "Spawn", tier = 4, "Minions deal 40% increased Damage", statOrder = { 1973 }, level = 65, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, tradeHash = 18110, }, + ["WeaponTreeMinionDamage2h5"] = { type = "Spawn", tier = 5, "Minions deal 48% increased Damage", statOrder = { 1973 }, level = 77, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, tradeHash = 30015, }, + ["WeaponTreeMinionDamageLowMana1"] = { type = "Spawn", tier = 1, "10% increased maximum Mana", "Minions deal 7% increased Damage", statOrder = { 1580, 1973 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, tradeHash = 53895, }, + ["WeaponTreeMinionDamageLowMana2"] = { type = "Spawn", tier = 2, "10% increased maximum Mana", "Minions deal 10% increased Damage", statOrder = { 1580, 1973 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, tradeHash = 21346, }, + ["WeaponTreeMinionDamageLowMana3"] = { type = "Spawn", tier = 3, "10% increased maximum Mana", "Minions deal 13% increased Damage", statOrder = { 1580, 1973 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, tradeHash = 26923, }, + ["WeaponTreeMinionDamageLowMana4"] = { type = "Spawn", tier = 4, "10% increased maximum Mana", "Minions deal 17% increased Damage", statOrder = { 1580, 1973 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, tradeHash = 27112, }, + ["WeaponTreeMinionDamageLowMana5"] = { type = "Spawn", tier = 5, "10% increased maximum Mana", "Minions deal 20% increased Damage", statOrder = { 1580, 1973 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, tradeHash = 50122, }, + ["WeaponTreeMinionDamage2hLowMana1"] = { type = "Spawn", tier = 1, "20% increased maximum Mana", "Minions deal 11% increased Damage", statOrder = { 1580, 1973 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, tradeHash = 37938, }, + ["WeaponTreeMinionDamage2hLowMana2"] = { type = "Spawn", tier = 2, "20% increased maximum Mana", "Minions deal 16% increased Damage", statOrder = { 1580, 1973 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, tradeHash = 3243, }, + ["WeaponTreeMinionDamage2hLowMana3"] = { type = "Spawn", tier = 3, "20% increased maximum Mana", "Minions deal 21% increased Damage", statOrder = { 1580, 1973 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, tradeHash = 43166, }, + ["WeaponTreeMinionDamage2hLowMana4"] = { type = "Spawn", tier = 4, "20% increased maximum Mana", "Minions deal 26% increased Damage", statOrder = { 1580, 1973 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, tradeHash = 50505, }, + ["WeaponTreeMinionDamage2hLowMana5"] = { type = "Spawn", tier = 5, "20% increased maximum Mana", "Minions deal 32% increased Damage", statOrder = { 1580, 1973 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, tradeHash = 6938, }, + ["WeaponTreeMinionDamageLowEnergyShield1"] = { type = "Spawn", tier = 1, "10% increased maximum Energy Shield", "Minions deal 7% increased Damage", statOrder = { 1561, 1973 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, tradeHash = 48424, }, + ["WeaponTreeMinionDamageLowEnergyShield2"] = { type = "Spawn", tier = 2, "10% increased maximum Energy Shield", "Minions deal 10% increased Damage", statOrder = { 1561, 1973 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, tradeHash = 16617, }, + ["WeaponTreeMinionDamageLowEnergyShield3"] = { type = "Spawn", tier = 3, "10% increased maximum Energy Shield", "Minions deal 13% increased Damage", statOrder = { 1561, 1973 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, tradeHash = 232, }, + ["WeaponTreeMinionDamageLowEnergyShield4"] = { type = "Spawn", tier = 4, "10% increased maximum Energy Shield", "Minions deal 17% increased Damage", statOrder = { 1561, 1973 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, tradeHash = 59080, }, + ["WeaponTreeMinionDamageLowEnergyShield5"] = { type = "Spawn", tier = 5, "10% increased maximum Energy Shield", "Minions deal 20% increased Damage", statOrder = { 1561, 1973 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, tradeHash = 33234, }, + ["WeaponTreeMinionDamage2hLowEnergyShield1"] = { type = "Spawn", tier = 1, "20% increased maximum Energy Shield", "Minions deal 11% increased Damage", statOrder = { 1561, 1973 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, tradeHash = 49338, }, + ["WeaponTreeMinionDamage2hLowEnergyShield2"] = { type = "Spawn", tier = 2, "20% increased maximum Energy Shield", "Minions deal 16% increased Damage", statOrder = { 1561, 1973 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, tradeHash = 37486, }, + ["WeaponTreeMinionDamage2hLowEnergyShield3"] = { type = "Spawn", tier = 3, "20% increased maximum Energy Shield", "Minions deal 21% increased Damage", statOrder = { 1561, 1973 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, tradeHash = 48152, }, + ["WeaponTreeMinionDamage2hLowEnergyShield4"] = { type = "Spawn", tier = 4, "20% increased maximum Energy Shield", "Minions deal 26% increased Damage", statOrder = { 1561, 1973 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, tradeHash = 7945, }, + ["WeaponTreeMinionDamage2hLowEnergyShield5"] = { type = "Spawn", tier = 5, "20% increased maximum Energy Shield", "Minions deal 32% increased Damage", statOrder = { 1561, 1973 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, tradeHash = 23283, }, + ["WeaponTreeBowGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Bow Gems", statOrder = { 178 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedBowGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 24421, }, + ["WeaponTreeMeleeGemLevel"] = { type = "Spawn", tier = 1, "+2 to Level of Socketed Melee Gems", statOrder = { 179 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMeleeGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "mace", "sword", "sceptre", "axe", "dagger", "claw", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 37197, }, + ["WeaponTreeMeleeGemLevel2h"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Melee Gems", statOrder = { 179 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMeleeGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 46570, }, + ["WeaponTreeSpellGemLevel"] = { type = "Spawn", tier = 1, "+2 to Level of Socketed Spell Gems", statOrder = { 174 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedSpellGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 23287, }, + ["WeaponTreeSpellGemLevel2h"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Spell Gems", statOrder = { 174 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedSpellGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, tradeHash = 39532, }, + ["WeaponTreeMinionGemLevel"] = { type = "Spawn", tier = 1, "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMinionGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 10000, 10000, 0 }, modTags = { }, tradeHash = 54268, }, + ["WeaponTreeMinionGemLevel2h"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMinionGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 10000, 10000, 0 }, modTags = { }, tradeHash = 49823, }, + ["WeaponTreeDexterityGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Dexterity Gems", statOrder = { 160 }, level = 45, group = "WeaponTreeLocalIncreaseSocketedDexterityGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 250, 250, 250, 500, 250, 0 }, modTags = { }, tradeHash = 53520, }, + ["WeaponTreeStrengthGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Strength Gems", statOrder = { 158 }, level = 45, group = "WeaponTreeLocalIncreaseSocketedStrengthGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 250, 250, 500, 250, 250, 0 }, modTags = { }, tradeHash = 27838, }, + ["WeaponTreeIntelliegenceGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Intelligence Gems", statOrder = { 161 }, level = 45, group = "WeaponTreeLocalIncreaseSocketedIntelligenceGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 500, 250, 250, 250, 250, 0 }, modTags = { }, tradeHash = 63087, }, + ["WeaponTreeAddedColdPerDex"] = { type = "MergeOnly", tier = 1, "Adds 1 to 3 Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4924 }, level = 60, group = "WeaponTreeAddedColdDamagePerDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 0, 500, 500, 500, 1000, 500, 0 }, modTags = { }, tradeHash = 17194, }, + ["WeaponTreeAddedColdPerDex2h"] = { type = "MergeOnly", tier = 1, "Adds 2 to 4 Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4924 }, level = 60, group = "WeaponTreeAddedColdDamagePerDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 0, 500, 500, 500, 1000, 500, 0 }, modTags = { }, tradeHash = 56001, }, + ["WeaponTreeAddedFirePerStr"] = { type = "MergeOnly", tier = 1, "Adds 1 to 3 Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4869 }, level = 60, group = "WeaponTreeAddedFireDamagePerStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 0, 500, 500, 1000, 500, 500, 0 }, modTags = { }, tradeHash = 54726, }, + ["WeaponTreeAddedFirePerStr2h"] = { type = "MergeOnly", tier = 1, "Adds 2 to 4 Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4869 }, level = 60, group = "WeaponTreeAddedFireDamagePerStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 0, 500, 500, 1000, 500, 500, 0 }, modTags = { }, tradeHash = 37224, }, + ["WeaponTreeAddedLightningPerInt"] = { type = "MergeOnly", tier = 1, "Adds 1 to 3 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4872 }, level = 60, group = "WeaponTreeAddedLightningDamagePerIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 0, 1000, 500, 500, 500, 500, 0 }, modTags = { }, tradeHash = 25630, }, + ["WeaponTreeAddedLightningPerInt2h"] = { type = "MergeOnly", tier = 1, "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4872 }, level = 60, group = "WeaponTreeAddedLightningDamagePerIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 0, 1000, 500, 500, 500, 500, 0 }, modTags = { }, tradeHash = 42504, }, + ["WeaponTreeAddedChaosPerLowestAttribute"] = { type = "MergeOnly", tier = 1, "Adds 2 to 4 Chaos Damage to Attacks with this Weapon per 10 of your lowest Attribute", statOrder = { 4923 }, level = 60, group = "WeaponTreeLocalAddedChaosDamagePerLowestAttribute", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 9998, }, + ["WeaponTreeAddedChaosPerLowestAttribute2h"] = { type = "MergeOnly", tier = 1, "Adds 3 to 5 Chaos Damage to Attacks with this Weapon per 10 of your lowest Attribute", statOrder = { 4923 }, level = 60, group = "WeaponTreeLocalAddedChaosDamagePerLowestAttribute", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 42984, }, + ["WeaponTreeGlobalDamageHighIncreasedSkillCost1"] = { type = "Spawn", tier = 1, "20% increased Global Damage", "10% increased Cost of Skills", statOrder = { 1192, 1881 }, level = 1, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHash = 60139, }, + ["WeaponTreeGlobalDamageHighIncreasedSkillCost2"] = { type = "Spawn", tier = 2, "30% increased Global Damage", "10% increased Cost of Skills", statOrder = { 1192, 1881 }, level = 45, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHash = 47650, }, + ["WeaponTreeGlobalDamageHighIncreasedSkillCost3"] = { type = "Spawn", tier = 3, "40% increased Global Damage", "10% increased Cost of Skills", statOrder = { 1192, 1881 }, level = 75, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { }, tradeHash = 32547, }, + ["WeaponTreeGlobalDamage2hHighIncreasedSkillCost1"] = { type = "Spawn", tier = 1, "40% increased Global Damage", "20% increased Cost of Skills", statOrder = { 1192, 1881 }, level = 1, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHash = 12247, }, + ["WeaponTreeGlobalDamage2hHighIncreasedSkillCost2"] = { type = "Spawn", tier = 2, "50% increased Global Damage", "20% increased Cost of Skills", statOrder = { 1192, 1881 }, level = 45, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHash = 333, }, + ["WeaponTreeGlobalDamage2hHighIncreasedSkillCost3"] = { type = "Spawn", tier = 3, "60% increased Global Damage", "20% increased Cost of Skills", statOrder = { 1192, 1881 }, level = 75, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { }, tradeHash = 52765, }, + ["WeaponTreeGlobalDamage1"] = { type = "Spawn", tier = 1, "15% increased Global Damage", statOrder = { 1192 }, level = 1, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 8535, }, + ["WeaponTreeGlobalDamage2"] = { type = "Spawn", tier = 2, "20% increased Global Damage", statOrder = { 1192 }, level = 45, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 12971, }, + ["WeaponTreeGlobalDamage3"] = { type = "Spawn", tier = 3, "25% increased Global Damage", statOrder = { 1192 }, level = 75, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHash = 49766, }, + ["WeaponTreeGlobalDamage2h1"] = { type = "Spawn", tier = 1, "20% increased Global Damage", statOrder = { 1192 }, level = 1, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 30278, }, + ["WeaponTreeGlobalDamage2h2"] = { type = "Spawn", tier = 2, "30% increased Global Damage", statOrder = { 1192 }, level = 45, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 10616, }, + ["WeaponTreeGlobalDamage2h3"] = { type = "Spawn", tier = 3, "40% increased Global Damage", statOrder = { 1192 }, level = 75, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHash = 14461, }, + ["WeaponTreeGlobalDamageLowIncreasedAttributes1"] = { type = "Spawn", tier = 1, "4% increased Attributes", "8% increased Global Damage", statOrder = { 1183, 1192 }, level = 1, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHash = 21705, }, + ["WeaponTreeGlobalDamageLowIncreasedAttributes2"] = { type = "Spawn", tier = 2, "4% increased Attributes", "12% increased Global Damage", statOrder = { 1183, 1192 }, level = 45, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHash = 33285, }, + ["WeaponTreeGlobalDamageLowIncreasedAttributes3"] = { type = "Spawn", tier = 3, "4% increased Attributes", "16% increased Global Damage", statOrder = { 1183, 1192 }, level = 75, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { }, tradeHash = 18430, }, + ["WeaponTreeGlobalDamage2hLowIncreasedAttributes1"] = { type = "Spawn", tier = 1, "6% increased Attributes", "15% increased Global Damage", statOrder = { 1183, 1192 }, level = 1, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHash = 20500, }, + ["WeaponTreeGlobalDamage2hLowIncreasedAttributes2"] = { type = "Spawn", tier = 2, "6% increased Attributes", "20% increased Global Damage", statOrder = { 1183, 1192 }, level = 45, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHash = 28343, }, + ["WeaponTreeGlobalDamage2hLowIncreasedAttributes3"] = { type = "Spawn", tier = 3, "6% increased Attributes", "25% increased Global Damage", statOrder = { 1183, 1192 }, level = 75, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { }, tradeHash = 35076, }, + ["WeaponTreeIncreasedLife1"] = { type = "Spawn", tier = 1, "+30 to maximum Life", statOrder = { 1569 }, level = 1, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 8191, }, + ["WeaponTreeIncreasedLife2"] = { type = "Spawn", tier = 2, "+35 to maximum Life", statOrder = { 1569 }, level = 21, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 18092, }, + ["WeaponTreeIncreasedLife3"] = { type = "Spawn", tier = 3, "+40 to maximum Life", statOrder = { 1569 }, level = 46, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 12317, }, + ["WeaponTreeIncreasedLife4"] = { type = "Spawn", tier = 4, "+45 to maximum Life", statOrder = { 1569 }, level = 65, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 62365, }, + ["WeaponTreeIncreasedLife5"] = { type = "Spawn", tier = 5, "+50 to maximum Life", statOrder = { 1569 }, level = 77, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 50864, }, + ["WeaponTreeIncreasedLifeReducedDamage1"] = { type = "Spawn", tier = 1, "20% reduced Damage", "+60 to maximum Life", statOrder = { 1191, 1569 }, level = 15, group = "WeaponTreeIncreasedLifeReducedDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 28322, }, + ["WeaponTreeIncreasedLifeReducedDamage2"] = { type = "Spawn", tier = 2, "20% reduced Damage", "+75 to maximum Life", statOrder = { 1191, 1569 }, level = 45, group = "WeaponTreeIncreasedLifeReducedDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 46681, }, + ["WeaponTreeIncreasedLifeReducedDamage3"] = { type = "Spawn", tier = 3, "20% reduced Damage", "+80 to maximum Life", statOrder = { 1191, 1569 }, level = 70, group = "WeaponTreeIncreasedLifeReducedDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 591, }, + ["WeaponTreeIncreasedLifeReducedAllResistance1"] = { type = "Spawn", tier = 1, "+60 to maximum Life", "-5% to all Elemental Resistances", statOrder = { 1569, 1619 }, level = 15, group = "WeaponTreeIncreasedLifeReducedAllResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 22067, }, + ["WeaponTreeIncreasedLifeReducedAllResistance2"] = { type = "Spawn", tier = 2, "+75 to maximum Life", "-5% to all Elemental Resistances", statOrder = { 1569, 1619 }, level = 45, group = "WeaponTreeIncreasedLifeReducedAllResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 51677, }, + ["WeaponTreeIncreasedLifeReducedAllResistance3"] = { type = "Spawn", tier = 3, "+80 to maximum Life", "-5% to all Elemental Resistances", statOrder = { 1569, 1619 }, level = 70, group = "WeaponTreeIncreasedLifeReducedAllResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 14915, }, + ["WeaponTreeIncreasedLifeReducedLocalDefences1"] = { type = "Spawn", tier = 1, "50% reduced Armour, Evasion and Energy Shield", "+60 to maximum Life", statOrder = { 1555, 1569 }, level = 15, group = "WeaponTreeIncreasedLifeReducedLocalDefences", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 8830, }, + ["WeaponTreeIncreasedLifeReducedLocalDefences2"] = { type = "Spawn", tier = 2, "50% reduced Armour, Evasion and Energy Shield", "+75 to maximum Life", statOrder = { 1555, 1569 }, level = 45, group = "WeaponTreeIncreasedLifeReducedLocalDefences", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 23471, }, + ["WeaponTreeIncreasedLifeReducedLocalDefences3"] = { type = "Spawn", tier = 3, "50% reduced Armour, Evasion and Energy Shield", "+80 to maximum Life", statOrder = { 1555, 1569 }, level = 70, group = "WeaponTreeIncreasedLifeReducedLocalDefences", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 47529, }, + ["WeaponTreeIncreasedLifeAndLifeRegen1"] = { type = "Spawn", tier = 1, "+15 to maximum Life", "Regenerate 0.4% of Life per second", statOrder = { 1569, 1944 }, level = 1, group = "WeaponTreeIncreasedLifeAndLifeRegen", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 13514, }, + ["WeaponTreeIncreasedLifeAndLifeRegen2"] = { type = "Spawn", tier = 2, "+20 to maximum Life", "Regenerate 0.4% of Life per second", statOrder = { 1569, 1944 }, level = 40, group = "WeaponTreeIncreasedLifeAndLifeRegen", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 2200, }, + ["WeaponTreeIncreasedLifeAndLifeRegen3"] = { type = "Spawn", tier = 3, "+25 to maximum Life", "Regenerate 0.4% of Life per second", statOrder = { 1569, 1944 }, level = 65, group = "WeaponTreeIncreasedLifeAndLifeRegen", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 37571, }, + ["WeaponTreeIncreasedLifeAndStunThreshold1"] = { type = "Spawn", tier = 1, "+15 to maximum Life", "20% increased Stun Threshold", statOrder = { 1569, 3272 }, level = 1, group = "WeaponTreeIncreasedLifeAndStunThreshold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 29513, }, + ["WeaponTreeIncreasedLifeAndStunThreshold2"] = { type = "Spawn", tier = 2, "+20 to maximum Life", "20% increased Stun Threshold", statOrder = { 1569, 3272 }, level = 40, group = "WeaponTreeIncreasedLifeAndStunThreshold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 32340, }, + ["WeaponTreeIncreasedLifeAndStunThreshold3"] = { type = "Spawn", tier = 3, "+25 to maximum Life", "20% increased Stun Threshold", statOrder = { 1569, 3272 }, level = 65, group = "WeaponTreeIncreasedLifeAndStunThreshold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 50606, }, + ["WeaponTreeIncreasedLifeAndLifeOnKill1"] = { type = "Spawn", tier = 1, "+15 to maximum Life", "Recover 1% of Life on Kill", statOrder = { 1569, 1749 }, level = 1, group = "WeaponTreeIncreasedLifeAndLifeOnKill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 23530, }, + ["WeaponTreeIncreasedLifeAndLifeOnKill2"] = { type = "Spawn", tier = 2, "+20 to maximum Life", "Recover 1% of Life on Kill", statOrder = { 1569, 1749 }, level = 40, group = "WeaponTreeIncreasedLifeAndLifeOnKill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 29491, }, + ["WeaponTreeIncreasedLifeAndLifeOnKill3"] = { type = "Spawn", tier = 3, "+25 to maximum Life", "Recover 1% of Life on Kill", statOrder = { 1569, 1749 }, level = 65, group = "WeaponTreeIncreasedLifeAndLifeOnKill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 65097, }, + ["WeaponTreeLocalArmour1"] = { type = "Spawn", tier = 1, "+20 to Armour", statOrder = { 1540 }, level = 1, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, tradeHash = 41721, }, + ["WeaponTreeLocalArmour2"] = { type = "Spawn", tier = 2, "+35 to Armour", statOrder = { 1540 }, level = 24, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, tradeHash = 43217, }, + ["WeaponTreeLocalArmour3"] = { type = "Spawn", tier = 3, "+50 to Armour", statOrder = { 1540 }, level = 50, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, tradeHash = 35119, }, + ["WeaponTreeLocalArmour4"] = { type = "Spawn", tier = 4, "+65 to Armour", statOrder = { 1540 }, level = 68, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, tradeHash = 35850, }, + ["WeaponTreeLocalArmour5"] = { type = "Spawn", tier = 5, "+80 to Armour", statOrder = { 1540 }, level = 82, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 59252, }, + ["WeaponTreeLocalArmourIncreasedDamageOverTimeTaken1"] = { type = "Spawn", tier = 1, "+100 to Armour", "10% increased Damage taken from Damage Over Time", statOrder = { 1540, 2245 }, level = 20, group = "WeaponTreeLocalArmourIncreasedDamageOverTimeTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 61894, }, + ["WeaponTreeLocalArmourIncreasedDamageOverTimeTaken2"] = { type = "Spawn", tier = 2, "+125 to Armour", "10% increased Damage taken from Damage Over Time", statOrder = { 1540, 2245 }, level = 55, group = "WeaponTreeLocalArmourIncreasedDamageOverTimeTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 40572, }, + ["WeaponTreeLocalArmourIncreasedDamageOverTimeTaken3"] = { type = "Spawn", tier = 3, "+150 to Armour", "10% increased Damage taken from Damage Over Time", statOrder = { 1540, 2245 }, level = 83, group = "WeaponTreeLocalArmourIncreasedDamageOverTimeTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 19595, }, + ["WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes1"] = { type = "Spawn", tier = 1, "You take 20% increased Extra Damage from Critical Strikes", "+100 to Armour", statOrder = { 1512, 1540 }, level = 20, group = "WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 27060, }, + ["WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes2"] = { type = "Spawn", tier = 2, "You take 20% increased Extra Damage from Critical Strikes", "+125 to Armour", statOrder = { 1512, 1540 }, level = 55, group = "WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 15661, }, + ["WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes3"] = { type = "Spawn", tier = 3, "You take 20% increased Extra Damage from Critical Strikes", "+150 to Armour", statOrder = { 1512, 1540 }, level = 83, group = "WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 39258, }, + ["WeaponTreeLocalArmourIncreasedStrength1"] = { type = "Spawn", tier = 1, "5% increased Strength", "+20 to Armour", statOrder = { 1184, 1540 }, level = 1, group = "WeaponTreeLocalArmourIncreasedStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 5670, }, + ["WeaponTreeLocalArmourIncreasedStrength2"] = { type = "Spawn", tier = 2, "5% increased Strength", "+30 to Armour", statOrder = { 1184, 1540 }, level = 40, group = "WeaponTreeLocalArmourIncreasedStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 40285, }, + ["WeaponTreeLocalArmourIncreasedStrength3"] = { type = "Spawn", tier = 3, "5% increased Strength", "+40 to Armour", statOrder = { 1184, 1540 }, level = 65, group = "WeaponTreeLocalArmourIncreasedStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 2900, }, + ["WeaponTreeLocalArmourImplicitEffect1"] = { type = "Spawn", tier = 1, "50% increased Implicit Modifier magnitudes", "+20 to Armour", statOrder = { 58, 1540 }, level = 1, group = "WeaponTreeLocalArmourImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 22071, }, + ["WeaponTreeLocalArmourImplicitEffect2"] = { type = "Spawn", tier = 2, "50% increased Implicit Modifier magnitudes", "+30 to Armour", statOrder = { 58, 1540 }, level = 40, group = "WeaponTreeLocalArmourImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 8466, }, + ["WeaponTreeLocalArmourImplicitEffect3"] = { type = "Spawn", tier = 3, "50% increased Implicit Modifier magnitudes", "+40 to Armour", statOrder = { 58, 1540 }, level = 65, group = "WeaponTreeLocalArmourImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 37110, }, + ["WeaponTreeLocalArmourLocalBlock1"] = { type = "Spawn", tier = 1, "+20 to Armour", "+2% Chance to Block", statOrder = { 1540, 2249 }, level = 1, group = "WeaponTreeLocalArmourLocalBlock", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "crucible_unique_helmet", "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 12422, }, + ["WeaponTreeLocalArmourLocalBlock2"] = { type = "Spawn", tier = 2, "+30 to Armour", "+2% Chance to Block", statOrder = { 1540, 2249 }, level = 40, group = "WeaponTreeLocalArmourLocalBlock", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "crucible_unique_helmet", "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 7643, }, + ["WeaponTreeLocalArmourLocalBlock3"] = { type = "Spawn", tier = 3, "+40 to Armour", "+2% Chance to Block", statOrder = { 1540, 2249 }, level = 65, group = "WeaponTreeLocalArmourLocalBlock", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "crucible_unique_helmet", "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 56331, }, + ["WeaponTreeLocalEvasion1"] = { type = "Spawn", tier = 1, "+20 to Evasion Rating", statOrder = { 1548 }, level = 1, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, tradeHash = 3583, }, + ["WeaponTreeLocalEvasion2"] = { type = "Spawn", tier = 2, "+35 to Evasion Rating", statOrder = { 1548 }, level = 24, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, tradeHash = 31364, }, + ["WeaponTreeLocalEvasion3"] = { type = "Spawn", tier = 3, "+50 to Evasion Rating", statOrder = { 1548 }, level = 50, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, tradeHash = 36975, }, + ["WeaponTreeLocalEvasion4"] = { type = "Spawn", tier = 4, "+65 to Evasion Rating", statOrder = { 1548 }, level = 68, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, tradeHash = 45575, }, + ["WeaponTreeLocalEvasion5"] = { type = "Spawn", tier = 5, "+80 to Evasion Rating", statOrder = { 1548 }, level = 82, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 39768, }, + ["WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf1"] = { type = "Spawn", tier = 1, "+100 to Evasion Rating", "20% increased Duration of Ailments on You", statOrder = { 1548, 4985 }, level = 20, group = "WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 56227, }, + ["WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf2"] = { type = "Spawn", tier = 2, "+125 to Evasion Rating", "20% increased Duration of Ailments on You", statOrder = { 1548, 4985 }, level = 55, group = "WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 19012, }, + ["WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf3"] = { type = "Spawn", tier = 3, "+150 to Evasion Rating", "20% increased Duration of Ailments on You", statOrder = { 1548, 4985 }, level = 83, group = "WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 58827, }, + ["WeaponTreeLocalEvasionRatingReducedStunRecovery1"] = { type = "Spawn", tier = 1, "+100 to Evasion Rating", "25% reduced Stun and Block Recovery", statOrder = { 1548, 1902 }, level = 20, group = "WeaponTreeLocalEvasionRatingReducedStunRecovery", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 32254, }, + ["WeaponTreeLocalEvasionRatingReducedStunRecovery2"] = { type = "Spawn", tier = 2, "+125 to Evasion Rating", "25% reduced Stun and Block Recovery", statOrder = { 1548, 1902 }, level = 55, group = "WeaponTreeLocalEvasionRatingReducedStunRecovery", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 16486, }, + ["WeaponTreeLocalEvasionRatingReducedStunRecovery3"] = { type = "Spawn", tier = 3, "+150 to Evasion Rating", "25% reduced Stun and Block Recovery", statOrder = { 1548, 1902 }, level = 83, group = "WeaponTreeLocalEvasionRatingReducedStunRecovery", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 21854, }, + ["WeaponTreeLocalEvasionRatingIncreasedDexterity1"] = { type = "Spawn", tier = 1, "5% increased Dexterity", "+20 to Evasion Rating", statOrder = { 1185, 1548 }, level = 1, group = "WeaponTreeLocalEvasionRatingIncreasedDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 51176, }, + ["WeaponTreeLocalEvasionRatingIncreasedDexterity2"] = { type = "Spawn", tier = 2, "5% increased Dexterity", "+30 to Evasion Rating", statOrder = { 1185, 1548 }, level = 40, group = "WeaponTreeLocalEvasionRatingIncreasedDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 31790, }, + ["WeaponTreeLocalEvasionRatingIncreasedDexterity3"] = { type = "Spawn", tier = 3, "5% increased Dexterity", "+40 to Evasion Rating", statOrder = { 1185, 1548 }, level = 65, group = "WeaponTreeLocalEvasionRatingIncreasedDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 10779, }, + ["WeaponTreeLocalEvasionRatingImplicitEffect1"] = { type = "Spawn", tier = 1, "50% increased Implicit Modifier magnitudes", "+20 to Evasion Rating", statOrder = { 58, 1548 }, level = 1, group = "WeaponTreeLocalEvasionRatingImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 33157, }, + ["WeaponTreeLocalEvasionRatingImplicitEffect2"] = { type = "Spawn", tier = 2, "50% increased Implicit Modifier magnitudes", "+30 to Evasion Rating", statOrder = { 58, 1548 }, level = 40, group = "WeaponTreeLocalEvasionRatingImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 36846, }, + ["WeaponTreeLocalEvasionRatingImplicitEffect3"] = { type = "Spawn", tier = 3, "50% increased Implicit Modifier magnitudes", "+40 to Evasion Rating", statOrder = { 58, 1548 }, level = 65, group = "WeaponTreeLocalEvasionRatingImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 11736, }, + ["WeaponTreeLocalEvasionRatingSuppression1"] = { type = "Spawn", tier = 1, "+4% chance to Suppress Spell Damage", "+20 to Evasion Rating", statOrder = { 1143, 1548 }, level = 1, group = "WeaponTreeLocalEvasionRatingSuppression", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 17841, }, + ["WeaponTreeLocalEvasionRatingSuppression2"] = { type = "Spawn", tier = 2, "+4% chance to Suppress Spell Damage", "+30 to Evasion Rating", statOrder = { 1143, 1548 }, level = 40, group = "WeaponTreeLocalEvasionRatingSuppression", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 11505, }, + ["WeaponTreeLocalEvasionRatingSuppression3"] = { type = "Spawn", tier = 3, "+4% chance to Suppress Spell Damage", "+40 to Evasion Rating", statOrder = { 1143, 1548 }, level = 65, group = "WeaponTreeLocalEvasionRatingSuppression", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 26176, }, + ["WeaponTreeLocalEnergyShield1"] = { type = "Spawn", tier = 1, "+5 to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, tradeHash = 30804, }, + ["WeaponTreeLocalEnergyShield2"] = { type = "Spawn", tier = 2, "+10 to maximum Energy Shield", statOrder = { 1559 }, level = 24, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, tradeHash = 7667, }, + ["WeaponTreeLocalEnergyShield3"] = { type = "Spawn", tier = 3, "+15 to maximum Energy Shield", statOrder = { 1559 }, level = 50, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, tradeHash = 64218, }, + ["WeaponTreeLocalEnergyShield4"] = { type = "Spawn", tier = 4, "+20 to maximum Energy Shield", statOrder = { 1559 }, level = 68, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, tradeHash = 63747, }, + ["WeaponTreeLocalEnergyShield5"] = { type = "Spawn", tier = 5, "+25 to maximum Energy Shield", statOrder = { 1559 }, level = 82, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 21450, }, + ["WeaponTreeLocalEnergyShieldReducedRechargeRate1"] = { type = "Spawn", tier = 1, "+28 to maximum Energy Shield", "25% reduced Energy Shield Recharge Rate", statOrder = { 1559, 1565 }, level = 20, group = "WeaponTreeLocalEnergyShieldReducedRechargeRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 39701, }, + ["WeaponTreeLocalEnergyShieldReducedRechargeRate2"] = { type = "Spawn", tier = 2, "+34 to maximum Energy Shield", "25% reduced Energy Shield Recharge Rate", statOrder = { 1559, 1565 }, level = 55, group = "WeaponTreeLocalEnergyShieldReducedRechargeRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 22147, }, + ["WeaponTreeLocalEnergyShieldReducedRechargeRate3"] = { type = "Spawn", tier = 3, "+40 to maximum Energy Shield", "25% reduced Energy Shield Recharge Rate", statOrder = { 1559, 1565 }, level = 83, group = "WeaponTreeLocalEnergyShieldReducedRechargeRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 39152, }, + ["WeaponTreeLocalEnergyShieldReducedManaRegeneration1"] = { type = "Spawn", tier = 1, "+28 to maximum Energy Shield", "25% reduced Mana Regeneration Rate", statOrder = { 1559, 1584 }, level = 20, group = "WeaponTreeLocalEnergyShieldReducedManaRegeneration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 48803, }, + ["WeaponTreeLocalEnergyShieldReducedManaRegeneration2"] = { type = "Spawn", tier = 2, "+34 to maximum Energy Shield", "25% reduced Mana Regeneration Rate", statOrder = { 1559, 1584 }, level = 55, group = "WeaponTreeLocalEnergyShieldReducedManaRegeneration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 14174, }, + ["WeaponTreeLocalEnergyShieldReducedManaRegeneration3"] = { type = "Spawn", tier = 3, "+40 to maximum Energy Shield", "25% reduced Mana Regeneration Rate", statOrder = { 1559, 1584 }, level = 83, group = "WeaponTreeLocalEnergyShieldReducedManaRegeneration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 1235, }, + ["WeaponTreeLocalEnergyShieldIncreasedIntelligence1"] = { type = "Spawn", tier = 1, "5% increased Intelligence", "+9 to maximum Energy Shield", statOrder = { 1186, 1559 }, level = 1, group = "WeaponTreeLocalEnergyShieldIncreasedIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 24867, }, + ["WeaponTreeLocalEnergyShieldIncreasedIntelligence2"] = { type = "Spawn", tier = 2, "5% increased Intelligence", "+12 to maximum Energy Shield", statOrder = { 1186, 1559 }, level = 40, group = "WeaponTreeLocalEnergyShieldIncreasedIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 27116, }, + ["WeaponTreeLocalEnergyShieldIncreasedIntelligence3"] = { type = "Spawn", tier = 3, "5% increased Intelligence", "+15 to maximum Energy Shield", statOrder = { 1186, 1559 }, level = 65, group = "WeaponTreeLocalEnergyShieldIncreasedIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 13687, }, + ["WeaponTreeLocalEnergyShieldImplicitEffect1"] = { type = "Spawn", tier = 1, "50% increased Implicit Modifier magnitudes", "+9 to maximum Energy Shield", statOrder = { 58, 1559 }, level = 1, group = "WeaponTreeLocalEnergyShieldImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 28288, }, + ["WeaponTreeLocalEnergyShieldImplicitEffect2"] = { type = "Spawn", tier = 2, "50% increased Implicit Modifier magnitudes", "+12 to maximum Energy Shield", statOrder = { 58, 1559 }, level = 40, group = "WeaponTreeLocalEnergyShieldImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 27282, }, + ["WeaponTreeLocalEnergyShieldImplicitEffect3"] = { type = "Spawn", tier = 3, "50% increased Implicit Modifier magnitudes", "+15 to maximum Energy Shield", statOrder = { 58, 1559 }, level = 65, group = "WeaponTreeLocalEnergyShieldImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 32464, }, + ["WeaponTreeLocalEnergyShieldAndMana1"] = { type = "Spawn", tier = 1, "+9 to maximum Energy Shield", "8% increased maximum Mana", statOrder = { 1559, 1580 }, level = 1, group = "WeaponTreeLocalEnergyShieldAndMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 64807, }, + ["WeaponTreeLocalEnergyShieldAndMana2"] = { type = "Spawn", tier = 2, "+12 to maximum Energy Shield", "8% increased maximum Mana", statOrder = { 1559, 1580 }, level = 40, group = "WeaponTreeLocalEnergyShieldAndMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 6098, }, + ["WeaponTreeLocalEnergyShieldAndMana3"] = { type = "Spawn", tier = 3, "+15 to maximum Energy Shield", "8% increased maximum Mana", statOrder = { 1559, 1580 }, level = 65, group = "WeaponTreeLocalEnergyShieldAndMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 23156, }, + ["WeaponTreeFireDamagePercentageMinusFireResistance1"] = { type = "Spawn", tier = 1, "30% increased Fire Damage", "-10% to Fire Resistance", statOrder = { 1357, 1625 }, level = 8, group = "WeaponTreeFireDamagePercentageMinusFireResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 40475, }, + ["WeaponTreeFireDamagePercentageMinusFireResistance2"] = { type = "Spawn", tier = 2, "35% increased Fire Damage", "-10% to Fire Resistance", statOrder = { 1357, 1625 }, level = 42, group = "WeaponTreeFireDamagePercentageMinusFireResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 23778, }, + ["WeaponTreeFireDamagePercentageMinusFireResistance3"] = { type = "Spawn", tier = 3, "40% increased Fire Damage", "-10% to Fire Resistance", statOrder = { 1357, 1625 }, level = 72, group = "WeaponTreeFireDamagePercentageMinusFireResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 45201, }, + ["WeaponTreeFireDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "WeaponTreeFireDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 43685, }, + ["WeaponTreeFireDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Fire Damage", statOrder = { 1357 }, level = 50, group = "WeaponTreeFireDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 31813, }, + ["WeaponTreeFireDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Fire Damage", statOrder = { 1357 }, level = 77, group = "WeaponTreeFireDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 13108, }, + ["WeaponTreeFireDamagePercentageDamageTakenAsFire1"] = { type = "Spawn", tier = 1, "9% increased Fire Damage", "3% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1357, 2447 }, level = 1, group = "WeaponTreeFireDamagePercentageDamageTakenAsFire", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 63302, }, + ["WeaponTreeFireDamagePercentageDamageTakenAsFire2"] = { type = "Spawn", tier = 2, "12% increased Fire Damage", "3% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1357, 2447 }, level = 36, group = "WeaponTreeFireDamagePercentageDamageTakenAsFire", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 14839, }, + ["WeaponTreeFireDamagePercentageDamageTakenAsFire3"] = { type = "Spawn", tier = 3, "15% increased Fire Damage", "3% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1357, 2447 }, level = 68, group = "WeaponTreeFireDamagePercentageDamageTakenAsFire", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 59992, }, + ["WeaponTreeColdDamagePercentageMinusColdResistance1"] = { type = "Spawn", tier = 1, "30% increased Cold Damage", "-10% to Cold Resistance", statOrder = { 1366, 1631 }, level = 8, group = "WeaponTreeColdDamagePercentageMinusColdResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 23285, }, + ["WeaponTreeColdDamagePercentageMinusColdResistance2"] = { type = "Spawn", tier = 2, "35% increased Cold Damage", "-10% to Cold Resistance", statOrder = { 1366, 1631 }, level = 42, group = "WeaponTreeColdDamagePercentageMinusColdResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 40580, }, + ["WeaponTreeColdDamagePercentageMinusColdResistance3"] = { type = "Spawn", tier = 3, "40% increased Cold Damage", "-10% to Cold Resistance", statOrder = { 1366, 1631 }, level = 72, group = "WeaponTreeColdDamagePercentageMinusColdResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 56284, }, + ["WeaponTreeColdDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "WeaponTreeColdDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 55227, }, + ["WeaponTreeColdDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Cold Damage", statOrder = { 1366 }, level = 50, group = "WeaponTreeColdDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 52693, }, + ["WeaponTreeColdDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Cold Damage", statOrder = { 1366 }, level = 77, group = "WeaponTreeColdDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 22424, }, + ["WeaponTreeColdDamagePercentageDamageTakenAsCold1"] = { type = "Spawn", tier = 1, "9% increased Cold Damage", "3% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1366, 2448 }, level = 1, group = "WeaponTreeColdDamagePercentageDamageTakenAsCold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 49806, }, + ["WeaponTreeColdDamagePercentageDamageTakenAsCold2"] = { type = "Spawn", tier = 2, "12% increased Cold Damage", "3% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1366, 2448 }, level = 36, group = "WeaponTreeColdDamagePercentageDamageTakenAsCold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 11052, }, + ["WeaponTreeColdDamagePercentageDamageTakenAsCold3"] = { type = "Spawn", tier = 3, "15% increased Cold Damage", "3% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1366, 2448 }, level = 68, group = "WeaponTreeColdDamagePercentageDamageTakenAsCold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 21848, }, + ["WeaponTreeLightningDamagePercentageMinusLightningResistance1"] = { type = "Spawn", tier = 1, "30% increased Lightning Damage", "-10% to Lightning Resistance", statOrder = { 1377, 1636 }, level = 8, group = "WeaponTreeLightningDamagePercentageMinusLightningResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 62777, }, + ["WeaponTreeLightningDamagePercentageMinusLightningResistance2"] = { type = "Spawn", tier = 2, "35% increased Lightning Damage", "-10% to Lightning Resistance", statOrder = { 1377, 1636 }, level = 42, group = "WeaponTreeLightningDamagePercentageMinusLightningResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 63805, }, + ["WeaponTreeLightningDamagePercentageMinusLightningResistance3"] = { type = "Spawn", tier = 3, "40% increased Lightning Damage", "-10% to Lightning Resistance", statOrder = { 1377, 1636 }, level = 72, group = "WeaponTreeLightningDamagePercentageMinusLightningResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 31784, }, + ["WeaponTreeLightningDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "WeaponTreeLightningDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 11891, }, + ["WeaponTreeLightningDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Lightning Damage", statOrder = { 1377 }, level = 50, group = "WeaponTreeLightningDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 35012, }, + ["WeaponTreeLightningDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Lightning Damage", statOrder = { 1377 }, level = 77, group = "WeaponTreeLightningDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 29865, }, + ["WeaponTreeLightningDamagePercentageDamageTakenAsLightning1"] = { type = "Spawn", tier = 1, "9% increased Lightning Damage", "3% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1377, 2449 }, level = 1, group = "WeaponTreeLightningDamagePercentageDamageTakenAsLightning", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 12577, }, + ["WeaponTreeLightningDamagePercentageDamageTakenAsLightning2"] = { type = "Spawn", tier = 2, "12% increased Lightning Damage", "3% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1377, 2449 }, level = 36, group = "WeaponTreeLightningDamagePercentageDamageTakenAsLightning", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 6074, }, + ["WeaponTreeLightningDamagePercentageDamageTakenAsLightning3"] = { type = "Spawn", tier = 3, "15% increased Lightning Damage", "3% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1377, 2449 }, level = 68, group = "WeaponTreeLightningDamagePercentageDamageTakenAsLightning", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 16688, }, + ["WeaponTreeChaosDamagePercentageMinusChaosResistance1"] = { type = "Spawn", tier = 1, "30% increased Chaos Damage", "-10% to Chaos Resistance", statOrder = { 1385, 1641 }, level = 8, group = "WeaponTreeChaosDamagePercentageMinusChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 47499, }, + ["WeaponTreeChaosDamagePercentageMinusChaosResistance2"] = { type = "Spawn", tier = 2, "35% increased Chaos Damage", "-10% to Chaos Resistance", statOrder = { 1385, 1641 }, level = 42, group = "WeaponTreeChaosDamagePercentageMinusChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 43557, }, + ["WeaponTreeChaosDamagePercentageMinusChaosResistance3"] = { type = "Spawn", tier = 3, "40% increased Chaos Damage", "-10% to Chaos Resistance", statOrder = { 1385, 1641 }, level = 72, group = "WeaponTreeChaosDamagePercentageMinusChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 45555, }, + ["WeaponTreeChaosDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "WeaponTreeIncreasedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 12527, }, + ["WeaponTreeChaosDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Chaos Damage", statOrder = { 1385 }, level = 50, group = "WeaponTreeIncreasedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 4723, }, + ["WeaponTreeChaosDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Chaos Damage", statOrder = { 1385 }, level = 77, group = "WeaponTreeIncreasedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 26529, }, + ["WeaponTreeChaosDamagePercentageDamageTakenAsChaos1"] = { type = "Spawn", tier = 1, "9% increased Chaos Damage", "3% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 1385, 2451 }, level = 1, group = "WeaponTreeChaosDamagePercentageDamageTakenAsChaos", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 19138, }, + ["WeaponTreeChaosDamagePercentageDamageTakenAsChaos2"] = { type = "Spawn", tier = 2, "12% increased Chaos Damage", "3% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 1385, 2451 }, level = 36, group = "WeaponTreeChaosDamagePercentageDamageTakenAsChaos", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 31274, }, + ["WeaponTreeChaosDamagePercentageDamageTakenAsChaos3"] = { type = "Spawn", tier = 3, "15% increased Chaos Damage", "3% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 1385, 2451 }, level = 68, group = "WeaponTreeChaosDamagePercentageDamageTakenAsChaos", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 5634, }, + ["WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate1"] = { type = "Spawn", tier = 1, "30% increased Global Physical Damage", "10% reduced Life Regeneration rate", statOrder = { 1231, 1577 }, level = 8, group = "WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 9880, }, + ["WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate2"] = { type = "Spawn", tier = 2, "35% increased Global Physical Damage", "10% reduced Life Regeneration rate", statOrder = { 1231, 1577 }, level = 42, group = "WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 27675, }, + ["WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate3"] = { type = "Spawn", tier = 3, "40% increased Global Physical Damage", "10% reduced Life Regeneration rate", statOrder = { 1231, 1577 }, level = 72, group = "WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 37999, }, + ["WeaponTreePhysicalDamagePercent1"] = { type = "Spawn", tier = 1, "15% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "WeaponTreePhysicalDamagePercent", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 36639, }, + ["WeaponTreePhysicalDamagePercent2"] = { type = "Spawn", tier = 2, "20% increased Global Physical Damage", statOrder = { 1231 }, level = 50, group = "WeaponTreePhysicalDamagePercent", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 55925, }, + ["WeaponTreePhysicalDamagePercent3"] = { type = "Spawn", tier = 3, "25% increased Global Physical Damage", statOrder = { 1231 }, level = 77, group = "WeaponTreePhysicalDamagePercent", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 6337, }, + ["WeaponTreePhysicalDamagePercentPhysicalDamageReduction1"] = { type = "Spawn", tier = 1, "9% increased Global Physical Damage", "2% additional Physical Damage Reduction", statOrder = { 1231, 2273 }, level = 1, group = "WeaponTreePhysicalDamagePercentPhysicalDamageReduction", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 3449, }, + ["WeaponTreePhysicalDamagePercentPhysicalDamageReduction2"] = { type = "Spawn", tier = 2, "12% increased Global Physical Damage", "2% additional Physical Damage Reduction", statOrder = { 1231, 2273 }, level = 36, group = "WeaponTreePhysicalDamagePercentPhysicalDamageReduction", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 36220, }, + ["WeaponTreePhysicalDamagePercentPhysicalDamageReduction3"] = { type = "Spawn", tier = 3, "15% increased Global Physical Damage", "2% additional Physical Damage Reduction", statOrder = { 1231, 2273 }, level = 68, group = "WeaponTreePhysicalDamagePercentPhysicalDamageReduction", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 61973, }, + ["WeaponTreeLocalCritChanceCritsDealNoExtraDamage1"] = { type = "Spawn", tier = 1, "+4% to Critical Strike Chance", "Your Critical Strikes do not deal extra Damage", statOrder = { 1463, 2678 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndNoExtraDamageFromCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 40971, }, + ["WeaponTreeLocalCritChanceCritsDealNoExtraDamage2"] = { type = "Spawn", tier = 2, "+5% to Critical Strike Chance", "Your Critical Strikes do not deal extra Damage", statOrder = { 1463, 2678 }, level = 55, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndNoExtraDamageFromCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 8458, }, + ["WeaponTreeLocalCritChanceCritsDealNoExtraDamage3"] = { type = "Spawn", tier = 3, "+6% to Critical Strike Chance", "Your Critical Strikes do not deal extra Damage", statOrder = { 1463, 2678 }, level = 82, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndNoExtraDamageFromCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 16745, }, + ["WeaponTreeLocalCritChanceCritMulti1"] = { type = "Spawn", tier = 1, "-3% to Critical Strike Chance", "+40% to Global Critical Strike Multiplier", statOrder = { 1463, 1488 }, level = 10, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 24417, }, + ["WeaponTreeLocalCritChanceCritMulti2"] = { type = "Spawn", tier = 2, "-3% to Critical Strike Chance", "+50% to Global Critical Strike Multiplier", statOrder = { 1463, 1488 }, level = 50, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 47514, }, + ["WeaponTreeLocalCritChanceCritMulti3"] = { type = "Spawn", tier = 3, "-3% to Critical Strike Chance", "+60% to Global Critical Strike Multiplier", statOrder = { 1463, 1488 }, level = 80, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 34604, }, + ["WeaponTreeLocalCritChanceCritMulti2h1"] = { type = "Spawn", tier = 1, "-3% to Critical Strike Chance", "+60% to Global Critical Strike Multiplier", statOrder = { 1463, 1488 }, level = 10, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 53788, }, + ["WeaponTreeLocalCritChanceCritMulti2h2"] = { type = "Spawn", tier = 2, "-3% to Critical Strike Chance", "+80% to Global Critical Strike Multiplier", statOrder = { 1463, 1488 }, level = 50, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 55592, }, + ["WeaponTreeLocalCritChanceCritMulti2h3"] = { type = "Spawn", tier = 3, "-3% to Critical Strike Chance", "+100% to Global Critical Strike Multiplier", statOrder = { 1463, 1488 }, level = 80, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 28638, }, + ["WeaponTreeLocalCritChance1"] = { type = "Spawn", tier = 1, "+0.4% to Critical Strike Chance", statOrder = { 1463 }, level = 1, group = "WeaponTreeLocalBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 5089, }, + ["WeaponTreeLocalCritChance2"] = { type = "Spawn", tier = 2, "+0.6% to Critical Strike Chance", statOrder = { 1463 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 49170, }, + ["WeaponTreeLocalCritChance3"] = { type = "Spawn", tier = 3, "+0.8% to Critical Strike Chance", statOrder = { 1463 }, level = 60, group = "WeaponTreeLocalBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 35417, }, + ["WeaponTreeLocalCritReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "15% reduced Attack Speed", "+0.9% to Critical Strike Chance", statOrder = { 1413, 1463 }, level = 1, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 34544, }, + ["WeaponTreeLocalCritReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "15% reduced Attack Speed", "+1.2% to Critical Strike Chance", statOrder = { 1413, 1463 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 62113, }, + ["WeaponTreeLocalCritReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "15% reduced Attack Speed", "+1.5% to Critical Strike Chance", statOrder = { 1413, 1463 }, level = 60, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 36032, }, + ["WeaponTreeLocalCritReducedAccuracy1"] = { type = "Spawn", tier = 1, "+0.9% to Critical Strike Chance", "-500 to Accuracy Rating", statOrder = { 1463, 2024 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAccuracy", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 27289, }, + ["WeaponTreeLocalCritReducedAccuracy2"] = { type = "Spawn", tier = 2, "+1.2% to Critical Strike Chance", "-500 to Accuracy Rating", statOrder = { 1463, 2024 }, level = 55, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAccuracy", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 42844, }, + ["WeaponTreeLocalCritReducedAccuracy3"] = { type = "Spawn", tier = 3, "+1.5% to Critical Strike Chance", "-500 to Accuracy Rating", statOrder = { 1463, 2024 }, level = 82, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAccuracy", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 53521, }, + ["WeaponTreeLocalAttackSpeedLessDamage1"] = { type = "Spawn", tier = 1, "30% increased Attack Speed", "20% less Global Damage", statOrder = { 1413, 10589 }, level = 1, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHash = 32823, }, + ["WeaponTreeLocalAttackSpeedLessDamage2"] = { type = "Spawn", tier = 2, "35% increased Attack Speed", "20% less Global Damage", statOrder = { 1413, 10589 }, level = 30, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHash = 858, }, + ["WeaponTreeLocalAttackSpeedLessDamage3"] = { type = "Spawn", tier = 3, "40% increased Attack Speed", "20% less Global Damage", statOrder = { 1413, 10589 }, level = 60, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHash = 48515, }, + ["WeaponTreeLocalAttackSpeedRangedLessDamage1"] = { type = "Spawn", tier = 1, "24% increased Attack Speed", "15% less Global Damage", statOrder = { 1413, 10589 }, level = 1, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 60225, }, + ["WeaponTreeLocalAttackSpeedRangedLessDamage2"] = { type = "Spawn", tier = 2, "27% increased Attack Speed", "15% less Global Damage", statOrder = { 1413, 10589 }, level = 30, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 50569, }, + ["WeaponTreeLocalAttackSpeedRangedLessDamage3"] = { type = "Spawn", tier = 3, "30% increased Attack Speed", "15% less Global Damage", statOrder = { 1413, 10589 }, level = 60, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 25963, }, + ["WeaponTreeLocalAttackSpeed1"] = { type = "Spawn", tier = 1, "8% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHash = 24626, }, + ["WeaponTreeLocalAttackSpeed2"] = { type = "Spawn", tier = 2, "9% increased Attack Speed", statOrder = { 1413 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHash = 58373, }, + ["WeaponTreeLocalAttackSpeed3"] = { type = "Spawn", tier = 3, "10% increased Attack Speed", statOrder = { 1413 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHash = 11316, }, + ["WeaponTreeLocalAttackSpeedRanged1"] = { type = "Spawn", tier = 1, "5% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 15868, }, + ["WeaponTreeLocalAttackSpeedRanged2"] = { type = "Spawn", tier = 2, "6% increased Attack Speed", statOrder = { 1413 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 26108, }, + ["WeaponTreeLocalAttackSpeedRanged3"] = { type = "Spawn", tier = 3, "7% increased Attack Speed", statOrder = { 1413 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 1368, }, + ["WeaponTreeLocalAttackSpeedOnslaughtOnKill1"] = { type = "Spawn", tier = 1, "4% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1413, 2993 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 33250, }, + ["WeaponTreeLocalAttackSpeedOnslaughtOnKill2"] = { type = "Spawn", tier = 2, "5% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1413, 2993 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 118, }, + ["WeaponTreeLocalAttackSpeedOnslaughtOnKill3"] = { type = "Spawn", tier = 3, "6% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1413, 2993 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 26022, }, + ["WeaponTreeLocalAttackSpeedRangedOnslaughtOnKill1"] = { type = "Spawn", tier = 1, "3% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1413, 2993 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 33471, }, + ["WeaponTreeLocalAttackSpeedRangedOnslaughtOnKill2"] = { type = "Spawn", tier = 2, "4% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1413, 2993 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 38536, }, + ["WeaponTreeLocalAttackSpeedRangedOnslaughtOnKill3"] = { type = "Spawn", tier = 3, "5% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1413, 2993 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 14078, }, + ["WeaponTreeLocalAttackSpeedFrenzyChargeOnKill1"] = { type = "Spawn", tier = 1, "4% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1413, 2631 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 54143, }, + ["WeaponTreeLocalAttackSpeedFrenzyChargeOnKill2"] = { type = "Spawn", tier = 2, "5% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1413, 2631 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 61003, }, + ["WeaponTreeLocalAttackSpeedFrenzyChargeOnKill3"] = { type = "Spawn", tier = 3, "6% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1413, 2631 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 34535, }, + ["WeaponTreeLocalAttackSpeedRangedFrenzyChargeOnKill1"] = { type = "Spawn", tier = 1, "3% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1413, 2631 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 16269, }, + ["WeaponTreeLocalAttackSpeedRangedFrenzyChargeOnKill2"] = { type = "Spawn", tier = 2, "4% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1413, 2631 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 1610, }, + ["WeaponTreeLocalAttackSpeedRangedFrenzyChargeOnKill3"] = { type = "Spawn", tier = 3, "5% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1413, 2631 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 61889, }, + ["WeaponTreeLocalAttackSpeedLocalDoubleDamageChance1"] = { type = "Spawn", tier = 1, "25% reduced Attack Speed", "Attacks with this Weapon have 20% chance to deal Double Damage", statOrder = { 1413, 7927 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHash = 43063, }, + ["WeaponTreeLocalAttackSpeedLocalDoubleDamageChance2"] = { type = "Spawn", tier = 2, "25% reduced Attack Speed", "Attacks with this Weapon have 25% chance to deal Double Damage", statOrder = { 1413, 7927 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHash = 4773, }, + ["WeaponTreeLocalAttackSpeedLocalDoubleDamageChance3"] = { type = "Spawn", tier = 3, "25% reduced Attack Speed", "Attacks with this Weapon have 30% chance to deal Double Damage", statOrder = { 1413, 7927 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHash = 31759, }, + ["WeaponTreeLocalAttackSpeedRangedLocalDoubleDamageChance1"] = { type = "Spawn", tier = 1, "20% reduced Attack Speed", "Attacks with this Weapon have 15% chance to deal Double Damage", statOrder = { 1413, 7927 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 34378, }, + ["WeaponTreeLocalAttackSpeedRangedLocalDoubleDamageChance2"] = { type = "Spawn", tier = 2, "20% reduced Attack Speed", "Attacks with this Weapon have 20% chance to deal Double Damage", statOrder = { 1413, 7927 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 3455, }, + ["WeaponTreeLocalAttackSpeedRangedLocalDoubleDamageChance3"] = { type = "Spawn", tier = 3, "20% reduced Attack Speed", "Attacks with this Weapon have 25% chance to deal Double Damage", statOrder = { 1413, 7927 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 52903, }, + ["WeaponTreeLocalAlwaysHitReducedAttackSpeed"] = { type = "MergeOnly", tier = 1, "50% reduced Attack Speed", "Hits can't be Evaded", statOrder = { 1413, 2043 }, level = 60, group = "WeaponTreeAlwaysHitsAndLocalAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 625, 0 }, modTags = { }, tradeHash = 32122, }, + ["WeaponTreeLocalAlwaysHitReducedCriticalStrikeChance"] = { type = "MergeOnly", tier = 1, "-5% to Critical Strike Chance", "Hits can't be Evaded", statOrder = { 1463, 2043 }, level = 60, group = "WeaponTreeAlwaysHitsAndLocalCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 625, 0 }, modTags = { }, tradeHash = 49071, }, + ["WeaponTreeLocalAccuracyRating1"] = { type = "Spawn", tier = 1, "+150 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "WeaponTreeLocalAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 20722, }, + ["WeaponTreeLocalAccuracyRating2"] = { type = "Spawn", tier = 2, "+250 to Accuracy Rating", statOrder = { 2024 }, level = 30, group = "WeaponTreeLocalAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 42290, }, + ["WeaponTreeLocalAccuracyRating3"] = { type = "Spawn", tier = 3, "+350 to Accuracy Rating", statOrder = { 2024 }, level = 60, group = "WeaponTreeLocalAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 41211, }, + ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity1"] = { type = "Spawn", tier = 1, "5% increased Dexterity", "+80 to Accuracy Rating", statOrder = { 1185, 2024 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 61397, }, + ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2"] = { type = "Spawn", tier = 2, "5% increased Dexterity", "+160 to Accuracy Rating", statOrder = { 1185, 2024 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 32932, }, + ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity3"] = { type = "Spawn", tier = 3, "5% increased Dexterity", "+240 to Accuracy Rating", statOrder = { 1185, 2024 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 28958, }, + ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2h1"] = { type = "Spawn", tier = 1, "10% increased Dexterity", "+80 to Accuracy Rating", statOrder = { 1185, 2024 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 12761, }, + ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2h2"] = { type = "Spawn", tier = 2, "10% increased Dexterity", "+160 to Accuracy Rating", statOrder = { 1185, 2024 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 4740, }, + ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2h3"] = { type = "Spawn", tier = 3, "10% increased Dexterity", "+240 to Accuracy Rating", statOrder = { 1185, 2024 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 35595, }, + ["WeaponTreeLocalAccuracyRatingAndEvasion1"] = { type = "Spawn", tier = 1, "15% increased Evasion Rating", "+80 to Accuracy Rating", statOrder = { 1549, 2024 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 2290, }, + ["WeaponTreeLocalAccuracyRatingAndEvasion2"] = { type = "Spawn", tier = 2, "15% increased Evasion Rating", "+160 to Accuracy Rating", statOrder = { 1549, 2024 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 25253, }, + ["WeaponTreeLocalAccuracyRatingAndEvasion3"] = { type = "Spawn", tier = 3, "15% increased Evasion Rating", "+240 to Accuracy Rating", statOrder = { 1549, 2024 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 12478, }, + ["WeaponTreeLocalAccuracyRatingAndEvasion2h1"] = { type = "Spawn", tier = 1, "30% increased Evasion Rating", "+80 to Accuracy Rating", statOrder = { 1549, 2024 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 50707, }, + ["WeaponTreeLocalAccuracyRatingAndEvasion2h2"] = { type = "Spawn", tier = 2, "30% increased Evasion Rating", "+160 to Accuracy Rating", statOrder = { 1549, 2024 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 60140, }, + ["WeaponTreeLocalAccuracyRatingAndEvasion2h3"] = { type = "Spawn", tier = 3, "30% increased Evasion Rating", "+240 to Accuracy Rating", statOrder = { 1549, 2024 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 24831, }, + ["WeaponTreeSpellCriticalStrikeChanceSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "+40% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 31994, }, + ["WeaponTreeSpellCriticalStrikeChanceSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "+50% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 34073, }, + ["WeaponTreeSpellCriticalStrikeChanceSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "+60% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 22364, }, + ["WeaponTreeSpellCriticalStrikeChance2hSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "+60% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 21455, }, + ["WeaponTreeSpellCriticalStrikeChance2hSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "+80% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 56678, }, + ["WeaponTreeSpellCriticalStrikeChance2hSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "+100% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 10955, }, + ["WeaponTreeSpellCriticalStrikeChanceCriticalsDealNoExtraDamage1"] = { type = "Spawn", tier = 1, "Your Critical Strikes do not deal extra Damage", "+5% to Spell Critical Strike Chance", statOrder = { 2678, 10126 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 23367, }, + ["WeaponTreeSpellCriticalStrikeChanceCriticalsDealNoExtraDamage2"] = { type = "Spawn", tier = 2, "Your Critical Strikes do not deal extra Damage", "+5.5% to Spell Critical Strike Chance", statOrder = { 2678, 10126 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 9085, }, + ["WeaponTreeSpellCriticalStrikeChanceCriticalsDealNoExtraDamage3"] = { type = "Spawn", tier = 3, "Your Critical Strikes do not deal extra Damage", "+6% to Spell Critical Strike Chance", statOrder = { 2678, 10126 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 11462, }, + ["WeaponTreeSpellCriticalStrikeChance2hCriticalsDealNoExtraDamage1"] = { type = "Spawn", tier = 1, "Your Critical Strikes do not deal extra Damage", "+7% to Spell Critical Strike Chance", statOrder = { 2678, 10126 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 16787, }, + ["WeaponTreeSpellCriticalStrikeChance2hCriticalsDealNoExtraDamage2"] = { type = "Spawn", tier = 2, "Your Critical Strikes do not deal extra Damage", "+8% to Spell Critical Strike Chance", statOrder = { 2678, 10126 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 47469, }, + ["WeaponTreeSpellCriticalStrikeChance2hCriticalsDealNoExtraDamage3"] = { type = "Spawn", tier = 3, "Your Critical Strikes do not deal extra Damage", "+9% to Spell Critical Strike Chance", statOrder = { 2678, 10126 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 24273, }, + ["WeaponTreeSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "+0.4% to Spell Critical Strike Chance", statOrder = { 10126 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 43608, }, + ["WeaponTreeSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "+0.5% to Spell Critical Strike Chance", statOrder = { 10126 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 17606, }, + ["WeaponTreeSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "+0.6% to Spell Critical Strike Chance", statOrder = { 10126 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 28830, }, + ["WeaponTreeSpellCriticalStrikeChance2h1"] = { type = "Spawn", tier = 1, "+0.8% to Spell Critical Strike Chance", statOrder = { 10126 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, tradeHash = 58547, }, + ["WeaponTreeSpellCriticalStrikeChance2h2"] = { type = "Spawn", tier = 2, "+0.9% to Spell Critical Strike Chance", statOrder = { 10126 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, tradeHash = 3712, }, + ["WeaponTreeSpellCriticalStrikeChance2h3"] = { type = "Spawn", tier = 3, "+1% to Spell Critical Strike Chance", statOrder = { 10126 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, tradeHash = 53531, }, + ["WeaponTreeSpellCriticalStrikeChanceReducedSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "-30% to Critical Strike Multiplier for Spell Damage", "+1% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 60659, }, + ["WeaponTreeSpellCriticalStrikeChanceReducedSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "-30% to Critical Strike Multiplier for Spell Damage", "+1.25% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 41102, }, + ["WeaponTreeSpellCriticalStrikeChanceReducedSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "-30% to Critical Strike Multiplier for Spell Damage", "+1.5% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 47468, }, + ["WeaponTreeSpellCriticalStrikeChance2hReducedSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "-60% to Critical Strike Multiplier for Spell Damage", "+1.8% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 52168, }, + ["WeaponTreeSpellCriticalStrikeChance2hReducedSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "-60% to Critical Strike Multiplier for Spell Damage", "+2.2% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 34915, }, + ["WeaponTreeSpellCriticalStrikeChance2hReducedSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "-60% to Critical Strike Multiplier for Spell Damage", "+2.6% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 38785, }, + ["WeaponTreeSpellCriticalStrikeChanceReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "15% reduced Reservation Efficiency of Skills", "+0.8% to Spell Critical Strike Chance", statOrder = { 2230, 10126 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 62418, }, + ["WeaponTreeSpellCriticalStrikeChanceReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "15% reduced Reservation Efficiency of Skills", "+1% to Spell Critical Strike Chance", statOrder = { 2230, 10126 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 14609, }, + ["WeaponTreeSpellCriticalStrikeChanceReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "15% reduced Reservation Efficiency of Skills", "+1.2% to Spell Critical Strike Chance", statOrder = { 2230, 10126 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 25684, }, + ["WeaponTreeSpellCriticalStrikeChance2hReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "25% reduced Reservation Efficiency of Skills", "+1.2% to Spell Critical Strike Chance", statOrder = { 2230, 10126 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 38275, }, + ["WeaponTreeSpellCriticalStrikeChance2hReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "25% reduced Reservation Efficiency of Skills", "+1.6% to Spell Critical Strike Chance", statOrder = { 2230, 10126 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 6129, }, + ["WeaponTreeSpellCriticalStrikeChance2hReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "25% reduced Reservation Efficiency of Skills", "+2% to Spell Critical Strike Chance", statOrder = { 2230, 10126 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 48410, }, + ["WeaponTreeCastSpeedLessDamage1"] = { type = "Spawn", tier = 1, "18% more Cast Speed", "10% less Global Damage", statOrder = { 10587, 10589 }, level = 1, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 23639, }, + ["WeaponTreeCastSpeedLessDamage2"] = { type = "Spawn", tier = 2, "20% more Cast Speed", "10% less Global Damage", statOrder = { 10587, 10589 }, level = 30, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 26932, }, + ["WeaponTreeCastSpeedLessDamage3"] = { type = "Spawn", tier = 3, "22% more Cast Speed", "10% less Global Damage", statOrder = { 10587, 10589 }, level = 60, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 15178, }, + ["WeaponTreeCastSpeed2hLessDamage1"] = { type = "Spawn", tier = 1, "24% more Cast Speed", "15% less Global Damage", statOrder = { 10587, 10589 }, level = 1, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 63401, }, + ["WeaponTreeCastSpeed2hLessDamage2"] = { type = "Spawn", tier = 2, "27% more Cast Speed", "15% less Global Damage", statOrder = { 10587, 10589 }, level = 30, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 29927, }, + ["WeaponTreeCastSpeed2hLessDamage3"] = { type = "Spawn", tier = 3, "30% more Cast Speed", "15% less Global Damage", statOrder = { 10587, 10589 }, level = 60, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 34039, }, + ["WeaponTreeCastSpeed1"] = { type = "Spawn", tier = 1, "4% more Cast Speed", statOrder = { 10587 }, level = 1, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 37408, }, + ["WeaponTreeCastSpeed2"] = { type = "Spawn", tier = 2, "5% more Cast Speed", statOrder = { 10587 }, level = 30, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 45878, }, + ["WeaponTreeCastSpeed3"] = { type = "Spawn", tier = 3, "6% more Cast Speed", statOrder = { 10587 }, level = 60, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 33499, }, + ["WeaponTreeCastSpeed2h1"] = { type = "Spawn", tier = 1, "8% more Cast Speed", statOrder = { 10587 }, level = 1, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, tradeHash = 54292, }, + ["WeaponTreeCastSpeed2h2"] = { type = "Spawn", tier = 2, "9% more Cast Speed", statOrder = { 10587 }, level = 30, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, tradeHash = 38842, }, + ["WeaponTreeCastSpeed2h3"] = { type = "Spawn", tier = 3, "10% more Cast Speed", statOrder = { 10587 }, level = 60, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, tradeHash = 10092, }, + ["WeaponTreeCastSpeedSkillCost1"] = { type = "Spawn", tier = 1, "12% increased Cost of Skills", "6% more Cast Speed", statOrder = { 1881, 10587 }, level = 1, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 36332, }, + ["WeaponTreeCastSpeedSkillCost2"] = { type = "Spawn", tier = 2, "12% increased Cost of Skills", "7% more Cast Speed", statOrder = { 1881, 10587 }, level = 30, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 55569, }, + ["WeaponTreeCastSpeedSkillCost3"] = { type = "Spawn", tier = 3, "12% increased Cost of Skills", "8% more Cast Speed", statOrder = { 1881, 10587 }, level = 60, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 53040, }, + ["WeaponTreeCastSpeed2hSkillCost1"] = { type = "Spawn", tier = 1, "20% increased Cost of Skills", "10% more Cast Speed", statOrder = { 1881, 10587 }, level = 1, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 51153, }, + ["WeaponTreeCastSpeed2hSkillCost2"] = { type = "Spawn", tier = 2, "20% increased Cost of Skills", "12% more Cast Speed", statOrder = { 1881, 10587 }, level = 30, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 15989, }, + ["WeaponTreeCastSpeed2hSkillCost3"] = { type = "Spawn", tier = 3, "20% increased Cost of Skills", "14% more Cast Speed", statOrder = { 1881, 10587 }, level = 60, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 46240, }, + ["WeaponTreeCastSpeedAddedSpellDamageFromWeaponDamage1"] = { type = "Spawn", tier = 1, "Spells you Cast have Added Spell Damage equal to 12% of the Damage of this Weapon", "10% less Cast Speed", statOrder = { 10195, 10587 }, level = 10, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 7248, }, + ["WeaponTreeCastSpeedAddedSpellDamageFromWeaponDamage2"] = { type = "Spawn", tier = 2, "Spells you Cast have Added Spell Damage equal to 16% of the Damage of this Weapon", "10% less Cast Speed", statOrder = { 10195, 10587 }, level = 50, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 60533, }, + ["WeaponTreeCastSpeedAddedSpellDamageFromWeaponDamage3"] = { type = "Spawn", tier = 3, "Spells you Cast have Added Spell Damage equal to 20% of the Damage of this Weapon", "10% less Cast Speed", statOrder = { 10195, 10587 }, level = 80, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 22879, }, + ["WeaponTreeCastSpeed2hAddedSpellDamageFromWeaponDamage1"] = { type = "Spawn", tier = 1, "Spells you Cast have Added Spell Damage equal to 20% of the Damage of this Weapon", "15% less Cast Speed", statOrder = { 10195, 10587 }, level = 10, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 56322, }, + ["WeaponTreeCastSpeed2hAddedSpellDamageFromWeaponDamage2"] = { type = "Spawn", tier = 2, "Spells you Cast have Added Spell Damage equal to 25% of the Damage of this Weapon", "15% less Cast Speed", statOrder = { 10195, 10587 }, level = 50, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 40437, }, + ["WeaponTreeCastSpeed2hAddedSpellDamageFromWeaponDamage3"] = { type = "Spawn", tier = 3, "Spells you Cast have Added Spell Damage equal to 30% of the Damage of this Weapon", "15% less Cast Speed", statOrder = { 10195, 10587 }, level = 80, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 63146, }, + ["WeaponTreeBaseManaRegenLessMana1"] = { type = "Spawn", tier = 1, "Regenerate 1.5% of Mana per second", "15% less maximum Mana", statOrder = { 1581, 10611 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 37261, }, + ["WeaponTreeBaseManaRegenLessMana2"] = { type = "Spawn", tier = 2, "Regenerate 1.8% of Mana per second", "15% less maximum Mana", statOrder = { 1581, 10611 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 39008, }, + ["WeaponTreeBaseManaRegenLessMana3"] = { type = "Spawn", tier = 3, "Regenerate 2% of Mana per second", "15% less maximum Mana", statOrder = { 1581, 10611 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 62936, }, + ["WeaponTreeBaseManaRegen2hLessMana1"] = { type = "Spawn", tier = 1, "Regenerate 2% of Mana per second", "25% less maximum Mana", statOrder = { 1581, 10611 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 20780, }, + ["WeaponTreeBaseManaRegen2hLessMana2"] = { type = "Spawn", tier = 2, "Regenerate 2.5% of Mana per second", "25% less maximum Mana", statOrder = { 1581, 10611 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 30287, }, + ["WeaponTreeBaseManaRegen2hLessMana3"] = { type = "Spawn", tier = 3, "Regenerate 3% of Mana per second", "25% less maximum Mana", statOrder = { 1581, 10611 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 19977, }, + ["WeaponTreeBaseManaRegenReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 1% of Mana per second", "20% reduced Reservation Efficiency of Skills", statOrder = { 1581, 2230 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 29064, }, + ["WeaponTreeBaseManaRegenReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 1.3% of Mana per second", "20% reduced Reservation Efficiency of Skills", statOrder = { 1581, 2230 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 14608, }, + ["WeaponTreeBaseManaRegenReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 1.5% of Mana per second", "20% reduced Reservation Efficiency of Skills", statOrder = { 1581, 2230 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 37115, }, + ["WeaponTreeBaseManaRegen2hReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 1.5% of Mana per second", "30% reduced Reservation Efficiency of Skills", statOrder = { 1581, 2230 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 195, }, + ["WeaponTreeBaseManaRegen2hReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 2% of Mana per second", "30% reduced Reservation Efficiency of Skills", statOrder = { 1581, 2230 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 24763, }, + ["WeaponTreeBaseManaRegen2hReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 2.5% of Mana per second", "30% reduced Reservation Efficiency of Skills", statOrder = { 1581, 2230 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 52914, }, + ["WeaponTreeBaseManaRegen1"] = { type = "Spawn", tier = 1, "Regenerate 0.5% of Mana per second", statOrder = { 1581 }, level = 1, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 27842, }, + ["WeaponTreeBaseManaRegen2"] = { type = "Spawn", tier = 2, "Regenerate 0.6% of Mana per second", statOrder = { 1581 }, level = 30, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 12001, }, + ["WeaponTreeBaseManaRegen3"] = { type = "Spawn", tier = 3, "Regenerate 0.7% of Mana per second", statOrder = { 1581 }, level = 60, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 16250, }, + ["WeaponTreeBaseManaRegen2h1"] = { type = "Spawn", tier = 1, "Regenerate 0.8% of Mana per second", statOrder = { 1581 }, level = 1, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, tradeHash = 54022, }, + ["WeaponTreeBaseManaRegen2h2"] = { type = "Spawn", tier = 2, "Regenerate 0.9% of Mana per second", statOrder = { 1581 }, level = 30, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, tradeHash = 5949, }, + ["WeaponTreeBaseManaRegen2h3"] = { type = "Spawn", tier = 3, "Regenerate 1% of Mana per second", statOrder = { 1581 }, level = 60, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, tradeHash = 44531, }, + ["WeaponTreeBaseManaRegenMoreMana1"] = { type = "Spawn", tier = 1, "Regenerate 0.2% of Mana per second", "5% more maximum Mana", statOrder = { 1581, 10611 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 62254, }, + ["WeaponTreeBaseManaRegenMoreMana2"] = { type = "Spawn", tier = 2, "Regenerate 0.3% of Mana per second", "5% more maximum Mana", statOrder = { 1581, 10611 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 53499, }, + ["WeaponTreeBaseManaRegenMoreMana3"] = { type = "Spawn", tier = 3, "Regenerate 0.4% of Mana per second", "5% more maximum Mana", statOrder = { 1581, 10611 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 56648, }, + ["WeaponTreeBaseManaRegen2hMoreMana1"] = { type = "Spawn", tier = 1, "Regenerate 0.5% of Mana per second", "8% more maximum Mana", statOrder = { 1581, 10611 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 37137, }, + ["WeaponTreeBaseManaRegen2hMoreMana2"] = { type = "Spawn", tier = 2, "Regenerate 0.6% of Mana per second", "8% more maximum Mana", statOrder = { 1581, 10611 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 43592, }, + ["WeaponTreeBaseManaRegen2hMoreMana3"] = { type = "Spawn", tier = 3, "Regenerate 0.7% of Mana per second", "8% more maximum Mana", statOrder = { 1581, 10611 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 50252, }, + ["WeaponTreeBaseManaRegenManaCostOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 0.2% of Mana per second", "10% increased Mana Cost of Skills", statOrder = { 1581, 1883 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 11967, }, + ["WeaponTreeBaseManaRegenManaCostOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 0.3% of Mana per second", "10% increased Mana Cost of Skills", statOrder = { 1581, 1883 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 45101, }, + ["WeaponTreeBaseManaRegenManaCostOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 0.4% of Mana per second", "10% increased Mana Cost of Skills", statOrder = { 1581, 1883 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 52532, }, + ["WeaponTreeBaseManaRegen2hManaCostOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 0.5% of Mana per second", "15% increased Mana Cost of Skills", statOrder = { 1581, 1883 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 7155, }, + ["WeaponTreeBaseManaRegen2hManaCostOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 0.6% of Mana per second", "15% increased Mana Cost of Skills", statOrder = { 1581, 1883 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 5289, }, + ["WeaponTreeBaseManaRegen2hManaCostOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 0.7% of Mana per second", "15% increased Mana Cost of Skills", statOrder = { 1581, 1883 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 61183, }, + ["WeaponTreeMinionCriticalStrikeChanceMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions have +1% to Critical Strike Chance", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 9267, 9270 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 55506, }, + ["WeaponTreeMinionCriticalStrikeChanceMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions have +1.2% to Critical Strike Chance", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 9267, 9270 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 63201, }, + ["WeaponTreeMinionCriticalStrikeChanceMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions have +1.4% to Critical Strike Chance", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 9267, 9270 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 43718, }, + ["WeaponTreeMinionCriticalStrikeChance2hMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions have +1.7% to Critical Strike Chance", "Minions have 15% reduced Attack and Cast Speed", statOrder = { 9267, 9270 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 59604, }, + ["WeaponTreeMinionCriticalStrikeChance2hMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions have +2% to Critical Strike Chance", "Minions have 15% reduced Attack and Cast Speed", statOrder = { 9267, 9270 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 18089, }, + ["WeaponTreeMinionCriticalStrikeChance2hMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions have +2.3% to Critical Strike Chance", "Minions have 15% reduced Attack and Cast Speed", statOrder = { 9267, 9270 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 19694, }, + ["WeaponTreeMinionReducedCriticalStrikeChanceMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have -1.5% to Critical Strike Chance", "Minions have +60% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 19183, }, + ["WeaponTreeMinionReducedCriticalStrikeChanceMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have -1.5% to Critical Strike Chance", "Minions have +80% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 27623, }, + ["WeaponTreeMinionReducedCriticalStrikeChanceMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have -1.5% to Critical Strike Chance", "Minions have +100% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 15181, }, + ["WeaponTreeMinionReducedCriticalStrikeChance2hMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have -1.5% to Critical Strike Chance", "Minions have +100% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 14857, }, + ["WeaponTreeMinionReducedCriticalStrikeChance2hMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have -1.5% to Critical Strike Chance", "Minions have +130% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 59962, }, + ["WeaponTreeMinionReducedCriticalStrikeChance2hMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have -1.5% to Critical Strike Chance", "Minions have +160% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 35425, }, + ["WeaponTreeMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions have +0.4% to Critical Strike Chance", statOrder = { 9267 }, level = 1, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 65116, }, + ["WeaponTreeMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions have +0.6% to Critical Strike Chance", statOrder = { 9267 }, level = 30, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 37113, }, + ["WeaponTreeMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions have +0.8% to Critical Strike Chance", statOrder = { 9267 }, level = 60, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 20535, }, + ["WeaponTreeMinionCriticalStrikeChance2h1"] = { type = "Spawn", tier = 1, "Minions have +0.7% to Critical Strike Chance", statOrder = { 9267 }, level = 1, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 60460, }, + ["WeaponTreeMinionCriticalStrikeChance2h2"] = { type = "Spawn", tier = 2, "Minions have +1% to Critical Strike Chance", statOrder = { 9267 }, level = 30, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 63053, }, + ["WeaponTreeMinionCriticalStrikeChance2h3"] = { type = "Spawn", tier = 3, "Minions have +1.3% to Critical Strike Chance", statOrder = { 9267 }, level = 60, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 33715, }, + ["WeaponTreeMinionCriticalStrikeChanceMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have +0.2% to Critical Strike Chance", "Minions have +25% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 61306, }, + ["WeaponTreeMinionCriticalStrikeChanceMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have +0.3% to Critical Strike Chance", "Minions have +25% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 10891, }, + ["WeaponTreeMinionCriticalStrikeChanceMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have +0.4% to Critical Strike Chance", "Minions have +25% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 16716, }, + ["WeaponTreeMinionCriticalStrikeChance2hMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have +0.3% to Critical Strike Chance", "Minions have +35% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 23328, }, + ["WeaponTreeMinionCriticalStrikeChance2hMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have +0.5% to Critical Strike Chance", "Minions have +35% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 34473, }, + ["WeaponTreeMinionCriticalStrikeChance2hMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have +0.7% to Critical Strike Chance", "Minions have +35% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 7914, }, + ["WeaponTreeMinionCriticalStrikeChanceReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1% to Critical Strike Chance", statOrder = { 2145, 9267 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 15153, }, + ["WeaponTreeMinionCriticalStrikeChanceReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1.2% to Critical Strike Chance", statOrder = { 2145, 9267 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 60254, }, + ["WeaponTreeMinionCriticalStrikeChanceReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1.4% to Critical Strike Chance", statOrder = { 2145, 9267 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 25573, }, + ["WeaponTreeMinionCriticalStrikeChance2hReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "25% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1.7% to Critical Strike Chance", statOrder = { 2145, 9267 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 461, }, + ["WeaponTreeMinionCriticalStrikeChance2hReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "25% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +2% to Critical Strike Chance", statOrder = { 2145, 9267 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 45166, }, + ["WeaponTreeMinionCriticalStrikeChance2hReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "25% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +2.3% to Critical Strike Chance", statOrder = { 2145, 9267 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 6040, }, + ["WeaponTreeMinionAttackAndCastSpeedMinionNoExtraCritDamage1"] = { type = "Spawn", tier = 1, "Minions have 12% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9270, 9324 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 35298, }, + ["WeaponTreeMinionAttackAndCastSpeedMinionNoExtraCritDamage2"] = { type = "Spawn", tier = 2, "Minions have 16% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9270, 9324 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 38943, }, + ["WeaponTreeMinionAttackAndCastSpeedMinionNoExtraCritDamage3"] = { type = "Spawn", tier = 3, "Minions have 20% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9270, 9324 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 30738, }, + ["WeaponTreeMinionAttackAndCastSpeed2hMinionNoExtraCritDamage1"] = { type = "Spawn", tier = 1, "Minions have 18% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9270, 9324 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 3646, }, + ["WeaponTreeMinionAttackAndCastSpeed2hMinionNoExtraCritDamage2"] = { type = "Spawn", tier = 2, "Minions have 24% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9270, 9324 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 1020, }, + ["WeaponTreeMinionAttackAndCastSpeed2hMinionNoExtraCritDamage3"] = { type = "Spawn", tier = 3, "Minions have 30% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9270, 9324 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 40386, }, + ["WeaponTreeMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions have 8% increased Attack and Cast Speed", statOrder = { 9270 }, level = 1, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 41072, }, + ["WeaponTreeMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions have 10% increased Attack and Cast Speed", statOrder = { 9270 }, level = 30, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 1439, }, + ["WeaponTreeMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions have 12% increased Attack and Cast Speed", statOrder = { 9270 }, level = 60, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 33886, }, + ["WeaponTreeMinionAttackAndCastSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 14% increased Attack and Cast Speed", statOrder = { 9270 }, level = 1, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 9467, }, + ["WeaponTreeMinionAttackAndCastSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 18% increased Attack and Cast Speed", statOrder = { 9270 }, level = 30, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 38455, }, + ["WeaponTreeMinionAttackAndCastSpeed2h3"] = { type = "Spawn", tier = 3, "Minions have 22% increased Attack and Cast Speed", statOrder = { 9270 }, level = 60, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, tradeHash = 18132, }, + ["WeaponTreeMinionAttackAndCastSpeedMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 12% increased Attack and Cast Speed", "Minions take 15% increased Damage", statOrder = { 9270, 9299 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 32286, }, + ["WeaponTreeMinionAttackAndCastSpeedMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 16% increased Attack and Cast Speed", "Minions take 15% increased Damage", statOrder = { 9270, 9299 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 19795, }, + ["WeaponTreeMinionAttackAndCastSpeedMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 20% increased Attack and Cast Speed", "Minions take 15% increased Damage", statOrder = { 9270, 9299 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 953, }, + ["WeaponTreeMinionAttackAndCastSpeed2hMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 18% increased Attack and Cast Speed", "Minions take 25% increased Damage", statOrder = { 9270, 9299 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 35834, }, + ["WeaponTreeMinionAttackAndCastSpeed2hMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 24% increased Attack and Cast Speed", "Minions take 25% increased Damage", statOrder = { 9270, 9299 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 23800, }, + ["WeaponTreeMinionAttackAndCastSpeed2hMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 30% increased Attack and Cast Speed", "Minions take 25% increased Damage", statOrder = { 9270, 9299 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 4631, }, + ["WeaponTreeMinionAttackAndCastSpeedReducedMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 4% increased Attack and Cast Speed", "Minions take 10% reduced Damage", statOrder = { 9270, 9299 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 62716, }, + ["WeaponTreeMinionAttackAndCastSpeedReducedMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 5% increased Attack and Cast Speed", "Minions take 10% reduced Damage", statOrder = { 9270, 9299 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 37671, }, + ["WeaponTreeMinionAttackAndCastSpeedReducedMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 6% increased Attack and Cast Speed", "Minions take 10% reduced Damage", statOrder = { 9270, 9299 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 21079, }, + ["WeaponTreeMinionAttackAndCastSpeed2hReducedMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 8% increased Attack and Cast Speed", "Minions take 15% reduced Damage", statOrder = { 9270, 9299 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 12574, }, + ["WeaponTreeMinionAttackAndCastSpeed2hReducedMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 10% increased Attack and Cast Speed", "Minions take 15% reduced Damage", statOrder = { 9270, 9299 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 23110, }, + ["WeaponTreeMinionAttackAndCastSpeed2hReducedMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 12% increased Attack and Cast Speed", "Minions take 15% reduced Damage", statOrder = { 9270, 9299 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 32879, }, + ["WeaponTreeMinionAccuracyReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +400 to Accuracy Rating", statOrder = { 2145, 9264 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 63500, }, + ["WeaponTreeMinionAccuracyReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +500 to Accuracy Rating", statOrder = { 2145, 9264 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 8930, }, + ["WeaponTreeMinionAccuracyReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +600 to Accuracy Rating", statOrder = { 2145, 9264 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 55994, }, + ["WeaponTreeMinionAccuracy2hReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +700 to Accuracy Rating", statOrder = { 2145, 9264 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 37196, }, + ["WeaponTreeMinionAccuracy2hReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +850 to Accuracy Rating", statOrder = { 2145, 9264 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 13450, }, + ["WeaponTreeMinionAccuracy2hReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1000 to Accuracy Rating", statOrder = { 2145, 9264 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 4381, }, + ["WeaponTreeMinionAccuracy1"] = { type = "Spawn", tier = 1, "Minions have +200 to Accuracy Rating", statOrder = { 9264 }, level = 1, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 47097, }, + ["WeaponTreeMinionAccuracy2"] = { type = "Spawn", tier = 2, "Minions have +250 to Accuracy Rating", statOrder = { 9264 }, level = 30, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 10038, }, + ["WeaponTreeMinionAccuracy3"] = { type = "Spawn", tier = 3, "Minions have +300 to Accuracy Rating", statOrder = { 9264 }, level = 60, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 63695, }, + ["WeaponTreeMinionAccuracy2h1"] = { type = "Spawn", tier = 1, "Minions have +300 to Accuracy Rating", statOrder = { 9264 }, level = 1, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 65408, }, + ["WeaponTreeMinionAccuracy2h2"] = { type = "Spawn", tier = 2, "Minions have +400 to Accuracy Rating", statOrder = { 9264 }, level = 30, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 52588, }, + ["WeaponTreeMinionAccuracy2h3"] = { type = "Spawn", tier = 3, "Minions have +500 to Accuracy Rating", statOrder = { 9264 }, level = 60, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 13322, }, + ["WeaponTreeMinionAccuracyMinionEvasion1"] = { type = "Spawn", tier = 1, "Minions have +100 to Accuracy Rating", "Minions have 25% increased Evasion Rating", statOrder = { 9264, 9304 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 23662, }, + ["WeaponTreeMinionAccuracyMinionEvasion2"] = { type = "Spawn", tier = 2, "Minions have +150 to Accuracy Rating", "Minions have 25% increased Evasion Rating", statOrder = { 9264, 9304 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 41323, }, + ["WeaponTreeMinionAccuracyMinionEvasion3"] = { type = "Spawn", tier = 3, "Minions have +200 to Accuracy Rating", "Minions have 25% increased Evasion Rating", statOrder = { 9264, 9304 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 59684, }, + ["WeaponTreeMinionAccuracy2hMinionEvasion1"] = { type = "Spawn", tier = 1, "Minions have +160 to Accuracy Rating", "Minions have 40% increased Evasion Rating", statOrder = { 9264, 9304 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 35654, }, + ["WeaponTreeMinionAccuracy2hMinionEvasion2"] = { type = "Spawn", tier = 2, "Minions have +240 to Accuracy Rating", "Minions have 40% increased Evasion Rating", statOrder = { 9264, 9304 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 50537, }, + ["WeaponTreeMinionAccuracy2hMinionEvasion3"] = { type = "Spawn", tier = 3, "Minions have +320 to Accuracy Rating", "Minions have 40% increased Evasion Rating", statOrder = { 9264, 9304 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 36539, }, + ["WeaponTreeMinionAlwaysHitMinionCannotCrit"] = { type = "Spawn", tier = 1, "Minions never deal Critical Strikes", "Minions' Hits can't be Evaded", statOrder = { 9279, 9307 }, level = 60, group = "WeaponTreeMinionAlwaysHitAndCannotCrit", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHash = 64231, }, + ["WeaponTreeSpellBlockNoChanceToBlock1"] = { type = "Spawn", tier = 1, "16% Chance to Block Spell Damage", "No Chance to Block", statOrder = { 1160, 3266 }, level = 15, group = "WeaponTreeSpellBlockNoChanceToBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, tradeHash = 38146, }, + ["WeaponTreeSpellBlockNoChanceToBlock2"] = { type = "Spawn", tier = 2, "20% Chance to Block Spell Damage", "No Chance to Block", statOrder = { 1160, 3266 }, level = 48, group = "WeaponTreeSpellBlockNoChanceToBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, tradeHash = 45946, }, + ["WeaponTreeSpellBlockNoChanceToBlock3"] = { type = "Spawn", tier = 3, "24% Chance to Block Spell Damage", "No Chance to Block", statOrder = { 1160, 3266 }, level = 78, group = "WeaponTreeSpellBlockNoChanceToBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, tradeHash = 15859, }, + ["WeaponTreeSpellBlockReducedLocalBlock1"] = { type = "Spawn", tier = 1, "8% Chance to Block Spell Damage", "-5% Chance to Block", statOrder = { 1160, 2249 }, level = 1, group = "WeaponTreeSpellBlockReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 16794, }, + ["WeaponTreeSpellBlockReducedLocalBlock2"] = { type = "Spawn", tier = 2, "10% Chance to Block Spell Damage", "-5% Chance to Block", statOrder = { 1160, 2249 }, level = 35, group = "WeaponTreeSpellBlockReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 46204, }, + ["WeaponTreeSpellBlockReducedLocalBlock3"] = { type = "Spawn", tier = 3, "12% Chance to Block Spell Damage", "-5% Chance to Block", statOrder = { 1160, 2249 }, level = 70, group = "WeaponTreeSpellBlockReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 61128, }, + ["WeaponTreeSpellBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "8% Chance to Block Spell Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 1160, 4996 }, level = 1, group = "WeaponTreeSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 29676, }, + ["WeaponTreeSpellBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "10% Chance to Block Spell Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 1160, 4996 }, level = 35, group = "WeaponTreeSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 45943, }, + ["WeaponTreeSpellBlockDamageFromBlockedHits3"] = { type = "Spawn", tier = 3, "12% Chance to Block Spell Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 1160, 4996 }, level = 70, group = "WeaponTreeSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 13479, }, + ["WeaponTreeSpellBlock1"] = { type = "Spawn", tier = 1, "3% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "WeaponTreeSpellBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHash = 44918, }, + ["WeaponTreeSpellBlock2"] = { type = "Spawn", tier = 2, "4% Chance to Block Spell Damage", statOrder = { 1160 }, level = 35, group = "WeaponTreeSpellBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHash = 37309, }, + ["WeaponTreeSpellBlock3"] = { type = "Spawn", tier = 3, "5% Chance to Block Spell Damage", statOrder = { 1160 }, level = 70, group = "WeaponTreeSpellBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHash = 21290, }, + ["WeaponTreeSpellBlockMoreMana1"] = { type = "Spawn", tier = 1, "2% Chance to Block Spell Damage", "5% more maximum Mana", statOrder = { 1160, 10611 }, level = 48, group = "WeaponTreeSpellBlockMoreMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 38645, }, + ["WeaponTreeSpellBlockMoreMana2"] = { type = "Spawn", tier = 2, "3% Chance to Block Spell Damage", "5% more maximum Mana", statOrder = { 1160, 10611 }, level = 78, group = "WeaponTreeSpellBlockMoreMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 27584, }, + ["WeaponTreeLocalBlockCannotBlockSpells1"] = { type = "Spawn", tier = 1, "+8% Chance to Block", "Cannot Block Spell Damage", statOrder = { 2249, 5428 }, level = 15, group = "WeaponTreeLocalBlockCannotBlockSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, tradeHash = 3453, }, + ["WeaponTreeLocalBlockCannotBlockSpells2"] = { type = "Spawn", tier = 2, "+10% Chance to Block", "Cannot Block Spell Damage", statOrder = { 2249, 5428 }, level = 48, group = "WeaponTreeLocalBlockCannotBlockSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, tradeHash = 35885, }, + ["WeaponTreeLocalBlockCannotBlockSpells3"] = { type = "Spawn", tier = 3, "+12% Chance to Block", "Cannot Block Spell Damage", statOrder = { 2249, 5428 }, level = 78, group = "WeaponTreeLocalBlockCannotBlockSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, tradeHash = 10740, }, + ["WeaponTreeLocalBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "+8% Chance to Block", "You take 10% of Damage from Blocked Hits", statOrder = { 2249, 4996 }, level = 1, group = "WeaponTreeLocalBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 61910, }, + ["WeaponTreeLocalBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "+10% Chance to Block", "You take 10% of Damage from Blocked Hits", statOrder = { 2249, 4996 }, level = 35, group = "WeaponTreeLocalBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 31334, }, + ["WeaponTreeLocalBlockDamageFromBlockedHits3"] = { type = "Spawn", tier = 3, "+12% Chance to Block", "You take 10% of Damage from Blocked Hits", statOrder = { 2249, 4996 }, level = 70, group = "WeaponTreeLocalBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 10653, }, + ["WeaponTreeLocalBlockReducedLocalDefences1"] = { type = "Spawn", tier = 1, "40% reduced Armour, Evasion and Energy Shield", "+6% Chance to Block", statOrder = { 1555, 2249 }, level = 1, group = "WeaponTreeLocalBlockReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 38253, }, + ["WeaponTreeLocalBlockReducedLocalDefences2"] = { type = "Spawn", tier = 2, "40% reduced Armour, Evasion and Energy Shield", "+7% Chance to Block", statOrder = { 1555, 2249 }, level = 35, group = "WeaponTreeLocalBlockReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 55499, }, + ["WeaponTreeLocalBlockReducedLocalDefences3"] = { type = "Spawn", tier = 3, "40% reduced Armour, Evasion and Energy Shield", "+8% Chance to Block", statOrder = { 1555, 2249 }, level = 70, group = "WeaponTreeLocalBlockReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 53967, }, + ["WeaponTreeLocalBlock1"] = { type = "Spawn", tier = 1, "+3% Chance to Block", statOrder = { 2249 }, level = 1, group = "WeaponTreeLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHash = 62967, }, + ["WeaponTreeLocalBlock2"] = { type = "Spawn", tier = 2, "+4% Chance to Block", statOrder = { 2249 }, level = 35, group = "WeaponTreeLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHash = 53291, }, + ["WeaponTreeLocalBlock3"] = { type = "Spawn", tier = 3, "+5% Chance to Block", statOrder = { 2249 }, level = 70, group = "WeaponTreeLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHash = 49101, }, + ["WeaponTreeLocalBlockLifeOnBlock1"] = { type = "Spawn", tier = 1, "30 Life gained when you Block", "+2% Chance to Block", statOrder = { 1757, 2249 }, level = 10, group = "WeaponTreeLocalBlockLifeOnBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 22831, }, + ["WeaponTreeLocalBlockLifeOnBlock2"] = { type = "Spawn", tier = 2, "30 Life gained when you Block", "+3% Chance to Block", statOrder = { 1757, 2249 }, level = 42, group = "WeaponTreeLocalBlockLifeOnBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 35461, }, + ["WeaponTreeLocalBlockBlockRecovery1"] = { type = "Spawn", tier = 1, "30% increased Block Recovery", "+2% Chance to Block", statOrder = { 1167, 2249 }, level = 1, group = "WeaponTreeLocalBlockBlockRecovery", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 26072, }, + ["WeaponTreeLocalBlockBlockRecovery2"] = { type = "Spawn", tier = 2, "30% increased Block Recovery", "+3% Chance to Block", statOrder = { 1167, 2249 }, level = 35, group = "WeaponTreeLocalBlockBlockRecovery", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 58091, }, + ["WeaponTreeLocalDefencesReducedMaximumLife1"] = { type = "Spawn", tier = 1, "40% increased Armour, Evasion and Energy Shield", "5% reduced maximum Life", statOrder = { 1555, 1571 }, level = 10, group = "WeaponTreeLocalDefencesReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 767, }, + ["WeaponTreeLocalDefencesReducedMaximumLife2"] = { type = "Spawn", tier = 2, "50% increased Armour, Evasion and Energy Shield", "5% reduced maximum Life", statOrder = { 1555, 1571 }, level = 42, group = "WeaponTreeLocalDefencesReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 7636, }, + ["WeaponTreeLocalDefencesReducedMaximumLife3"] = { type = "Spawn", tier = 3, "60% increased Armour, Evasion and Energy Shield", "5% reduced maximum Life", statOrder = { 1555, 1571 }, level = 75, group = "WeaponTreeLocalDefencesReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 28204, }, + ["WeaponTreeLocalDefencesReducedLocalBlock1"] = { type = "Spawn", tier = 1, "40% increased Armour, Evasion and Energy Shield", "-5% Chance to Block", statOrder = { 1555, 2249 }, level = 1, group = "WeaponTreeLocalDefencesReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 12299, }, + ["WeaponTreeLocalDefencesReducedLocalBlock2"] = { type = "Spawn", tier = 2, "50% increased Armour, Evasion and Energy Shield", "-5% Chance to Block", statOrder = { 1555, 2249 }, level = 35, group = "WeaponTreeLocalDefencesReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 35506, }, + ["WeaponTreeLocalDefencesReducedLocalBlock3"] = { type = "Spawn", tier = 3, "60% increased Armour, Evasion and Energy Shield", "-5% Chance to Block", statOrder = { 1555, 2249 }, level = 70, group = "WeaponTreeLocalDefencesReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 49542, }, + ["WeaponTreeLocalDefences1"] = { type = "Spawn", tier = 1, "24% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 1, group = "WeaponTreeLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 25922, }, + ["WeaponTreeLocalDefences2"] = { type = "Spawn", tier = 2, "32% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 35, group = "WeaponTreeLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 51270, }, + ["WeaponTreeLocalDefences3"] = { type = "Spawn", tier = 3, "40% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 70, group = "WeaponTreeLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 56743, }, + ["WeaponTreeLocalDefencesReflectDamageTaken1"] = { type = "Spawn", tier = 1, "40% of Damage from your Hits cannot be Reflected", "15% increased Armour, Evasion and Energy Shield", statOrder = { 7, 1555 }, level = 20, group = "WeaponTreeLocalDefencesReflectDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 17105, }, + ["WeaponTreeLocalDefencesReflectDamageTaken2"] = { type = "Spawn", tier = 2, "40% of Damage from your Hits cannot be Reflected", "20% increased Armour, Evasion and Energy Shield", statOrder = { 7, 1555 }, level = 20, group = "WeaponTreeLocalDefencesReflectDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 7426, }, + ["WeaponTreeLocalDefencesReflectDamageTaken3"] = { type = "Spawn", tier = 3, "40% of Damage from your Hits cannot be Reflected", "25% increased Armour, Evasion and Energy Shield", statOrder = { 7, 1555 }, level = 20, group = "WeaponTreeLocalDefencesReflectDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 1499, }, + ["WeaponTreeLocalDefencesOffHandAttackDamage1"] = { type = "Spawn", tier = 1, "25% increased Attack Damage with Off Hand", "15% increased Armour, Evasion and Energy Shield", statOrder = { 1283, 1555 }, level = 10, group = "WeaponTreeLocalDefencesOffHandAttackDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 8978, }, + ["WeaponTreeLocalDefencesOffHandAttackDamage2"] = { type = "Spawn", tier = 2, "25% increased Attack Damage with Off Hand", "20% increased Armour, Evasion and Energy Shield", statOrder = { 1283, 1555 }, level = 42, group = "WeaponTreeLocalDefencesOffHandAttackDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 46560, }, + ["WeaponTreeLocalDefencesOffHandAttackDamage3"] = { type = "Spawn", tier = 3, "25% increased Attack Damage with Off Hand", "25% increased Armour, Evasion and Energy Shield", statOrder = { 1283, 1555 }, level = 75, group = "WeaponTreeLocalDefencesOffHandAttackDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 23032, }, + ["WeaponTreeFireResistanceReducedColdResistance1"] = { type = "Spawn", tier = 1, "+30% to Fire Resistance", "-20% to Cold Resistance", statOrder = { 1625, 1631 }, level = 1, group = "WeaponTreeFireResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 48170, }, + ["WeaponTreeFireResistanceReducedColdResistance2"] = { type = "Spawn", tier = 2, "+36% to Fire Resistance", "-20% to Cold Resistance", statOrder = { 1625, 1631 }, level = 35, group = "WeaponTreeFireResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 46255, }, + ["WeaponTreeFireResistanceReducedColdResistance3"] = { type = "Spawn", tier = 3, "+42% to Fire Resistance", "-20% to Cold Resistance", statOrder = { 1625, 1631 }, level = 70, group = "WeaponTreeFireResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 1939, }, + ["WeaponTreeFireResistanceReducedLightningResistance1"] = { type = "Spawn", tier = 1, "+30% to Fire Resistance", "-20% to Lightning Resistance", statOrder = { 1625, 1636 }, level = 1, group = "WeaponTreeFireResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 34076, }, + ["WeaponTreeFireResistanceReducedLightningResistance2"] = { type = "Spawn", tier = 2, "+36% to Fire Resistance", "-20% to Lightning Resistance", statOrder = { 1625, 1636 }, level = 35, group = "WeaponTreeFireResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 64548, }, + ["WeaponTreeFireResistanceReducedLightningResistance3"] = { type = "Spawn", tier = 3, "+42% to Fire Resistance", "-20% to Lightning Resistance", statOrder = { 1625, 1636 }, level = 70, group = "WeaponTreeFireResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 55594, }, + ["WeaponTreeColdResistanceReducedFireResistance1"] = { type = "Spawn", tier = 1, "-20% to Fire Resistance", "+30% to Cold Resistance", statOrder = { 1625, 1631 }, level = 1, group = "WeaponTreeColdResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 26425, }, + ["WeaponTreeColdResistanceReducedFireResistance2"] = { type = "Spawn", tier = 2, "-20% to Fire Resistance", "+36% to Cold Resistance", statOrder = { 1625, 1631 }, level = 35, group = "WeaponTreeColdResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 63721, }, + ["WeaponTreeColdResistanceReducedFireResistance3"] = { type = "Spawn", tier = 3, "-20% to Fire Resistance", "+42% to Cold Resistance", statOrder = { 1625, 1631 }, level = 70, group = "WeaponTreeColdResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 26553, }, + ["WeaponTreeColdResistanceReducedLightningResistance1"] = { type = "Spawn", tier = 1, "+30% to Cold Resistance", "-20% to Lightning Resistance", statOrder = { 1631, 1636 }, level = 1, group = "WeaponTreeColdResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 46096, }, + ["WeaponTreeColdResistanceReducedLightningResistance2"] = { type = "Spawn", tier = 2, "+36% to Cold Resistance", "-20% to Lightning Resistance", statOrder = { 1631, 1636 }, level = 35, group = "WeaponTreeColdResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 4706, }, + ["WeaponTreeColdResistanceReducedLightningResistance3"] = { type = "Spawn", tier = 3, "+42% to Cold Resistance", "-20% to Lightning Resistance", statOrder = { 1631, 1636 }, level = 70, group = "WeaponTreeColdResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 48151, }, + ["WeaponTreeLightningResistanceReducedColdResistance1"] = { type = "Spawn", tier = 1, "-20% to Cold Resistance", "+30% to Lightning Resistance", statOrder = { 1631, 1636 }, level = 1, group = "WeaponTreeLightningResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 39456, }, + ["WeaponTreeLightningResistanceReducedColdResistance2"] = { type = "Spawn", tier = 2, "-20% to Cold Resistance", "+36% to Lightning Resistance", statOrder = { 1631, 1636 }, level = 35, group = "WeaponTreeLightningResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 33348, }, + ["WeaponTreeLightningResistanceReducedColdResistance3"] = { type = "Spawn", tier = 3, "-20% to Cold Resistance", "+42% to Lightning Resistance", statOrder = { 1631, 1636 }, level = 70, group = "WeaponTreeLightningResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 55088, }, + ["WeaponTreeLightningResistanceReducedFireResistance1"] = { type = "Spawn", tier = 1, "-20% to Fire Resistance", "+30% to Lightning Resistance", statOrder = { 1625, 1636 }, level = 1, group = "WeaponTreeLightningResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 48524, }, + ["WeaponTreeLightningResistanceReducedFireResistance2"] = { type = "Spawn", tier = 2, "-20% to Fire Resistance", "+36% to Lightning Resistance", statOrder = { 1625, 1636 }, level = 35, group = "WeaponTreeLightningResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 4743, }, + ["WeaponTreeLightningResistanceReducedFireResistance3"] = { type = "Spawn", tier = 3, "-20% to Fire Resistance", "+42% to Lightning Resistance", statOrder = { 1625, 1636 }, level = 70, group = "WeaponTreeLightningResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 56747, }, + ["WeaponTreeChaosResistanceReducedElementalResistance1"] = { type = "Spawn", tier = 1, "-6% to all Elemental Resistances", "+19% to Chaos Resistance", statOrder = { 1619, 1641 }, level = 10, group = "WeaponTreeChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 48210, }, + ["WeaponTreeChaosResistanceReducedElementalResistance2"] = { type = "Spawn", tier = 2, "-6% to all Elemental Resistances", "+23% to Chaos Resistance", statOrder = { 1619, 1641 }, level = 42, group = "WeaponTreeChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 37612, }, + ["WeaponTreeChaosResistanceReducedElementalResistance3"] = { type = "Spawn", tier = 3, "-6% to all Elemental Resistances", "+27% to Chaos Resistance", statOrder = { 1619, 1641 }, level = 75, group = "WeaponTreeChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 3023, }, + ["WeaponTreeElementalResistanceReducedChaosResistance1"] = { type = "Spawn", tier = 1, "+10% to all Elemental Resistances", "-13% to Chaos Resistance", statOrder = { 1619, 1641 }, level = 10, group = "WeaponTreeElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 31842, }, + ["WeaponTreeElementalResistanceReducedChaosResistance2"] = { type = "Spawn", tier = 2, "+12% to all Elemental Resistances", "-13% to Chaos Resistance", statOrder = { 1619, 1641 }, level = 42, group = "WeaponTreeElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 2115, }, + ["WeaponTreeElementalResistanceReducedChaosResistance3"] = { type = "Spawn", tier = 3, "+14% to all Elemental Resistances", "-13% to Chaos Resistance", statOrder = { 1619, 1641 }, level = 75, group = "WeaponTreeElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 55762, }, + ["WeaponTreeElementalResistanceReducedLocalDefences1"] = { type = "Spawn", tier = 1, "25% reduced Armour, Evasion and Energy Shield", "+10% to all Elemental Resistances", statOrder = { 1555, 1619 }, level = 1, group = "WeaponTreeElementalResistanceReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 62750, }, + ["WeaponTreeElementalResistanceReducedLocalDefences2"] = { type = "Spawn", tier = 2, "25% reduced Armour, Evasion and Energy Shield", "+12% to all Elemental Resistances", statOrder = { 1555, 1619 }, level = 35, group = "WeaponTreeElementalResistanceReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 13326, }, + ["WeaponTreeElementalResistanceReducedLocalDefences3"] = { type = "Spawn", tier = 3, "25% reduced Armour, Evasion and Energy Shield", "+14% to all Elemental Resistances", statOrder = { 1555, 1619 }, level = 70, group = "WeaponTreeElementalResistanceReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 39333, }, + ["WeaponTreeElementalResistanceReducedLocalBlock1"] = { type = "Spawn", tier = 1, "+10% to all Elemental Resistances", "-4% Chance to Block", statOrder = { 1619, 2249 }, level = 1, group = "WeaponTreeElementalResistanceReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHash = 55018, }, + ["WeaponTreeElementalResistanceReducedLocalBlock2"] = { type = "Spawn", tier = 2, "+12% to all Elemental Resistances", "-4% Chance to Block", statOrder = { 1619, 2249 }, level = 35, group = "WeaponTreeElementalResistanceReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHash = 54378, }, + ["WeaponTreeElementalResistanceReducedLocalBlock3"] = { type = "Spawn", tier = 3, "+14% to all Elemental Resistances", "-4% Chance to Block", statOrder = { 1619, 2249 }, level = 70, group = "WeaponTreeElementalResistanceReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHash = 34456, }, + ["WeaponTreeChaosResistanceReducedMaximumLife1"] = { type = "Spawn", tier = 1, "5% reduced maximum Life", "+19% to Chaos Resistance", statOrder = { 1571, 1641 }, level = 10, group = "WeaponTreeChaosResistanceReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 52469, }, + ["WeaponTreeChaosResistanceReducedMaximumLife2"] = { type = "Spawn", tier = 2, "5% reduced maximum Life", "+23% to Chaos Resistance", statOrder = { 1571, 1641 }, level = 42, group = "WeaponTreeChaosResistanceReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 20074, }, + ["WeaponTreeChaosResistanceReducedMaximumLife3"] = { type = "Spawn", tier = 3, "5% reduced maximum Life", "+27% to Chaos Resistance", statOrder = { 1571, 1641 }, level = 75, group = "WeaponTreeChaosResistanceReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 53851, }, + ["WeaponTreeMaximumFireResistanceReducedMaximumColdResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Fire Resistance", "-2% to maximum Cold Resistance", statOrder = { 1623, 1629 }, level = 45, group = "WeaponTreeMaximumFireResistanceReducedMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 40960, }, + ["WeaponTreeMaximumFireResistanceReducedMaximumColdResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Fire Resistance", "-2% to maximum Cold Resistance", statOrder = { 1623, 1629 }, level = 82, group = "WeaponTreeMaximumFireResistanceReducedMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 8586, }, + ["WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Fire Resistance", "-2% to maximum Lightning Resistance", statOrder = { 1623, 1634 }, level = 45, group = "WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 42954, }, + ["WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Fire Resistance", "-2% to maximum Lightning Resistance", statOrder = { 1623, 1634 }, level = 82, group = "WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 38786, }, + ["WeaponTreeMaximumColdResistanceReducedMaximumFireResistance1"] = { type = "Spawn", tier = 1, "-2% to maximum Fire Resistance", "+3% to maximum Cold Resistance", statOrder = { 1623, 1629 }, level = 45, group = "WeaponTreeMaximumColdResistanceReducedMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 48755, }, + ["WeaponTreeMaximumColdResistanceReducedMaximumFireResistance2"] = { type = "Spawn", tier = 2, "-2% to maximum Fire Resistance", "+4% to maximum Cold Resistance", statOrder = { 1623, 1629 }, level = 82, group = "WeaponTreeMaximumColdResistanceReducedMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 1707, }, + ["WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Cold Resistance", "-2% to maximum Lightning Resistance", statOrder = { 1629, 1634 }, level = 45, group = "WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 54128, }, + ["WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Cold Resistance", "-2% to maximum Lightning Resistance", statOrder = { 1629, 1634 }, level = 82, group = "WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 56323, }, + ["WeaponTreeMaximumLightningResistanceMaximumColdResistance1"] = { type = "Spawn", tier = 1, "-2% to maximum Cold Resistance", "+3% to maximum Lightning Resistance", statOrder = { 1629, 1634 }, level = 45, group = "WeaponTreeMaximumLightningResistanceMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 28596, }, + ["WeaponTreeMaximumLightningResistanceMaximumColdResistance2"] = { type = "Spawn", tier = 2, "-2% to maximum Cold Resistance", "+4% to maximum Lightning Resistance", statOrder = { 1629, 1634 }, level = 82, group = "WeaponTreeMaximumLightningResistanceMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 12450, }, + ["WeaponTreeMaximumLightningResistanceMaximumFireResistance1"] = { type = "Spawn", tier = 1, "-2% to maximum Fire Resistance", "+3% to maximum Lightning Resistance", statOrder = { 1623, 1634 }, level = 45, group = "WeaponTreeMaximumLightningResistanceMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 32353, }, + ["WeaponTreeMaximumLightningResistanceMaximumFireResistance2"] = { type = "Spawn", tier = 2, "-2% to maximum Fire Resistance", "+4% to maximum Lightning Resistance", statOrder = { 1623, 1634 }, level = 82, group = "WeaponTreeMaximumLightningResistanceMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 43668, }, + ["WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance1"] = { type = "Spawn", tier = 1, "-5% to maximum Chaos Resistance", "+1% to all maximum Elemental Resistances", statOrder = { 1640, 1643 }, level = 60, group = "WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 64699, }, + ["WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance2"] = { type = "Spawn", tier = 2, "-5% to maximum Chaos Resistance", "+2% to all maximum Elemental Resistances", statOrder = { 1640, 1643 }, level = 85, group = "WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 57187, }, + ["WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Chaos Resistance", "-1% to all maximum Elemental Resistances", statOrder = { 1640, 1643 }, level = 60, group = "WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 43004, }, + ["WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Chaos Resistance", "-1% to all maximum Elemental Resistances", statOrder = { 1640, 1643 }, level = 85, group = "WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 64170, }, + ["WeaponTreeKeystoneMinionInstability"] = { type = "Spawn", tier = 1, "Minion Instability", statOrder = { 10799 }, level = 30, group = "WeaponTreeMinionInstability", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, tradeHash = 47597, }, + ["WeaponTreeKeystoneResoluteTechnique"] = { type = "Spawn", tier = 1, "Resolute Technique", statOrder = { 10829 }, level = 30, group = "WeaponTreeResoluteTechnique", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, tradeHash = 53600, }, + ["WeaponTreeKeystoneBloodMagic"] = { type = "Spawn", tier = 1, "Blood Magic", statOrder = { 10773 }, level = 30, group = "WeaponTreeBloodMagic", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, tradeHash = 40831, }, + ["WeaponTreeKeystonePainAttunement"] = { type = "Spawn", tier = 1, "Pain Attunement", statOrder = { 10801 }, level = 30, group = "WeaponTreePainAttunement", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, tradeHash = 40058, }, + ["WeaponTreeKeystoneElementalEquilibrium"] = { type = "Spawn", tier = 1, "Elemental Equilibrium", statOrder = { 10782 }, level = 30, group = "WeaponTreeElementalEquilibrium", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, tradeHash = 54440, }, + ["WeaponTreeKeystoneIronGrip"] = { type = "Spawn", tier = 1, "Iron Grip", statOrder = { 10817 }, level = 30, group = "WeaponTreeIronGrip", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, tradeHash = 49401, }, + ["WeaponTreeKeystonePointBlank"] = { type = "Spawn", tier = 1, "Point Blank", statOrder = { 10802 }, level = 30, group = "WeaponTreePointBlank", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, tradeHash = 55555, }, + ["WeaponTreeKeystoneAcrobatics"] = { type = "Spawn", tier = 1, "Acrobatics", statOrder = { 10768 }, level = 30, group = "WeaponTreeAcrobatics", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, tradeHash = 55846, }, + ["WeaponTreeKeystoneGhostReaver"] = { type = "Spawn", tier = 1, "Ghost Reaver", statOrder = { 10788 }, level = 30, group = "WeaponTreeKeystoneGhostReaver", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, tradeHash = 54546, }, + ["WeaponTreeKeystoneVaalPact"] = { type = "Spawn", tier = 1, "Vaal Pact", statOrder = { 10822 }, level = 30, group = "WeaponTreeVaalPact", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, tradeHash = 32554, }, + ["WeaponTreeKeystoneElementalOverload"] = { type = "Spawn", tier = 1, "Elemental Overload", statOrder = { 10783 }, level = 30, group = "WeaponTreeElementalOverload", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, tradeHash = 5084, }, + ["WeaponTreeKeystoneAvatarOfFire"] = { type = "Spawn", tier = 1, "Avatar of Fire", statOrder = { 10771 }, level = 30, group = "WeaponTreeAvatarOfFire", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, tradeHash = 734, }, + ["WeaponTreeKeystoneEldritchBattery"] = { type = "Spawn", tier = 1, "Eldritch Battery", statOrder = { 10781 }, level = 30, group = "WeaponTreeEldritchBattery", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, tradeHash = 13138, }, + ["WeaponTreeKeystoneAncestralBond"] = { type = "Spawn", tier = 1, "Ancestral Bond", statOrder = { 10770 }, level = 30, group = "WeaponTreeAncestralBond", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, tradeHash = 1524, }, + ["WeaponTreeKeystoneCrimsonDance"] = { type = "Spawn", tier = 1, "Crimson Dance", statOrder = { 10778 }, level = 30, group = "WeaponTreeCrimsonDance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, tradeHash = 5964, }, + ["WeaponTreeKeystonePerfectAgony"] = { type = "Spawn", tier = 1, "Perfect Agony", statOrder = { 10769 }, level = 30, group = "WeaponTreePerfectAgony", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, tradeHash = 26382, }, + ["WeaponTreeKeystoneRunebinder"] = { type = "Spawn", tier = 1, "Runebinder", statOrder = { 10809 }, level = 30, group = "WeaponTreeRunebinder", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, tradeHash = 31512, }, + ["WeaponTreeKeystoneGlancingBlows"] = { type = "Spawn", tier = 1, "Glancing Blows", statOrder = { 10789 }, level = 30, group = "WeaponTreeGlancingBlows", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, tradeHash = 13719, }, + ["WeaponTreeKeystoneCallToArms"] = { type = "Spawn", tier = 1, "Call to Arms", statOrder = { 10774 }, level = 30, group = "WeaponTreeCallToArms", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, tradeHash = 43883, }, + ["WeaponTreeKeystoneTheAgnostic"] = { type = "Spawn", tier = 1, "The Agnostic", statOrder = { 10800 }, level = 30, group = "WeaponTreeTheAgnostic", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, tradeHash = 47429, }, + ["WeaponTreeKeystoneSupremeEgo"] = { type = "Spawn", tier = 1, "Supreme Ego", statOrder = { 10818 }, level = 30, group = "WeaponTreeSupremeEgo", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, tradeHash = 9834, }, + ["WeaponTreeKeystoneTheImpaler"] = { type = "Spawn", tier = 1, "The Impaler", statOrder = { 10793 }, level = 30, group = "WeaponTreeImpaler", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, tradeHash = 2589, }, + ["WeaponTreeKeystoneDoomsday"] = { type = "Spawn", tier = 1, "Hex Master", statOrder = { 10791 }, level = 30, group = "WeaponTreeHexMaster", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, tradeHash = 11654, }, + ["WeaponTreeKeystoneLetheShade"] = { type = "Spawn", tier = 1, "Lethe Shade", statOrder = { 10795 }, level = 30, group = "WeaponTreeLetheShade", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, tradeHash = 48723, }, + ["WeaponTreeKeystoneGhostDance"] = { type = "Spawn", tier = 1, "Ghost Dance", statOrder = { 10787 }, level = 30, group = "WeaponTreeGhostDance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, tradeHash = 51989, }, + ["WeaponTreeKeystoneVersatileCombatant"] = { type = "Spawn", tier = 1, "Versatile Combatant", statOrder = { 10823 }, level = 30, group = "WeaponTreeVersatileCombatant", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, tradeHash = 12316, }, + ["WeaponTreeKeystoneMagebane"] = { type = "Spawn", tier = 1, "Magebane", statOrder = { 10796 }, level = 30, group = "WeaponTreeMagebane", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, tradeHash = 17221, }, + ["WeaponTreeKeystoneSolipsism"] = { type = "Spawn", tier = 1, "Solipsism", statOrder = { 10815 }, level = 30, group = "WeaponTreeSolipsism", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, tradeHash = 11917, }, + ["WeaponTreeKeystoneDivineShield"] = { type = "Spawn", tier = 1, "Divine Shield", statOrder = { 10780 }, level = 30, group = "WeaponTreeDivineShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, tradeHash = 33292, }, + ["WeaponTreeKeystoneIronWill"] = { type = "Spawn", tier = 1, "Iron Will", statOrder = { 10830 }, level = 30, group = "WeaponTreeIronWill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, tradeHash = 23672, }, + ["WeaponTreeKeystoneWickedWard"] = { type = "Spawn", tier = 1, "Wicked Ward", statOrder = { 10825 }, level = 30, group = "WeaponTreeWickedWard", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, tradeHash = 23100, }, + ["WeaponTreeKeystoneWindDancer"] = { type = "Spawn", tier = 1, "Wind Dancer", statOrder = { 10826 }, level = 30, group = "WeaponTreeWindDancer", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, tradeHash = 38218, }, + ["WeaponTreeKeystoneConduit"] = { type = "Spawn", tier = 1, "Conduit", statOrder = { 10776 }, level = 30, group = "WeaponTreeConduit", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, tradeHash = 13026, }, + ["WeaponTreeKeystoneArrowDancing"] = { type = "Spawn", tier = 1, "Arrow Dancing", statOrder = { 10805 }, level = 30, group = "WeaponTreeArrowDodging", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, tradeHash = 55817, }, + ["WeaponTreeKeystonePreciseTechnique"] = { type = "Spawn", tier = 1, "Precise Technique", statOrder = { 10803 }, level = 30, group = "WeaponTreePreciseTechnique", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, tradeHash = 58601, }, + ["WeaponTreeKeystoneIronReflexes"] = { type = "Spawn", tier = 1, "Iron Reflexes", statOrder = { 10794 }, level = 30, group = "WeaponTreeIronReflexes", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, tradeHash = 28028, }, + ["WeaponTreeKeystoneUnwaveringStance"] = { type = "Spawn", tier = 1, "Unwavering Stance", statOrder = { 10821 }, level = 30, group = "WeaponTreeUnwaveringStance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, tradeHash = 63722, }, + ["WeaponTreeKeystoneImbalancedGuard"] = { type = "Spawn", tier = 1, "Imbalanced Guard", statOrder = { 10810 }, level = 30, group = "WeaponTreeSacredBastion", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, tradeHash = 54463, }, + ["WeaponTreeKeystoneEternalYouth"] = { type = "Spawn", tier = 1, "Eternal Youth", statOrder = { 10785 }, level = 30, group = "WeaponTreeEternalYouth", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, tradeHash = 63167, }, + ["WeaponTreeKeystoneMindoverMatter"] = { type = "Spawn", tier = 1, "Mind Over Matter", statOrder = { 10797 }, level = 30, group = "WeaponTreeManaShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, tradeHash = 20902, }, + ["WeaponTreeKeystoneZealotsOath"] = { type = "Spawn", tier = 1, "Zealot's Oath", statOrder = { 10807 }, level = 30, group = "WeaponTreeZealotsOath", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, tradeHash = 57589, }, + ["WeaponTreeNotableBowAvatarOfTheHunt"] = { type = "Spawn", tier = 1, "Allocates 36687", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 20233, }, + ["WeaponTreeNotableBowDeadlyDraw"] = { type = "Spawn", tier = 1, "Allocates 48823", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 11135, }, + ["WeaponTreeNotableBowHeavyDraw"] = { type = "Spawn", tier = 1, "Allocates 42720", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 34918, }, + ["WeaponTreeNotableBowFarsight"] = { type = "Spawn", tier = 1, "Allocates 47743", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 23716, }, + ["WeaponTreeNotableBowMasterFletcher"] = { type = "Spawn", tier = 1, "Allocates 51881", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 11463, }, + ["WeaponTreeNotableBowKingOfTheHill"] = { type = "Spawn", tier = 1, "Allocates 49459", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 52601, }, + ["WeaponTreeNotableBowAspectOfTheEagle"] = { type = "Spawn", tier = 1, "Allocates 65224", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 33664, }, + ["WeaponTreeNotableBowHuntersGambit"] = { type = "Spawn", tier = 1, "Allocates 9535", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 63592, }, + ["WeaponTreeNotableStaffCounterweight"] = { type = "Spawn", tier = 1, "Allocates 39761", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 754, }, + ["WeaponTreeNotableStaffSmashingStrikes"] = { type = "Spawn", tier = 1, "Allocates 51559", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 14648, }, + ["WeaponTreeNotableStaffWhirlingBarrier"] = { type = "Spawn", tier = 1, "Allocates 42917", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 57628, }, + ["WeaponTreeNotableStaffSteelwoodStance"] = { type = "Spawn", tier = 1, "Allocates 36859", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 17284, }, + ["WeaponTreeNotableStaffSafeguard"] = { type = "Spawn", tier = 1, "Allocates 6967", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 26349, }, + ["WeaponTreeNotableStaffBluntTrauma"] = { type = "Spawn", tier = 1, "Allocates 64395", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 12315, }, + ["WeaponTreeNotableStaffOneWithTheRiver"] = { type = "Spawn", tier = 1, "Allocates 56094", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 23099, }, + ["WeaponTreeNotableStaffSerpentStance"] = { type = "Spawn", tier = 1, "Allocates 22702", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 63647, }, + ["WeaponTreeNotableStaffEnigmaticDefence"] = { type = "Spawn", tier = 1, "Allocates 7918", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 51220, }, + ["WeaponTreeNotableStaffEnigmaticReach"] = { type = "Spawn", tier = 1, "Allocates 65273", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 26236, }, + ["WeaponTreeNotableSwordBladeOfCunning"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 57839", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 55102, }, + ["WeaponTreeNotableSwordRazorsEdge"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 33082", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 64677, }, + ["WeaponTreeNotableSwordBladeMaster"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 25367", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 26352, }, + ["WeaponTreeNotableSwordBladeDancer"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 65093", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 15254, }, + ["WeaponTreeNotableSwordFatalBlade"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 1568", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 11190, }, + ["WeaponTreeNotableSwordBrutalBlade"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 59151", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 14008, }, + ["WeaponTreeNotableSwordBladeOfCunning2H"] = { type = "Spawn", tier = 1, "Allocates 57839", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 51508, }, + ["WeaponTreeNotableSwordRazorsEdge2H"] = { type = "Spawn", tier = 1, "Allocates 33082", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 18556, }, + ["WeaponTreeNotableSwordBladeMaster2H"] = { type = "Spawn", tier = 1, "Allocates 25367", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 35529, }, + ["WeaponTreeNotableSwordBladeDancer2H"] = { type = "Spawn", tier = 1, "Allocates 65093", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 59490, }, + ["WeaponTreeNotableSwordFatalBlade2H"] = { type = "Spawn", tier = 1, "Allocates 1568", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 18825, }, + ["WeaponTreeNotableSwordBrutalBlade2H"] = { type = "Spawn", tier = 1, "Allocates 59151", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 25571, }, + ["WeaponTreeNotableAxeFellerOfFoes"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 52090", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 32956, }, + ["WeaponTreeNotableAxeHatchetMaster"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 26096", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 57395, }, + ["WeaponTreeNotableAxeHarvesterOfFoes"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 7440", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 13478, }, + ["WeaponTreeNotableAxeCleaving"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 4940", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 55147, }, + ["WeaponTreeNotableAxeSlaughter"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 23038", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 39346, }, + ["WeaponTreeNotableAxeFellerOfFoes2H"] = { type = "Spawn", tier = 1, "Allocates 52090", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 64867, }, + ["WeaponTreeNotableAxeHatchetMaster2H"] = { type = "Spawn", tier = 1, "Allocates 26096", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 28030, }, + ["WeaponTreeNotableAxeHarvesterOfFoes2H"] = { type = "Spawn", tier = 1, "Allocates 7440", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 31444, }, + ["WeaponTreeNotableAxeCleaving2H"] = { type = "Spawn", tier = 1, "Allocates 4940", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 35745, }, + ["WeaponTreeNotableAxeSlaughter2H"] = { type = "Spawn", tier = 1, "Allocates 23038", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 44720, }, + ["WeaponTreeNotableMaceRibcageCrusher"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 24721", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHash = 60684, }, + ["WeaponTreeNotableMaceSpinecruncher"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 5126", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHash = 45449, }, + ["WeaponTreeNotableMaceSkullcracking"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 16703", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHash = 52612, }, + ["WeaponTreeNotableMaceBoneBreaker"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 40645", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHash = 25501, }, + ["WeaponTreeNotableMaceBlacksmithsClout"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 55772", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHash = 55042, }, + ["WeaponTreeNotableMaceGalvanicHammer"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 60619", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHash = 2954, }, + ["WeaponTreeNotableMacePainForger"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 39657", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHash = 59077, }, + ["WeaponTreeNotableMaceRibcageCrusher2H"] = { type = "Spawn", tier = 1, "Allocates 24721", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHash = 5812, }, + ["WeaponTreeNotableMaceSpinecruncher2H"] = { type = "Spawn", tier = 1, "Allocates 5126", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHash = 52732, }, + ["WeaponTreeNotableMaceSkullcracking2H"] = { type = "Spawn", tier = 1, "Allocates 16703", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHash = 54251, }, + ["WeaponTreeNotableMaceBoneBreaker2H"] = { type = "Spawn", tier = 1, "Allocates 40645", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHash = 8288, }, + ["WeaponTreeNotableMaceBlacksmithsClout2H"] = { type = "Spawn", tier = 1, "Allocates 55772", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHash = 62298, }, + ["WeaponTreeNotableMaceGalvanicHammer2H"] = { type = "Spawn", tier = 1, "Allocates 60619", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHash = 53120, }, + ["WeaponTreeNotableMacePainForger2H"] = { type = "Spawn", tier = 1, "Allocates 39657", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHash = 544, }, + ["WeaponTreeNotableClawPoisonousFangs"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 529", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 65141, }, + ["WeaponTreeNotableClawLifeRaker"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 28503", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 11983, }, + ["WeaponTreeNotableClawClawsOfTheHawk"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 15614", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 28407, }, + ["WeaponTreeNotableClawClawsOfTheMagpie"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 54791", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 15353, }, + ["WeaponTreeNotableClawClawsOfTheFalcon"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 56648", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 7564, }, + ["WeaponTreeNotableDaggerAddersTouch"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 32227", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 65149, }, + ["WeaponTreeNotableDaggerFromTheShadows"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 1405", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 49729, }, + ["WeaponTreeNotableDaggerBackstabbing"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 8920", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 46754, }, + ["WeaponTreeNotableDaggerFlaying"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 36490", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 61445, }, + ["WeaponTreeNotableDaggerNightstalker"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 56276", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 5767, }, + ["WeaponTreeNotableWandTempestBlast"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 63207", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 58090, }, + ["WeaponTreeNotableWandFusillade"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 16243", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 65074, }, + ["WeaponTreeNotableWandDisintegration"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 52031", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 38172, }, + ["WeaponTreeNotableWandElderPower"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 41476", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 37831, }, + ["WeaponTreeNotableWandWandslinger"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 22972", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 36062, }, + ["WeaponTreeNotableWandPrismWeave"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 63944", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 28231, }, + ["WeaponTreeNotableShieldTestudo"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 44207", statOrder = { 2249, 8130 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 4763, }, + ["WeaponTreeNotableShieldRetaliation"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 12878", statOrder = { 2249, 8130 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 11912, }, + ["WeaponTreeNotableShieldDeflection"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 15437", statOrder = { 2249, 8130 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 40939, }, + ["WeaponTreeNotableShieldDefiance"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 49538", statOrder = { 2249, 8130 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 60620, }, + ["WeaponTreeNotableShieldCommandOfSteel"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 57900", statOrder = { 2249, 8130 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 17627, }, + ["WeaponTreeNotableShieldAggresiveBastion"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 861", statOrder = { 2249, 8130 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 43899, }, + ["WeaponTreeNotableShieldSantuary"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 20832", statOrder = { 2249, 8130 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 45176, }, + ["WeaponTreeNotableShieldSafeguard"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 6967", statOrder = { 2249, 8130 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 57539, }, + ["WeaponTreeNotableShieldArcaneSantuary"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 46904", statOrder = { 2249, 8130 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 47301, }, + ["WeaponTreeWeaponQuality1"] = { type = "Spawn", tier = 1, "+8% to Quality", statOrder = { 7951 }, level = 1, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, modTags = { }, tradeHash = 363, }, + ["WeaponTreeWeaponQuality2"] = { type = "Spawn", tier = 2, "+12% to Quality", statOrder = { 7951 }, level = 45, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, modTags = { }, tradeHash = 36830, }, + ["WeaponTreeWeaponQuality3"] = { type = "Spawn", tier = 3, "+16% to Quality", statOrder = { 7951 }, level = 60, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, modTags = { }, tradeHash = 19741, }, + ["WeaponTreeFireDoTMultiplierReducedFireResistance1"] = { type = "Spawn", tier = 1, "+12% to Fire Damage over Time Multiplier", "-15% to Fire Resistance", statOrder = { 1251, 1625 }, level = 12, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 57959, }, + ["WeaponTreeFireDoTMultiplierReducedFireResistance2"] = { type = "Spawn", tier = 2, "+16% to Fire Damage over Time Multiplier", "-15% to Fire Resistance", statOrder = { 1251, 1625 }, level = 75, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 30604, }, + ["WeaponTreeFireDoTMultiplierReducedFireResistance2h1"] = { type = "Spawn", tier = 1, "+24% to Fire Damage over Time Multiplier", "-30% to Fire Resistance", statOrder = { 1251, 1625 }, level = 12, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 21230, }, + ["WeaponTreeFireDoTMultiplierReducedFireResistance2h2"] = { type = "Spawn", tier = 2, "+32% to Fire Damage over Time Multiplier", "-30% to Fire Resistance", statOrder = { 1251, 1625 }, level = 75, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 52413, }, + ["WeaponTreeColdDoTMultiplierReducedColdResisatance1"] = { type = "Spawn", tier = 1, "+12% to Cold Damage over Time Multiplier", "-15% to Cold Resistance", statOrder = { 1256, 1631 }, level = 12, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 35724, }, + ["WeaponTreeColdDoTMultiplierReducedColdResisatance2"] = { type = "Spawn", tier = 2, "+16% to Cold Damage over Time Multiplier", "-15% to Cold Resistance", statOrder = { 1256, 1631 }, level = 75, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 35512, }, + ["WeaponTreeColdDoTMultiplierReducedColdResisatance2h1"] = { type = "Spawn", tier = 1, "+24% to Cold Damage over Time Multiplier", "-30% to Cold Resistance", statOrder = { 1256, 1631 }, level = 12, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 53003, }, + ["WeaponTreeColdDoTMultiplierReducedColdResisatance2h2"] = { type = "Spawn", tier = 2, "+32% to Cold Damage over Time Multiplier", "-30% to Cold Resistance", statOrder = { 1256, 1631 }, level = 75, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 39561, }, + ["WeaponTreeChaosDoTMultiplierReducedChaosResistance1"] = { type = "Spawn", tier = 1, "+12% to Chaos Damage over Time Multiplier", "-15% to Chaos Resistance", statOrder = { 1259, 1641 }, level = 12, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 8619, }, + ["WeaponTreeChaosDoTMultiplierReducedChaosResistance2"] = { type = "Spawn", tier = 2, "+16% to Chaos Damage over Time Multiplier", "-15% to Chaos Resistance", statOrder = { 1259, 1641 }, level = 75, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 42622, }, + ["WeaponTreeChaosDoTMultiplierReducedChaosResistance2h1"] = { type = "Spawn", tier = 1, "+24% to Chaos Damage over Time Multiplier", "-30% to Chaos Resistance", statOrder = { 1259, 1641 }, level = 12, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 31159, }, + ["WeaponTreeChaosDoTMultiplierReducedChaosResistance2h2"] = { type = "Spawn", tier = 2, "+32% to Chaos Damage over Time Multiplier", "-30% to Chaos Resistance", statOrder = { 1259, 1641 }, level = 75, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 12773, }, + ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm1"] = { type = "Spawn", tier = 1, "+12% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 6% of Physical Damage Reduction", statOrder = { 1247, 7159 }, level = 12, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 42365, }, + ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm2"] = { type = "Spawn", tier = 2, "+16% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 6% of Physical Damage Reduction", statOrder = { 1247, 7159 }, level = 75, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 29824, }, + ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm2h1"] = { type = "Spawn", tier = 1, "+24% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 12% of Physical Damage Reduction", statOrder = { 1247, 7159 }, level = 12, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 47932, }, + ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm2h2"] = { type = "Spawn", tier = 2, "+32% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 12% of Physical Damage Reduction", statOrder = { 1247, 7159 }, level = 75, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 36838, }, + ["WeaponTreeLocalElementalPenetrationReducedElementalResistance1"] = { type = "Spawn", tier = 1, "-8% to all Elemental Resistances", "Attacks with this Weapon Penetrate 8% Elemental Resistances", statOrder = { 1619, 3761 }, level = 12, group = "WeaponTreeLocalElementalPenetrationReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 58446, }, + ["WeaponTreeLocalElementalPenetrationReducedElementalResistance2"] = { type = "Spawn", tier = 2, "-8% to all Elemental Resistances", "Attacks with this Weapon Penetrate 10% Elemental Resistances", statOrder = { 1619, 3761 }, level = 75, group = "WeaponTreeLocalElementalPenetrationReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 13134, }, + ["WeaponTreeLocalChaosPenetrationReducedChaosResistance1"] = { type = "Spawn", tier = 1, "-13% to Chaos Resistance", "Attacks with this Weapon Penetrate 8% Chaos Resistance", statOrder = { 1641, 7876 }, level = 12, group = "WeaponTreeLocalChaosPenetrationReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 47276, }, + ["WeaponTreeLocalChaosPenetrationReducedChaosResistance2"] = { type = "Spawn", tier = 2, "-13% to Chaos Resistance", "Attacks with this Weapon Penetrate 10% Chaos Resistance", statOrder = { 1641, 7876 }, level = 75, group = "WeaponTreeLocalChaosPenetrationReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 48398, }, + ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect1"] = { type = "Spawn", tier = 1, "10% reduced Area of Effect", "25% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrder = { 1880, 4729 }, level = 10, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, modTags = { }, tradeHash = 11829, }, + ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect2"] = { type = "Spawn", tier = 2, "10% reduced Area of Effect", "30% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrder = { 1880, 4729 }, level = 65, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, modTags = { }, tradeHash = 12748, }, + ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Area of Effect", "50% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrder = { 1880, 4729 }, level = 10, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHash = 27279, }, + ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Area of Effect", "60% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrder = { 1880, 4729 }, level = 65, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHash = 19630, }, + ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently1"] = { type = "Spawn", tier = 1, "20% increased Area of Effect", "10% reduced Area of Effect if you've Killed Recently", statOrder = { 1880, 4219 }, level = 10, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, modTags = { }, tradeHash = 23168, }, + ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently2"] = { type = "Spawn", tier = 2, "24% increased Area of Effect", "10% reduced Area of Effect if you've Killed Recently", statOrder = { 1880, 4219 }, level = 65, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, modTags = { }, tradeHash = 61296, }, + ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently2h1"] = { type = "Spawn", tier = 1, "32% increased Area of Effect", "20% reduced Area of Effect if you've Killed Recently", statOrder = { 1880, 4219 }, level = 10, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHash = 45341, }, + ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently2h2"] = { type = "Spawn", tier = 2, "40% increased Area of Effect", "20% reduced Area of Effect if you've Killed Recently", statOrder = { 1880, 4219 }, level = 65, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHash = 16087, }, + ["WeaponTreeProjectileSpeedReducedProjectileDamage1"] = { type = "Spawn", tier = 1, "25% increased Projectile Speed", "15% reduced Projectile Damage", statOrder = { 1796, 1996 }, level = 10, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 56727, }, + ["WeaponTreeProjectileSpeedReducedProjectileDamage2"] = { type = "Spawn", tier = 2, "35% increased Projectile Speed", "15% reduced Projectile Damage", statOrder = { 1796, 1996 }, level = 65, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 7664, }, + ["WeaponTreeProjectileSpeedReducedProjectileDamage2h1"] = { type = "Spawn", tier = 1, "40% increased Projectile Speed", "30% reduced Projectile Damage", statOrder = { 1796, 1996 }, level = 10, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 8711, }, + ["WeaponTreeProjectileSpeedReducedProjectileDamage2h2"] = { type = "Spawn", tier = 2, "55% increased Projectile Speed", "30% reduced Projectile Damage", statOrder = { 1796, 1996 }, level = 65, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 14571, }, + ["WeaponTreeArrowsChainChainingRange2h"] = { type = "MergeOnly", tier = 1, "Arrows Chain +1 times", "50% reduced Chaining range", statOrder = { 1788, 5486 }, level = 84, group = "WeaponTreeArrowsChainChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 14756, }, + ["WeaponTreeChainingRange1"] = { type = "Spawn", tier = 1, "20% increased Chaining range", statOrder = { 5486 }, level = 38, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, tradeHash = 17027, }, + ["WeaponTreeChainingRange2"] = { type = "Spawn", tier = 2, "30% increased Chaining range", statOrder = { 5486 }, level = 78, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, tradeHash = 8887, }, + ["WeaponTreeChainingRange2h1"] = { type = "Spawn", tier = 1, "40% increased Chaining range", statOrder = { 5486 }, level = 38, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, tradeHash = 33564, }, + ["WeaponTreeChainingRange2h2"] = { type = "Spawn", tier = 2, "60% increased Chaining range", statOrder = { 5486 }, level = 78, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, tradeHash = 6460, }, + ["WeaponTreeAdditionalPierce1"] = { type = "Spawn", tier = 1, "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 78, group = "WeaponTreeAdditionalPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 300, 75, 0 }, modTags = { }, tradeHash = 24366, }, + ["WeaponTreeAdditionalPierce2h1"] = { type = "Spawn", tier = 1, "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 16, group = "WeaponTreeAdditionalPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 75, 0 }, modTags = { }, tradeHash = 47557, }, + ["WeaponTreeAdditionalPierce2h2"] = { type = "Spawn", tier = 2, "Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 78, group = "WeaponTreeAdditionalPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 75, 0 }, modTags = { }, tradeHash = 19393, }, + ["WeaponTreeForkExtraProjectileChance1"] = { type = "Spawn", tier = 1, "Projectiles have 30% chance for an additional Projectile when Forking", statOrder = { 5677 }, level = 32, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, tradeHash = 17809, }, + ["WeaponTreeForkExtraProjectileChance2"] = { type = "Spawn", tier = 2, "Projectiles have 40% chance for an additional Projectile when Forking", statOrder = { 5677 }, level = 78, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, tradeHash = 26983, }, + ["WeaponTreeForkExtraProjectileChance2h1"] = { type = "Spawn", tier = 1, "Projectiles have 50% chance for an additional Projectile when Forking", statOrder = { 5677 }, level = 32, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, tradeHash = 62302, }, + ["WeaponTreeForkExtraProjectileChance2h2"] = { type = "Spawn", tier = 2, "Projectiles have 75% chance for an additional Projectile when Forking", statOrder = { 5677 }, level = 78, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, tradeHash = 46279, }, + ["WeaponTreeMarkEffectIncreasedMarkCost1"] = { type = "Spawn", tier = 1, "15% increased Effect of your Marks", "100% increased Mana Cost of Mark Skills", statOrder = { 2598, 9106 }, level = 24, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, tradeHash = 52505, }, + ["WeaponTreeMarkEffectIncreasedMarkCost2"] = { type = "Spawn", tier = 2, "20% increased Effect of your Marks", "100% increased Mana Cost of Mark Skills", statOrder = { 2598, 9106 }, level = 76, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, tradeHash = 33393, }, + ["WeaponTreeMarkEffectIncreasedMarkCost2h1"] = { type = "Spawn", tier = 1, "30% increased Effect of your Marks", "200% increased Mana Cost of Mark Skills", statOrder = { 2598, 9106 }, level = 24, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, tradeHash = 43737, }, + ["WeaponTreeMarkEffectIncreasedMarkCost2h2"] = { type = "Spawn", tier = 2, "40% increased Effect of your Marks", "200% increased Mana Cost of Mark Skills", statOrder = { 2598, 9106 }, level = 76, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, tradeHash = 27026, }, + ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect1"] = { type = "Spawn", tier = 1, "15% reduced Effect of your Marks", "6% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrder = { 2598, 6760 }, level = 24, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, tradeHash = 40585, }, + ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect2"] = { type = "Spawn", tier = 2, "15% reduced Effect of your Marks", "10% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrder = { 2598, 6760 }, level = 76, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, tradeHash = 38100, }, + ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Effect of your Marks", "12% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrder = { 2598, 6760 }, level = 24, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, tradeHash = 19078, }, + ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Effect of your Marks", "20% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrder = { 2598, 6760 }, level = 76, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, tradeHash = 63122, }, + ["WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy"] = { type = "Spawn", tier = 1, "25% less Accuracy Rating against Marked Enemy", "Culling Strike against Marked Enemy", statOrder = { 4512, 5991 }, level = 80, group = "WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, tradeHash = 53927, }, + ["WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy2h"] = { type = "Spawn", tier = 2, "15% less Accuracy Rating against Marked Enemy", "Culling Strike against Marked Enemy", statOrder = { 4512, 5991 }, level = 80, group = "WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, tradeHash = 21842, }, + ["WeaponTreeLocalWeaponRange1"] = { type = "Spawn", tier = 1, "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "WeaponTreeLocalWeaponRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, modTags = { }, tradeHash = 62540, }, + ["WeaponTreeLocalWeaponRange2"] = { type = "Spawn", tier = 2, "+0.3 metres to Weapon Range", statOrder = { 2745 }, level = 50, group = "WeaponTreeLocalWeaponRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, modTags = { }, tradeHash = 21482, }, + ["WeaponTreeLocalLifeLeechAndSpeed1"] = { type = "Spawn", tier = 1, "30% increased total Recovery per second from Life Leech", "0.5% of Attack Damage Leeched as Life", statOrder = { 2157, 7987 }, level = 12, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 11868, }, + ["WeaponTreeLocalLifeLeechAndSpeed2"] = { type = "Spawn", tier = 2, "30% increased total Recovery per second from Life Leech", "0.8% of Attack Damage Leeched as Life", statOrder = { 2157, 7987 }, level = 64, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 16333, }, + ["WeaponTreeLocalLifeLeechAndSpeed2h1"] = { type = "Spawn", tier = 1, "60% increased total Recovery per second from Life Leech", "1% of Attack Damage Leeched as Life", statOrder = { 2157, 7987 }, level = 12, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 7749, }, + ["WeaponTreeLocalLifeLeechAndSpeed2h2"] = { type = "Spawn", tier = 2, "60% increased total Recovery per second from Life Leech", "1.6% of Attack Damage Leeched as Life", statOrder = { 2157, 7987 }, level = 64, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 42585, }, + ["WeaponTreeLocalManaLeechAndSpeed1"] = { type = "Spawn", tier = 1, "30% increased total Recovery per second from Mana Leech", "0.5% of Attack Damage Leeched as Mana", statOrder = { 2158, 7990 }, level = 12, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 2957, }, + ["WeaponTreeLocalManaLeechAndSpeed2"] = { type = "Spawn", tier = 2, "30% increased total Recovery per second from Mana Leech", "0.8% of Attack Damage Leeched as Mana", statOrder = { 2158, 7990 }, level = 64, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 48517, }, + ["WeaponTreeLocalManaLeechAndSpeed2h1"] = { type = "Spawn", tier = 1, "60% increased total Recovery per second from Mana Leech", "1% of Attack Damage Leeched as Mana", statOrder = { 2158, 7990 }, level = 12, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 21744, }, + ["WeaponTreeLocalManaLeechAndSpeed2h2"] = { type = "Spawn", tier = 2, "60% increased total Recovery per second from Mana Leech", "1.6% of Attack Damage Leeched as Mana", statOrder = { 2158, 7990 }, level = 64, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 44519, }, + ["WeaponTreeSpellEnergyShieldLeechAndSpeed1"] = { type = "Spawn", tier = 1, "0.5% of Spell Damage Leeched as Energy Shield", "30% increased total Recovery per second from Energy Shield Leech", statOrder = { 1722, 2159 }, level = 12, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 46610, }, + ["WeaponTreeSpellEnergyShieldLeechAndSpeed2"] = { type = "Spawn", tier = 2, "0.8% of Spell Damage Leeched as Energy Shield", "30% increased total Recovery per second from Energy Shield Leech", statOrder = { 1722, 2159 }, level = 64, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 41746, }, + ["WeaponTreeSpellEnergyShieldLeechAndSpeed2h1"] = { type = "Spawn", tier = 1, "1% of Spell Damage Leeched as Energy Shield", "60% increased total Recovery per second from Energy Shield Leech", statOrder = { 1722, 2159 }, level = 12, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 44243, }, + ["WeaponTreeSpellEnergyShieldLeechAndSpeed2h2"] = { type = "Spawn", tier = 2, "1.6% of Spell Damage Leeched as Energy Shield", "60% increased total Recovery per second from Energy Shield Leech", statOrder = { 1722, 2159 }, level = 64, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, tradeHash = 9278, }, + ["WeaponTreeMaxLifeLeechReducedLeechAmount1"] = { type = "Spawn", tier = 1, "10% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 70, group = "WeaponTreeMaxLifeLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 13565, }, + ["WeaponTreeMaxLifeLeechReducedLeechAmount2h1"] = { type = "Spawn", tier = 2, "20% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 70, group = "WeaponTreeMaxLifeLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 22548, }, + ["WeaponTreeMaxManaLeechReducedLeechAmount1"] = { type = "Spawn", tier = 1, "10% increased Maximum total Mana Recovery per second from Leech", statOrder = { 1733 }, level = 70, group = "WeaponTreeMaxManaLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 37782, }, + ["WeaponTreeMaxManaLeechReducedLeechAmount2h1"] = { type = "Spawn", tier = 2, "20% increased Maximum total Mana Recovery per second from Leech", statOrder = { 1733 }, level = 70, group = "WeaponTreeMaxManaLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 19876, }, + ["WeaponTreeMaxEnergyShieldLeechReducedLeechAmount1"] = { type = "Spawn", tier = 1, "10% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1734 }, level = 70, group = "WeaponTreeMaxEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 31754, }, + ["WeaponTreeMaxEnergyShieldLeechReducedLeechAmount2h1"] = { type = "Spawn", tier = 2, "20% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1734 }, level = 70, group = "WeaponTreeMaxEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, tradeHash = 45015, }, + ["WeaponTreeLocalLifeOnHitReducedManaOnHit1"] = { type = "Spawn", tier = 1, "Grants 15 Life per Enemy Hit", "Removes 2 of your Mana per Enemy Hit", statOrder = { 1738, 1745 }, level = 5, group = "WeaponTreeLocalLifeOnHitReducedManaOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHash = 51609, }, + ["WeaponTreeLocalLifeOnHitReducedManaOnHit2"] = { type = "Spawn", tier = 2, "Grants 25 Life per Enemy Hit", "Removes 2 of your Mana per Enemy Hit", statOrder = { 1738, 1745 }, level = 68, group = "WeaponTreeLocalLifeOnHitReducedManaOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHash = 27695, }, + ["WeaponTreeLocalManaOnHitReducedLifeOnHit1"] = { type = "Spawn", tier = 1, "Removes 4 of your Life per Enemy Hit", "Grants 6 Mana per Enemy Hit", statOrder = { 1738, 1745 }, level = 5, group = "WeaponTreeLocalManaOnHitReducedLifeOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHash = 57442, }, + ["WeaponTreeLocalManaOnHitReducedLifeOnHit2"] = { type = "Spawn", tier = 2, "Removes 4 of your Life per Enemy Hit", "Grants 8 Mana per Enemy Hit", statOrder = { 1738, 1745 }, level = 68, group = "WeaponTreeLocalManaOnHitReducedLifeOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHash = 21451, }, + ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed1"] = { type = "Spawn", tier = 1, "5% reduced Movement Speed", "20% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 1798, 4381 }, level = 12, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 57650, }, + ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed2"] = { type = "Spawn", tier = 2, "5% reduced Movement Speed", "30% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 1798, 4381 }, level = 76, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 47350, }, + ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed2h1"] = { type = "Spawn", tier = 1, "10% reduced Movement Speed", "40% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 1798, 4381 }, level = 12, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 5636, }, + ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed2h2"] = { type = "Spawn", tier = 2, "10% reduced Movement Speed", "60% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 1798, 4381 }, level = 76, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 13587, }, + ["WeaponTreeMovementSpeedTravelSkillsDisabled1"] = { type = "Spawn", tier = 1, "8% increased Movement Speed", "Your Travel Skills are Disabled", statOrder = { 1798, 10699 }, level = 12, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 8907, }, + ["WeaponTreeMovementSpeedTravelSkillsDisabled2"] = { type = "Spawn", tier = 2, "12% increased Movement Speed", "Your Travel Skills are Disabled", statOrder = { 1798, 10699 }, level = 76, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 13677, }, + ["WeaponTreeMovementSpeedTravelSkillsDisabled2h1"] = { type = "Spawn", tier = 1, "14% increased Movement Speed", "Your Travel Skills are Disabled", statOrder = { 1798, 10699 }, level = 12, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 36100, }, + ["WeaponTreeMovementSpeedTravelSkillsDisabled2h2"] = { type = "Spawn", tier = 2, "18% increased Movement Speed", "Your Travel Skills are Disabled", statOrder = { 1798, 10699 }, level = 76, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 65064, }, + ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Arcane Surge on you", "10% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 3288, 6726 }, level = 20, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, modTags = { }, tradeHash = 46949, }, + ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Arcane Surge on you", "10% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 3288, 6726 }, level = 80, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, modTags = { }, tradeHash = 14555, }, + ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Arcane Surge on you", "15% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 3288, 6726 }, level = 20, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, modTags = { }, tradeHash = 19007, }, + ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Arcane Surge on you", "15% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 3288, 6726 }, level = 80, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, modTags = { }, tradeHash = 31720, }, + ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "20% increased Effect of Arcane Surge on you", "Buffs on you expire 10% faster", statOrder = { 3288, 5378 }, level = 20, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, modTags = { }, tradeHash = 16813, }, + ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "25% increased Effect of Arcane Surge on you", "Buffs on you expire 10% faster", statOrder = { 3288, 5378 }, level = 80, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, modTags = { }, tradeHash = 21824, }, + ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "40% increased Effect of Arcane Surge on you", "Buffs on you expire 20% faster", statOrder = { 3288, 5378 }, level = 20, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, modTags = { }, tradeHash = 7072, }, + ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "50% increased Effect of Arcane Surge on you", "Buffs on you expire 20% faster", statOrder = { 3288, 5378 }, level = 80, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, modTags = { }, tradeHash = 15873, }, + ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "20% increased Effect of Onslaught on you", "Buffs on you expire 10% faster", statOrder = { 3290, 5378 }, level = 20, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, tradeHash = 48120, }, + ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "25% increased Effect of Onslaught on you", "Buffs on you expire 10% faster", statOrder = { 3290, 5378 }, level = 80, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, tradeHash = 62358, }, + ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "40% increased Effect of Onslaught on you", "Buffs on you expire 20% faster", statOrder = { 3290, 5378 }, level = 20, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, tradeHash = 7250, }, + ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "50% increased Effect of Onslaught on you", "Buffs on you expire 20% faster", statOrder = { 3290, 5378 }, level = 80, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, tradeHash = 36479, }, + ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Onslaught on you", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3290, 3380 }, level = 20, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, tradeHash = 16415, }, + ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Onslaught on you", "15% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3290, 3380 }, level = 80, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, tradeHash = 50638, }, + ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Onslaught on you", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3290, 3380 }, level = 20, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, tradeHash = 37854, }, + ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Onslaught on you", "30% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3290, 3380 }, level = 80, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, tradeHash = 42653, }, + ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "10% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrder = { 3378, 5378 }, level = 20, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 29110, }, + ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "15% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrder = { 3378, 5378 }, level = 80, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 15242, }, + ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "20% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrder = { 3378, 5378 }, level = 20, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 53459, }, + ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "30% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrder = { 3378, 5378 }, level = 80, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 51046, }, + ["WeaponTreePhasingOnKillReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "10% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrder = { 3465, 5378 }, level = 20, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 38951, }, + ["WeaponTreePhasingOnKillReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "15% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrder = { 3465, 5378 }, level = 80, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 11222, }, + ["WeaponTreePhasingOnKillReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "20% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrder = { 3465, 5378 }, level = 20, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 48825, }, + ["WeaponTreePhasingOnKillReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "30% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrder = { 3465, 5378 }, level = 80, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 44702, }, + ["WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun1"] = { type = "Spawn", tier = 1, "15% reduced Enemy Stun Threshold with this Weapon", "20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit", statOrder = { 2497, 2769 }, level = 15, group = "WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, modTags = { }, tradeHash = 26708, }, + ["WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun2"] = { type = "Spawn", tier = 2, "25% reduced Enemy Stun Threshold with this Weapon", "20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit", statOrder = { 2497, 2769 }, level = 74, group = "WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, modTags = { }, tradeHash = 37711, }, + ["WeaponTreeDoubleStunDurationEnemyStunThreshold1"] = { type = "Spawn", tier = 1, "15% increased Enemy Stun Threshold", "16% chance to double Stun Duration", statOrder = { 1517, 3564 }, level = 15, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 12799, }, + ["WeaponTreeDoubleStunDurationEnemyStunThreshold2"] = { type = "Spawn", tier = 2, "15% increased Enemy Stun Threshold", "24% chance to double Stun Duration", statOrder = { 1517, 3564 }, level = 74, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 47136, }, + ["WeaponTreeDoubleStunDurationEnemyStunThreshold2h1"] = { type = "Spawn", tier = 1, "30% increased Enemy Stun Threshold", "35% chance to double Stun Duration", statOrder = { 1517, 3564 }, level = 15, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 56505, }, + ["WeaponTreeDoubleStunDurationEnemyStunThreshold2h2"] = { type = "Spawn", tier = 2, "30% increased Enemy Stun Threshold", "45% chance to double Stun Duration", statOrder = { 1517, 3564 }, level = 74, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 3899, }, + ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration1"] = { type = "Spawn", tier = 1, "30% reduced Fortification Duration", "Melee Hits which Stun have 15% chance to Fortify", statOrder = { 2265, 5678 }, level = 32, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHash = 63697, }, + ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration2"] = { type = "Spawn", tier = 2, "30% reduced Fortification Duration", "Melee Hits which Stun have 20% chance to Fortify", statOrder = { 2265, 5678 }, level = 78, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHash = 47914, }, + ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration2h1"] = { type = "Spawn", tier = 1, "30% reduced Fortification Duration", "Melee Hits which Stun have 30% chance to Fortify", statOrder = { 2265, 5678 }, level = 32, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHash = 25591, }, + ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration2h2"] = { type = "Spawn", tier = 2, "30% reduced Fortification Duration", "Melee Hits which Stun have 40% chance to Fortify", statOrder = { 2265, 5678 }, level = 78, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHash = 28041, }, + ["WeaponTreeSkillEffectDurationReducedCooldownRecovery1"] = { type = "Spawn", tier = 1, "15% increased Skill Effect Duration", "10% reduced Cooldown Recovery Rate", statOrder = { 1895, 5005 }, level = 20, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 14934, }, + ["WeaponTreeSkillEffectDurationReducedCooldownRecovery2"] = { type = "Spawn", tier = 2, "20% increased Skill Effect Duration", "10% reduced Cooldown Recovery Rate", statOrder = { 1895, 5005 }, level = 84, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 13267, }, + ["WeaponTreeSkillEffectDurationReducedCooldownRecovery2h1"] = { type = "Spawn", tier = 1, "30% increased Skill Effect Duration", "20% reduced Cooldown Recovery Rate", statOrder = { 1895, 5005 }, level = 20, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 12659, }, + ["WeaponTreeSkillEffectDurationReducedCooldownRecovery2h2"] = { type = "Spawn", tier = 2, "40% increased Skill Effect Duration", "20% reduced Cooldown Recovery Rate", statOrder = { 1895, 5005 }, level = 84, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 57477, }, + ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration1"] = { type = "Spawn", tier = 1, "10% reduced Skill Effect Duration", "10% increased Cooldown Recovery Rate", statOrder = { 1895, 5005 }, level = 20, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 31146, }, + ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration2"] = { type = "Spawn", tier = 2, "10% reduced Skill Effect Duration", "15% increased Cooldown Recovery Rate", statOrder = { 1895, 5005 }, level = 84, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 58058, }, + ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration2h1"] = { type = "Spawn", tier = 1, "10% reduced Skill Effect Duration", "20% increased Cooldown Recovery Rate", statOrder = { 1895, 5005 }, level = 20, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 13068, }, + ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration2h2"] = { type = "Spawn", tier = 2, "10% reduced Skill Effect Duration", "25% increased Cooldown Recovery Rate", statOrder = { 1895, 5005 }, level = 84, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 58671, }, + ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect1"] = { type = "Spawn", tier = 1, "Flasks applied to you have 10% reduced Effect", "40% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 2742, 3391 }, level = 25, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 18557, }, + ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect2"] = { type = "Spawn", tier = 2, "Flasks applied to you have 10% reduced Effect", "50% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 2742, 3391 }, level = 75, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 19445, }, + ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect2h1"] = { type = "Spawn", tier = 1, "Flasks applied to you have 10% reduced Effect", "80% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 2742, 3391 }, level = 25, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 27098, }, + ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect2h2"] = { type = "Spawn", tier = 2, "Flasks applied to you have 10% reduced Effect", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 2742, 3391 }, level = 75, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 32798, }, + ["WeaponTreeFlaskEffectReducedFlaskChargesGained1"] = { type = "Spawn", tier = 1, "15% reduced Flask Charges gained", "Flasks applied to you have 8% increased Effect", statOrder = { 2183, 2742 }, level = 12, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 46510, }, + ["WeaponTreeFlaskEffectReducedFlaskChargesGained2"] = { type = "Spawn", tier = 2, "15% reduced Flask Charges gained", "Flasks applied to you have 10% increased Effect", statOrder = { 2183, 2742 }, level = 70, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 36378, }, + ["WeaponTreeFlaskEffectReducedFlaskChargesGained2h1"] = { type = "Spawn", tier = 1, "20% reduced Flask Charges gained", "Flasks applied to you have 12% increased Effect", statOrder = { 2183, 2742 }, level = 12, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 13126, }, + ["WeaponTreeFlaskEffectReducedFlaskChargesGained2h2"] = { type = "Spawn", tier = 2, "20% reduced Flask Charges gained", "Flasks applied to you have 15% increased Effect", statOrder = { 2183, 2742 }, level = 70, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 17815, }, + ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect1"] = { type = "Spawn", tier = 1, "10% reduced Effect of your Curses", "Your Curses have 25% increased Effect if 50% of Curse Duration expired", statOrder = { 2596, 10615 }, level = 24, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 35515, }, + ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect2"] = { type = "Spawn", tier = 2, "10% reduced Effect of your Curses", "Your Curses have 30% increased Effect if 50% of Curse Duration expired", statOrder = { 2596, 10615 }, level = 75, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 52202, }, + ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect2h1"] = { type = "Spawn", tier = 1, "15% reduced Effect of your Curses", "Your Curses have 35% increased Effect if 50% of Curse Duration expired", statOrder = { 2596, 10615 }, level = 24, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 65383, }, + ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect2h2"] = { type = "Spawn", tier = 2, "15% reduced Effect of your Curses", "Your Curses have 50% increased Effect if 50% of Curse Duration expired", statOrder = { 2596, 10615 }, level = 75, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 24945, }, + ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf1"] = { type = "Spawn", tier = 1, "15% increased Effect of Curses on you", "8% increased Effect of your Curses", statOrder = { 2170, 2596 }, level = 24, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 60536, }, + ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf2"] = { type = "Spawn", tier = 2, "15% increased Effect of Curses on you", "10% increased Effect of your Curses", statOrder = { 2170, 2596 }, level = 75, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 51893, }, + ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf2h1"] = { type = "Spawn", tier = 1, "25% increased Effect of Curses on you", "12% increased Effect of your Curses", statOrder = { 2170, 2596 }, level = 24, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 62924, }, + ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf2h2"] = { type = "Spawn", tier = 2, "25% increased Effect of Curses on you", "15% increased Effect of your Curses", statOrder = { 2170, 2596 }, level = 75, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 47411, }, + ["WeaponTreeCurseDurationReducedCurseAreaOfEffect1"] = { type = "Spawn", tier = 1, "20% reduced Area of Effect of Hex Skills", "Hex Skills have 40% increased Skill Effect Duration", statOrder = { 2225, 7134 }, level = 24, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 31704, }, + ["WeaponTreeCurseDurationReducedCurseAreaOfEffect2"] = { type = "Spawn", tier = 2, "20% reduced Area of Effect of Hex Skills", "Hex Skills have 50% increased Skill Effect Duration", statOrder = { 2225, 7134 }, level = 75, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 56162, }, + ["WeaponTreeCurseDurationReducedCurseAreaOfEffect2h1"] = { type = "Spawn", tier = 1, "30% reduced Area of Effect of Hex Skills", "Hex Skills have 80% increased Skill Effect Duration", statOrder = { 2225, 7134 }, level = 24, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 26338, }, + ["WeaponTreeCurseDurationReducedCurseAreaOfEffect2h2"] = { type = "Spawn", tier = 2, "30% reduced Area of Effect of Hex Skills", "Hex Skills have 100% increased Skill Effect Duration", statOrder = { 2225, 7134 }, level = 75, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 13592, }, + ["WeaponTreeQuiverModEffect2h1"] = { type = "Spawn", tier = 1, "15% increased bonuses gained from Equipped Quiver", statOrder = { 9782 }, level = 36, group = "WeaponTreeQuiverModEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 7899, }, + ["WeaponTreeQuiverModEffect2h2"] = { type = "Spawn", tier = 2, "20% increased bonuses gained from Equipped Quiver", statOrder = { 9782 }, level = 85, group = "WeaponTreeQuiverModEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 43755, }, + ["WeaponTreeMineDetonateTwiceChance1"] = { type = "Spawn", tier = 1, "15% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 10% chance to be Detonated an Additional Time", statOrder = { 8214, 9222 }, level = 1, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 54008, }, + ["WeaponTreeMineDetonateTwiceChance2"] = { type = "Spawn", tier = 2, "15% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 14% chance to be Detonated an Additional Time", statOrder = { 8214, 9222 }, level = 60, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 9503, }, + ["WeaponTreeMineDetonateTwiceChance2h1"] = { type = "Spawn", tier = 1, "25% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 16% chance to be Detonated an Additional Time", statOrder = { 8214, 9222 }, level = 1, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 61911, }, + ["WeaponTreeMineDetonateTwiceChance2h2"] = { type = "Spawn", tier = 2, "25% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 20% chance to be Detonated an Additional Time", statOrder = { 8214, 9222 }, level = 60, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 29399, }, + ["WeaponTreeMineAuraEffect1"] = { type = "Spawn", tier = 1, "Skills used by Mines have 40% reduced Area of Effect", "25% increased Effect of Auras from Mines", statOrder = { 9218, 9220 }, level = 1, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 65267, }, + ["WeaponTreeMineAuraEffect2"] = { type = "Spawn", tier = 2, "Skills used by Mines have 40% reduced Area of Effect", "40% increased Effect of Auras from Mines", statOrder = { 9218, 9220 }, level = 60, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 2040, }, + ["WeaponTreeMineAuraEffect2h1"] = { type = "Spawn", tier = 1, "Skills used by Mines have 60% reduced Area of Effect", "50% increased Effect of Auras from Mines", statOrder = { 9218, 9220 }, level = 1, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 31177, }, + ["WeaponTreeMineAuraEffect2h2"] = { type = "Spawn", tier = 2, "Skills used by Mines have 60% reduced Area of Effect", "70% increased Effect of Auras from Mines", statOrder = { 9218, 9220 }, level = 60, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 28618, }, + ["WeaponTreeTrapThrowingSpeed1"] = { type = "Spawn", tier = 1, "40% reduced Trap Trigger Area of Effect", "12% increased Trap Throwing Speed", statOrder = { 1925, 1927 }, level = 1, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 33321, }, + ["WeaponTreeTrapThrowingSpeed2"] = { type = "Spawn", tier = 2, "40% reduced Trap Trigger Area of Effect", "16% increased Trap Throwing Speed", statOrder = { 1925, 1927 }, level = 60, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 59272, }, + ["WeaponTreeTrapThrowingSpeed2h1"] = { type = "Spawn", tier = 1, "60% reduced Trap Trigger Area of Effect", "18% increased Trap Throwing Speed", statOrder = { 1925, 1927 }, level = 1, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 55819, }, + ["WeaponTreeTrapThrowingSpeed2h2"] = { type = "Spawn", tier = 2, "60% reduced Trap Trigger Area of Effect", "25% increased Trap Throwing Speed", statOrder = { 1925, 1927 }, level = 60, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 24408, }, + ["WeaponTreeTrapsThrowInACircle"] = { type = "Spawn", tier = 1, "25% reduced Trap Spread", "Traps from Skills are thrown randomly around targeted location", statOrder = { 10420, 10612 }, level = 1, group = "WeaponTreeTrapsThrowInACircle", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 27039, }, + ["WeaponTreeTrapsThrowInACircle2h"] = { type = "Spawn", tier = 1, "25% reduced Trap Spread", "Traps from Skills are thrown randomly around targeted location", statOrder = { 10420, 10612 }, level = 60, group = "WeaponTreeTrapsThrowInACircle", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 65092, }, + ["WeaponTreeBrandAreaOfEffectAtLowDuration1"] = { type = "Spawn", tier = 1, "Brands have 25% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 20% reduced Duration", statOrder = { 5267, 10039 }, level = 12, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 23336, }, + ["WeaponTreeBrandAreaOfEffectAtLowDuration2"] = { type = "Spawn", tier = 2, "Brands have 40% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 20% reduced Duration", statOrder = { 5267, 10039 }, level = 60, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 60324, }, + ["WeaponTreeBrandAreaOfEffectAtLowDuration2h1"] = { type = "Spawn", tier = 1, "Brands have 45% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 30% reduced Duration", statOrder = { 5267, 10039 }, level = 12, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 46069, }, + ["WeaponTreeBrandAreaOfEffectAtLowDuration2h2"] = { type = "Spawn", tier = 2, "Brands have 60% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 30% reduced Duration", statOrder = { 5267, 10039 }, level = 60, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 60029, }, + ["WeaponTreeBrandSearchRange1"] = { type = "Spawn", tier = 1, "Brand Recall has 40% reduced Cooldown Recovery Rate", "40% increased Brand Attachment range", statOrder = { 10040, 10044 }, level = 12, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 55709, }, + ["WeaponTreeBrandSearchRange2"] = { type = "Spawn", tier = 2, "Brand Recall has 40% reduced Cooldown Recovery Rate", "60% increased Brand Attachment range", statOrder = { 10040, 10044 }, level = 60, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, tradeHash = 30416, }, + ["WeaponTreeBrandSearchRange2h1"] = { type = "Spawn", tier = 1, "Brand Recall has 60% reduced Cooldown Recovery Rate", "75% increased Brand Attachment range", statOrder = { 10040, 10044 }, level = 12, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 21875, }, + ["WeaponTreeBrandSearchRange2h2"] = { type = "Spawn", tier = 2, "Brand Recall has 60% reduced Cooldown Recovery Rate", "100% increased Brand Attachment range", statOrder = { 10040, 10044 }, level = 60, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, tradeHash = 2129, }, + ["WeaponTreeTotemChanceToSpawnTwo1"] = { type = "Spawn", tier = 1, "15% reduced Totem Placement speed", "Skills that Summon a Totem have 25% chance to Summon two Totems instead of one", statOrder = { 2578, 5723 }, level = 4, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 10733, }, + ["WeaponTreeTotemChanceToSpawnTwo2"] = { type = "Spawn", tier = 2, "15% reduced Totem Placement speed", "Skills that Summon a Totem have 40% chance to Summon two Totems instead of one", statOrder = { 2578, 5723 }, level = 60, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 29042, }, + ["WeaponTreeTotemChanceToSpawnTwo2h1"] = { type = "Spawn", tier = 1, "25% reduced Totem Placement speed", "Skills that Summon a Totem have 50% chance to Summon two Totems instead of one", statOrder = { 2578, 5723 }, level = 4, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 13996, }, + ["WeaponTreeTotemChanceToSpawnTwo2h2"] = { type = "Spawn", tier = 2, "25% reduced Totem Placement speed", "Skills that Summon a Totem have 70% chance to Summon two Totems instead of one", statOrder = { 2578, 5723 }, level = 60, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 21957, }, + ["WeaponTreeTotemExplodeOnDeath1"] = { type = "Spawn", tier = 1, "15% reduced Totem Life", "Totems Explode on Death, dealing 10% of their Life as Physical Damage", statOrder = { 1774, 10405 }, level = 4, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 42107, }, + ["WeaponTreeTotemExplodeOnDeath2"] = { type = "Spawn", tier = 2, "15% reduced Totem Life", "Totems Explode on Death, dealing 15% of their Life as Physical Damage", statOrder = { 1774, 10405 }, level = 60, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 40178, }, + ["WeaponTreeTotemExplodeOnDeath2h1"] = { type = "Spawn", tier = 1, "25% reduced Totem Life", "Totems Explode on Death, dealing 20% of their Life as Physical Damage", statOrder = { 1774, 10405 }, level = 4, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 53390, }, + ["WeaponTreeTotemExplodeOnDeath2h2"] = { type = "Spawn", tier = 2, "25% reduced Totem Life", "Totems Explode on Death, dealing 30% of their Life as Physical Damage", statOrder = { 1774, 10405 }, level = 60, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 27222, }, + ["WeaponTreeUnaffectedByChillWhileChannelling"] = { type = "Spawn", tier = 1, "30% increased Effect of Chill on you", "Unaffected by Chill while Channelling", statOrder = { 1645, 10460 }, level = 1, group = "WeaponTreeUnaffectedByChillWhileChannelling", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "two_hand_weapon", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHash = 10968, }, + ["WeaponTreeUnaffectedByShockWhileChannelling"] = { type = "Spawn", tier = 1, "30% increased Effect of Shock on you", "Unaffected by Shock while Channelling", statOrder = { 10020, 10480 }, level = 1, group = "WeaponTreeUnaffectedByShockWhileChannelling", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "two_hand_weapon", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHash = 8946, }, + ["WeaponTreeWarcryBuffEffect1"] = { type = "Spawn", tier = 1, "20% increased Warcry Buff Effect", "Warcry Skills have 20% reduced Area of Effect", statOrder = { 10567, 10575 }, level = 10, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 30458, }, + ["WeaponTreeWarcryBuffEffect2"] = { type = "Spawn", tier = 2, "30% increased Warcry Buff Effect", "Warcry Skills have 20% reduced Area of Effect", statOrder = { 10567, 10575 }, level = 60, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 12271, }, + ["WeaponTreeWarcryBuffEffect2h1"] = { type = "Spawn", tier = 1, "35% increased Warcry Buff Effect", "Warcry Skills have 30% reduced Area of Effect", statOrder = { 10567, 10575 }, level = 10, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 37061, }, + ["WeaponTreeWarcryBuffEffect2h2"] = { type = "Spawn", tier = 2, "50% increased Warcry Buff Effect", "Warcry Skills have 30% reduced Area of Effect", statOrder = { 10567, 10575 }, level = 60, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 42216, }, + ["WeaponTreeWarcryDamagePerWarcryUsedRecently1"] = { type = "Spawn", tier = 1, "30% reduced Damage", "25% increased Damage for each time you've Warcried Recently", statOrder = { 1191, 6067 }, level = 10, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 235, }, + ["WeaponTreeWarcryDamagePerWarcryUsedRecently2"] = { type = "Spawn", tier = 2, "30% reduced Damage", "40% increased Damage for each time you've Warcried Recently", statOrder = { 1191, 6067 }, level = 60, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 56597, }, + ["WeaponTreeWarcryDamagePerWarcryUsedRecently2h1"] = { type = "Spawn", tier = 1, "50% reduced Damage", "40% increased Damage for each time you've Warcried Recently", statOrder = { 1191, 6067 }, level = 10, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 45237, }, + ["WeaponTreeWarcryDamagePerWarcryUsedRecently2h2"] = { type = "Spawn", tier = 2, "50% reduced Damage", "60% increased Damage for each time you've Warcried Recently", statOrder = { 1191, 6067 }, level = 60, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHash = 53485, }, + ["WeaponTreeScorchChanceCannotIgnite1"] = { type = "Spawn", tier = 1, "6% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 2027, 2560 }, level = 25, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 8745, }, + ["WeaponTreeScorchChanceCannotIgnite2"] = { type = "Spawn", tier = 2, "10% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 2027, 2560 }, level = 68, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 5815, }, + ["WeaponTreeScorchChanceCannotIgnite2h1"] = { type = "Spawn", tier = 1, "12% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 2027, 2560 }, level = 25, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 25969, }, + ["WeaponTreeScorchChanceCannotIgnite2h2"] = { type = "Spawn", tier = 2, "20% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 2027, 2560 }, level = 68, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 10993, }, + ["WeaponTreeBrittleChanceCannotFreezeChill1"] = { type = "Spawn", tier = 1, "6% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 2030, 2562 }, level = 25, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 7406, }, + ["WeaponTreeBrittleChanceCannotFreezeChill2"] = { type = "Spawn", tier = 2, "10% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 2030, 2562 }, level = 68, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 47746, }, + ["WeaponTreeBrittleChanceCannotFreezeChill2h1"] = { type = "Spawn", tier = 1, "12% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 2030, 2562 }, level = 25, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 45525, }, + ["WeaponTreeBrittleChanceCannotFreezeChill2h2"] = { type = "Spawn", tier = 2, "20% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 2030, 2562 }, level = 68, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 5275, }, + ["WeaponTreeSapChanceCannotShock1"] = { type = "Spawn", tier = 1, "6% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 2034, 2563 }, level = 25, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 28578, }, + ["WeaponTreeSapChanceCannotShock2"] = { type = "Spawn", tier = 2, "10% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 2034, 2563 }, level = 68, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 38841, }, + ["WeaponTreeSapChanceCannotShock2h1"] = { type = "Spawn", tier = 1, "12% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 2034, 2563 }, level = 25, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 1057, }, + ["WeaponTreeSapChanceCannotShock2h2"] = { type = "Spawn", tier = 2, "20% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 2034, 2563 }, level = 68, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 15393, }, + ["WeaponTreeFireExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Fire Exposure on Hit", "25% chance to be inflicted with Fire Exposure when you take Fire Damage from a Hit", statOrder = { 5027, 7285 }, level = 34, group = "WeaponTreeFireExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 61410, }, + ["WeaponTreeColdExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Cold Exposure on Hit", "25% chance to be inflicted with Cold Exposure when you take Cold Damage from a Hit", statOrder = { 5026, 7284 }, level = 34, group = "WeaponTreeColdExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 64950, }, + ["WeaponTreeLightningExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Lightning Exposure on Hit", "25% chance to be inflicted with Lightning Exposure when you take Lightning Damage from a Hit", statOrder = { 5028, 7286 }, level = 34, group = "WeaponTreeLightningExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 63373, }, + ["WeaponTreeAllExposureOnHit"] = { type = "Spawn", tier = 1, "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", statOrder = { 7272, 7287 }, level = 75, group = "WeaponTreeAllExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 31006, }, + ["WeaponTreeWitherOnHitChance1"] = { type = "Spawn", tier = 1, "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", statOrder = { 4397, 7288 }, level = 38, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 50147, }, + ["WeaponTreeWitherOnHitChance2"] = { type = "Spawn", tier = 2, "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", statOrder = { 4397, 7288 }, level = 76, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 3992, }, + ["WeaponTreeWitherOnHitChance2h1"] = { type = "Spawn", tier = 1, "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", statOrder = { 4397, 7288 }, level = 38, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 64266, }, + ["WeaponTreeWitherOnHitChance2h2"] = { type = "Spawn", tier = 2, "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", statOrder = { 4397, 7288 }, level = 76, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 5839, }, + ["WeaponTreeOverwhelm1"] = { type = "Spawn", tier = 1, "Overwhelm 15% Physical Damage Reduction", "Hits against you Overwhelm 5% of Physical Damage Reduction", statOrder = { 2978, 7159 }, level = 20, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 58438, }, + ["WeaponTreeOverwhelm2"] = { type = "Spawn", tier = 2, "Overwhelm 20% Physical Damage Reduction", "Hits against you Overwhelm 5% of Physical Damage Reduction", statOrder = { 2978, 7159 }, level = 68, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 5001, }, + ["WeaponTreeOverwhelm2h1"] = { type = "Spawn", tier = 1, "Overwhelm 24% Physical Damage Reduction", "Hits against you Overwhelm 10% of Physical Damage Reduction", statOrder = { 2978, 7159 }, level = 25, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 61314, }, + ["WeaponTreeOverwhelm2h2"] = { type = "Spawn", tier = 2, "Overwhelm 32% Physical Damage Reduction", "Hits against you Overwhelm 10% of Physical Damage Reduction", statOrder = { 2978, 7159 }, level = 68, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 31469, }, + ["WeaponTreeStunDuration1"] = { type = "Spawn", tier = 1, "30% increased Stun Duration on Enemies", "15% increased Stun Duration on you", statOrder = { 1863, 4174 }, level = 1, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHash = 6296, }, + ["WeaponTreeStunDuration2"] = { type = "Spawn", tier = 2, "40% increased Stun Duration on Enemies", "20% increased Stun Duration on you", statOrder = { 1863, 4174 }, level = 45, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHash = 8367, }, + ["WeaponTreeStunDuration2h1"] = { type = "Spawn", tier = 1, "60% increased Stun Duration on Enemies", "30% increased Stun Duration on you", statOrder = { 1863, 4174 }, level = 1, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 47066, }, + ["WeaponTreeStunDuration2h2"] = { type = "Spawn", tier = 2, "80% increased Stun Duration on Enemies", "40% increased Stun Duration on you", statOrder = { 1863, 4174 }, level = 45, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 24790, }, + ["WeaponTreeFreezeDuration1"] = { type = "Spawn", tier = 1, "20% increased Freeze Duration on Enemies", "15% increased Freeze Duration on you", statOrder = { 1858, 1874 }, level = 1, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHash = 52209, }, + ["WeaponTreeFreezeDuration2"] = { type = "Spawn", tier = 2, "30% increased Freeze Duration on Enemies", "20% increased Freeze Duration on you", statOrder = { 1858, 1874 }, level = 45, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHash = 47635, }, + ["WeaponTreeFreezeDuration2h1"] = { type = "Spawn", tier = 1, "35% increased Freeze Duration on Enemies", "30% increased Freeze Duration on you", statOrder = { 1858, 1874 }, level = 1, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 36444, }, + ["WeaponTreeFreezeDuration2h2"] = { type = "Spawn", tier = 2, "50% increased Freeze Duration on Enemies", "40% increased Freeze Duration on you", statOrder = { 1858, 1874 }, level = 45, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 53058, }, + ["WeaponTreeIgniteDuration1"] = { type = "Spawn", tier = 1, "20% increased Ignite Duration on Enemies", "15% increased Ignite Duration on you", statOrder = { 1859, 1875 }, level = 1, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHash = 35919, }, + ["WeaponTreeIgniteDuration2"] = { type = "Spawn", tier = 2, "30% increased Ignite Duration on Enemies", "20% increased Ignite Duration on you", statOrder = { 1859, 1875 }, level = 45, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHash = 10714, }, + ["WeaponTreeIgniteDuration2h1"] = { type = "Spawn", tier = 1, "35% increased Ignite Duration on Enemies", "30% increased Ignite Duration on you", statOrder = { 1859, 1875 }, level = 1, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 60228, }, + ["WeaponTreeIgniteDuration2h2"] = { type = "Spawn", tier = 2, "50% increased Ignite Duration on Enemies", "40% increased Ignite Duration on you", statOrder = { 1859, 1875 }, level = 45, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 44882, }, + ["WeaponTreeBleedDuration1"] = { type = "Spawn", tier = 1, "20% increased Bleeding Duration", "15% increased Bleed Duration on you", statOrder = { 4994, 9970 }, level = 1, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHash = 20196, }, + ["WeaponTreeBleedDuration2"] = { type = "Spawn", tier = 2, "30% increased Bleeding Duration", "20% increased Bleed Duration on you", statOrder = { 4994, 9970 }, level = 45, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHash = 15345, }, + ["WeaponTreeBleedDuration2h1"] = { type = "Spawn", tier = 1, "35% increased Bleeding Duration", "30% increased Bleed Duration on you", statOrder = { 4994, 9970 }, level = 1, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 7506, }, + ["WeaponTreeBleedDuration2h2"] = { type = "Spawn", tier = 2, "50% increased Bleeding Duration", "40% increased Bleed Duration on you", statOrder = { 4994, 9970 }, level = 45, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 51336, }, + ["WeaponTreePoisonDuration1"] = { type = "Spawn", tier = 1, "10% increased Poison Duration", "15% increased Poison Duration on you", statOrder = { 3170, 9979 }, level = 1, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHash = 32432, }, + ["WeaponTreePoisonDuration2"] = { type = "Spawn", tier = 2, "15% increased Poison Duration", "20% increased Poison Duration on you", statOrder = { 3170, 9979 }, level = 45, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHash = 42655, }, + ["WeaponTreePoisonDuration2h1"] = { type = "Spawn", tier = 1, "18% increased Poison Duration", "30% increased Poison Duration on you", statOrder = { 3170, 9979 }, level = 1, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 22538, }, + ["WeaponTreePoisonDuration2h2"] = { type = "Spawn", tier = 2, "24% increased Poison Duration", "40% increased Poison Duration on you", statOrder = { 3170, 9979 }, level = 45, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 22262, }, + ["WeaponTreeChillEffect1"] = { type = "Spawn", tier = 1, "15% increased Effect of Chill on you", "30% increased Effect of Chill", statOrder = { 1645, 5769 }, level = 1, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHash = 21374, }, + ["WeaponTreeChillEffect2"] = { type = "Spawn", tier = 2, "20% increased Effect of Chill on you", "40% increased Effect of Chill", statOrder = { 1645, 5769 }, level = 45, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHash = 53498, }, + ["WeaponTreeChillEffect2h1"] = { type = "Spawn", tier = 1, "30% increased Effect of Chill on you", "60% increased Effect of Chill", statOrder = { 1645, 5769 }, level = 1, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 39737, }, + ["WeaponTreeChillEffect2h2"] = { type = "Spawn", tier = 2, "40% increased Effect of Chill on you", "80% increased Effect of Chill", statOrder = { 1645, 5769 }, level = 45, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 43954, }, + ["WeaponTreeShockEffect1"] = { type = "Spawn", tier = 1, "30% increased Effect of Shock", "15% increased Effect of Shock on you", statOrder = { 10009, 10020 }, level = 1, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHash = 37050, }, + ["WeaponTreeShockEffect2"] = { type = "Spawn", tier = 2, "40% increased Effect of Shock", "20% increased Effect of Shock on you", statOrder = { 10009, 10020 }, level = 45, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHash = 15591, }, + ["WeaponTreeShockEffect2h1"] = { type = "Spawn", tier = 1, "60% increased Effect of Shock", "30% increased Effect of Shock on you", statOrder = { 10009, 10020 }, level = 1, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 34516, }, + ["WeaponTreeShockEffect2h2"] = { type = "Spawn", tier = 2, "80% increased Effect of Shock", "40% increased Effect of Shock on you", statOrder = { 10009, 10020 }, level = 45, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 23770, }, + ["WeaponTreeImpaleEffect1"] = { type = "Spawn", tier = 1, "10% increased Impale Effect", "Attack Hits against you have 15% chance to Impale", statOrder = { 7243, 9835 }, level = 1, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 75, 300, 300, 0 }, modTags = { }, tradeHash = 13895, }, + ["WeaponTreeImpaleEffect2"] = { type = "Spawn", tier = 2, "15% increased Impale Effect", "Attack Hits against you have 20% chance to Impale", statOrder = { 7243, 9835 }, level = 45, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 75, 300, 300, 0 }, modTags = { }, tradeHash = 10737, }, + ["WeaponTreeImpaleEffect2h1"] = { type = "Spawn", tier = 1, "18% increased Impale Effect", "Attack Hits against you have 30% chance to Impale", statOrder = { 7243, 9835 }, level = 1, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, tradeHash = 28832, }, + ["WeaponTreeImpaleEffect2h2"] = { type = "Spawn", tier = 2, "24% increased Impale Effect", "Attack Hits against you have 40% chance to Impale", statOrder = { 7243, 9835 }, level = 45, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, tradeHash = 42291, }, + ["WeaponTreeLocalReducedAttributeRequirements1"] = { type = "Spawn", tier = 1, "20% reduced Attribute Requirements", statOrder = { 1075 }, level = 1, group = "WeaponTreeLocalAttributeRequirements", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 1000 }, modTags = { }, tradeHash = 9495, }, + ["WeaponTreeLocalReducedAttributeRequirements2"] = { type = "Spawn", tier = 2, "30% reduced Attribute Requirements", statOrder = { 1075 }, level = 1, group = "WeaponTreeLocalAttributeRequirements", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 1000 }, modTags = { }, tradeHash = 13152, }, + ["WeaponTreeDexterityAndNoInherentBonusFromDexterity1"] = { type = "Spawn", tier = 1, "+60 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrder = { 1178, 2015 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHash = 16930, }, + ["WeaponTreeDexterityAndNoInherentBonusFromDexterity2"] = { type = "Spawn", tier = 2, "+80 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrder = { 1178, 2015 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHash = 8354, }, + ["WeaponTreeDexterityAndNoInherentBonusFromDexterity2h1"] = { type = "Spawn", tier = 1, "+90 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrder = { 1178, 2015 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, tradeHash = 38614, }, + ["WeaponTreeDexterityAndNoInherentBonusFromDexterity2h2"] = { type = "Spawn", tier = 2, "+120 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrder = { 1178, 2015 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, tradeHash = 4318, }, + ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence1"] = { type = "Spawn", tier = 1, "+60 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrder = { 1179, 2016 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, tradeHash = 51377, }, + ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence2"] = { type = "Spawn", tier = 2, "+80 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrder = { 1179, 2016 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, tradeHash = 10817, }, + ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence2h1"] = { type = "Spawn", tier = 1, "+90 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrder = { 1179, 2016 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 54004, }, + ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence2h2"] = { type = "Spawn", tier = 2, "+120 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrder = { 1179, 2016 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 48986, }, + ["WeaponTreeStrengthAndNoInherentBonusFromStrength1"] = { type = "Spawn", tier = 1, "+60 to Strength", "Gain no inherent bonuses from Strength", statOrder = { 1177, 2017 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 200, 500, 500, 0 }, modTags = { }, tradeHash = 18252, }, + ["WeaponTreeStrengthAndNoInherentBonusFromStrength2"] = { type = "Spawn", tier = 2, "+80 to Strength", "Gain no inherent bonuses from Strength", statOrder = { 1177, 2017 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 200, 500, 500, 0 }, modTags = { }, tradeHash = 4210, }, + ["WeaponTreeStrengthAndNoInherentBonusFromStrength2h1"] = { type = "Spawn", tier = 1, "+90 to Strength", "Gain no inherent bonuses from Strength", statOrder = { 1177, 2017 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "mace", "two_hand_weapon", "default", }, weightVal = { 0, 200, 500, 0 }, modTags = { }, tradeHash = 8883, }, + ["WeaponTreeStrengthAndNoInherentBonusFromStrength2h2"] = { type = "Spawn", tier = 2, "+120 to Strength", "Gain no inherent bonuses from Strength", statOrder = { 1177, 2017 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "mace", "two_hand_weapon", "default", }, weightVal = { 0, 200, 500, 0 }, modTags = { }, tradeHash = 2451, }, + ["WeaponTreePercentDexterityAndIntelligence1"] = { type = "Spawn", tier = 1, "4% increased Dexterity", "4% increased Intelligence", statOrder = { 1185, 1186 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHash = 38885, }, + ["WeaponTreePercentDexterityAndIntelligence2"] = { type = "Spawn", tier = 2, "6% increased Dexterity", "6% increased Intelligence", statOrder = { 1185, 1186 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHash = 21514, }, + ["WeaponTreePercentDexterityAndIntelligence2h1"] = { type = "Spawn", tier = 1, "6% increased Dexterity", "6% increased Intelligence", statOrder = { 1185, 1186 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 9827, }, + ["WeaponTreePercentDexterityAndIntelligence2h2"] = { type = "Spawn", tier = 2, "10% increased Dexterity", "10% increased Intelligence", statOrder = { 1185, 1186 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 40721, }, + ["WeaponTreePercentDexterityAndStrength1"] = { type = "Spawn", tier = 1, "4% increased Strength", "4% increased Dexterity", statOrder = { 1184, 1185 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHash = 56664, }, + ["WeaponTreePercentDexterityAndStrength2"] = { type = "Spawn", tier = 2, "6% increased Strength", "6% increased Dexterity", statOrder = { 1184, 1185 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHash = 63937, }, + ["WeaponTreePercentDexterityAndStrength2h1"] = { type = "Spawn", tier = 1, "6% increased Strength", "6% increased Dexterity", statOrder = { 1184, 1185 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 59736, }, + ["WeaponTreePercentDexterityAndStrength2h2"] = { type = "Spawn", tier = 2, "10% increased Strength", "10% increased Dexterity", statOrder = { 1184, 1185 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 45521, }, + ["WeaponTreePercentStrengthAndIntelligence1"] = { type = "Spawn", tier = 1, "4% increased Strength", "4% increased Intelligence", statOrder = { 1184, 1186 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHash = 63732, }, + ["WeaponTreePercentStrengthAndIntelligence2"] = { type = "Spawn", tier = 2, "6% increased Strength", "6% increased Intelligence", statOrder = { 1184, 1186 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHash = 5411, }, + ["WeaponTreePercentStrengthAndIntelligence2h1"] = { type = "Spawn", tier = 1, "6% increased Strength", "6% increased Intelligence", statOrder = { 1184, 1186 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 54063, }, + ["WeaponTreePercentStrengthAndIntelligence2h2"] = { type = "Spawn", tier = 2, "10% increased Strength", "10% increased Intelligence", statOrder = { 1184, 1186 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 24748, }, + ["WeaponTreeMovementSpeedIfLowDexterity1"] = { type = "Spawn", tier = 1, "8% increased Movement Speed if Dexterity is below 100", statOrder = { 9409 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHash = 15586, }, + ["WeaponTreeMovementSpeedIfLowDexterity2"] = { type = "Spawn", tier = 2, "12% increased Movement Speed if Dexterity is below 100", statOrder = { 9409 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHash = 46224, }, + ["WeaponTreeMovementSpeedIfLowDexterity2h1"] = { type = "Spawn", tier = 1, "14% increased Movement Speed if Dexterity is below 100", statOrder = { 9409 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, tradeHash = 19742, }, + ["WeaponTreeMovementSpeedIfLowDexterity2h2"] = { type = "Spawn", tier = 2, "20% increased Movement Speed if Dexterity is below 100", statOrder = { 9409 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, tradeHash = 50754, }, + ["WeaponTreeAreaOfEffectIfLowIntelligence1"] = { type = "Spawn", tier = 1, "14% increased Area of Effect if Intelligence is below 100", statOrder = { 4721 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, tradeHash = 37005, }, + ["WeaponTreeAreaOfEffectIfLowIntelligence2"] = { type = "Spawn", tier = 2, "20% increased Area of Effect if Intelligence is below 100", statOrder = { 4721 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, tradeHash = 12751, }, + ["WeaponTreeAreaOfEffectIfLowIntelligence2h1"] = { type = "Spawn", tier = 1, "24% increased Area of Effect if Intelligence is below 100", statOrder = { 4721 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 45395, }, + ["WeaponTreeAreaOfEffectIfLowIntelligence2h2"] = { type = "Spawn", tier = 2, "32% increased Area of Effect if Intelligence is below 100", statOrder = { 4721 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 54589, }, + ["WeaponTreeDoubleDamageChanceIfLowStrength1"] = { type = "Spawn", tier = 1, "6% chance to deal Double Damage if Strength is below 100", statOrder = { 6264 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, tradeHash = 40803, }, + ["WeaponTreeDoubleDamageChanceIfLowStrength2"] = { type = "Spawn", tier = 2, "10% chance to deal Double Damage if Strength is below 100", statOrder = { 6264 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, tradeHash = 19663, }, + ["WeaponTreeDoubleDamageChanceIfLowStrength2h1"] = { type = "Spawn", tier = 1, "12% chance to deal Double Damage if Strength is below 100", statOrder = { 6264 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, tradeHash = 8431, }, + ["WeaponTreeDoubleDamageChanceIfLowStrength2h2"] = { type = "Spawn", tier = 2, "16% chance to deal Double Damage if Strength is below 100", statOrder = { 6264 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, tradeHash = 59800, }, + ["WeaponTreeModEffectMinion1"] = { type = "Spawn", tier = 1, "10% increased Explicit Minion Modifier magnitudes", statOrder = { 54 }, level = 1, group = "WeaponTreeModEffectMinion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHash = 44018, }, + ["WeaponTreeModEffectMinion2"] = { type = "Spawn", tier = 2, "15% increased Explicit Minion Modifier magnitudes", statOrder = { 54 }, level = 65, group = "WeaponTreeModEffectMinion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHash = 51291, }, + ["WeaponTreeModEffectElementalDamage1"] = { type = "Spawn", tier = 1, "10% increased Explicit Elemental Damage Modifier magnitudes", statOrder = { 53 }, level = 1, group = "WeaponTreeModEffectElementalDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "shield", "default", }, weightVal = { 0, 0, 300 }, modTags = { }, tradeHash = 53122, }, + ["WeaponTreeModEffectElementalDamage2"] = { type = "Spawn", tier = 2, "15% increased Explicit Elemental Damage Modifier magnitudes", statOrder = { 53 }, level = 65, group = "WeaponTreeModEffectElementalDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "shield", "default", }, weightVal = { 0, 0, 300 }, modTags = { }, tradeHash = 64398, }, + ["WeaponTreeModEffectPhysicalAndChaosDamage1"] = { type = "Spawn", tier = 1, "10% increased Explicit Physical and Chaos Damage Modifier magnitudes", statOrder = { 55 }, level = 1, group = "WeaponTreeModEffectPhysicalAndChaosDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "shield", "default", }, weightVal = { 0, 0, 300 }, modTags = { }, tradeHash = 25650, }, + ["WeaponTreeModEffectPhysicalAndChaosDamage2"] = { type = "Spawn", tier = 2, "15% increased Explicit Physical and Chaos Damage Modifier magnitudes", statOrder = { 55 }, level = 65, group = "WeaponTreeModEffectPhysicalAndChaosDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "shield", "default", }, weightVal = { 0, 0, 300 }, modTags = { }, tradeHash = 62121, }, + ["WeaponTreeModEffectCasterDamage1"] = { type = "Spawn", tier = 1, "10% increased Explicit Caster Damage Modifier magnitudes", statOrder = { 40 }, level = 1, group = "WeaponTreeModEffectCasterDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 300, 0, 0, 300, 300, 300, 300, 0 }, modTags = { }, tradeHash = 45049, }, + ["WeaponTreeModEffectCasterDamage2"] = { type = "Spawn", tier = 2, "15% increased Explicit Caster Damage Modifier magnitudes", statOrder = { 40 }, level = 65, group = "WeaponTreeModEffectCasterDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 300, 0, 0, 300, 300, 300, 300, 0 }, modTags = { }, tradeHash = 34410, }, + ["WeaponTreeModEffectCritical1"] = { type = "Spawn", tier = 1, "10% increased Explicit Critical Modifier magnitudes", statOrder = { 43 }, level = 1, group = "WeaponTreeModEffectCritical", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "shield", "default", }, weightVal = { 0, 0, 300 }, modTags = { }, tradeHash = 932, }, + ["WeaponTreeModEffectCritical2"] = { type = "Spawn", tier = 2, "15% increased Explicit Critical Modifier magnitudes", statOrder = { 43 }, level = 65, group = "WeaponTreeModEffectCritical", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "shield", "default", }, weightVal = { 0, 0, 300 }, modTags = { }, tradeHash = 33462, }, + ["WeaponTreeModEffectSpeed1"] = { type = "Spawn", tier = 1, "10% increased Explicit Speed Modifier magnitudes", statOrder = { 52 }, level = 1, group = "WeaponTreeModEffectSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "shield", "default", }, weightVal = { 0, 0, 300 }, modTags = { }, tradeHash = 46633, }, + ["WeaponTreeModEffectSpeed2"] = { type = "Spawn", tier = 2, "15% increased Explicit Speed Modifier magnitudes", statOrder = { 52 }, level = 65, group = "WeaponTreeModEffectSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "shield", "default", }, weightVal = { 0, 0, 300 }, modTags = { }, tradeHash = 19368, }, + ["WeaponTreeModEffectMana1"] = { type = "Spawn", tier = 1, "10% increased Explicit Mana Modifier magnitudes", statOrder = { 49 }, level = 1, group = "WeaponTreeModEffectMana", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 300, 0, 0, 300, 300, 300, 300, 0 }, modTags = { }, tradeHash = 51812, }, + ["WeaponTreeModEffectMana2"] = { type = "Spawn", tier = 2, "15% increased Explicit Mana Modifier magnitudes", statOrder = { 49 }, level = 65, group = "WeaponTreeModEffectMana", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 300, 0, 0, 300, 300, 300, 300, 0 }, modTags = { }, tradeHash = 59709, }, + ["WeaponTreeModEffectLife1"] = { type = "Spawn", tier = 1, "10% increased Explicit Life Modifier magnitudes", statOrder = { 47 }, level = 1, group = "WeaponTreeModEffectLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 27218, }, + ["WeaponTreeModEffectLife2"] = { type = "Spawn", tier = 2, "15% increased Explicit Life Modifier magnitudes", statOrder = { 47 }, level = 65, group = "WeaponTreeModEffectLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 10563, }, + ["WeaponTreeModEffectDefence1"] = { type = "Spawn", tier = 1, "10% increased Explicit Defence Modifier magnitudes", statOrder = { 45 }, level = 1, group = "WeaponTreeModEffectDefence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 8402, }, + ["WeaponTreeModEffectDefence2"] = { type = "Spawn", tier = 2, "15% increased Explicit Defence Modifier magnitudes", statOrder = { 45 }, level = 65, group = "WeaponTreeModEffectDefence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 23015, }, + ["WeaponTreeModEffectResistance1"] = { type = "Spawn", tier = 1, "10% increased Explicit Resistance Modifier magnitudes", statOrder = { 51 }, level = 1, group = "WeaponTreeModEffectResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 47909, }, + ["WeaponTreeModEffectResistance2"] = { type = "Spawn", tier = 2, "15% increased Explicit Resistance Modifier magnitudes", statOrder = { 51 }, level = 65, group = "WeaponTreeModEffectResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 7842, }, + ["WeaponTreeModEffectAttributes1"] = { type = "Spawn", tier = 1, "10% increased Explicit Attribute Modifier magnitudes", statOrder = { 39 }, level = 1, group = "WeaponTreeModEffectAttributes", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 150 }, modTags = { }, tradeHash = 2302, }, + ["WeaponTreeModEffectAttributes2"] = { type = "Spawn", tier = 2, "15% increased Explicit Attribute Modifier magnitudes", statOrder = { 39 }, level = 65, group = "WeaponTreeModEffectAttributes", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 150 }, modTags = { }, tradeHash = 13085, }, + ["WeaponTreeChargeDuration1"] = { type = "Spawn", tier = 1, "50% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3026 }, level = 24, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHash = 41852, }, + ["WeaponTreeChargeDuration2"] = { type = "Spawn", tier = 2, "65% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3026 }, level = 55, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHash = 3367, }, + ["WeaponTreeChargeDuration3"] = { type = "Spawn", tier = 3, "80% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3026 }, level = 78, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHash = 46253, }, + ["WeaponTreeChargeDuration2h1"] = { type = "Spawn", tier = 1, "100% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3026 }, level = 24, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 31638, }, + ["WeaponTreeChargeDuration2h2"] = { type = "Spawn", tier = 2, "120% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3026 }, level = 55, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 32331, }, + ["WeaponTreeChargeDuration2h3"] = { type = "Spawn", tier = 3, "140% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3026 }, level = 78, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 27502, }, + ["WeaponTreeStealChargesOnHit1"] = { type = "Spawn", tier = 1, "5% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2992 }, level = 24, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHash = 65108, }, + ["WeaponTreeStealChargesOnHit2"] = { type = "Spawn", tier = 2, "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2992 }, level = 55, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHash = 24721, }, + ["WeaponTreeStealChargesOnHit3"] = { type = "Spawn", tier = 3, "15% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2992 }, level = 78, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHash = 55872, }, + ["WeaponTreeStealChargesOnHit2h1"] = { type = "Spawn", tier = 1, "15% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2992 }, level = 24, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 22784, }, + ["WeaponTreeStealChargesOnHit2h2"] = { type = "Spawn", tier = 2, "20% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2992 }, level = 55, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 21828, }, + ["WeaponTreeStealChargesOnHit2h3"] = { type = "Spawn", tier = 3, "25% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2992 }, level = 78, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 56607, }, + ["WeaponTreeChargeOnKill"] = { type = "Spawn", tier = 1, "75% reduced Endurance, Frenzy and Power Charge Duration", "Gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3026, 3612 }, level = 70, group = "WeaponTreeRandomChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 200 }, modTags = { }, tradeHash = 7343, }, + ["WeaponTreeFrenzyChargeOnKill"] = { type = "Spawn", tier = 1, "50% reduced Frenzy Charge Duration", "Gain a Frenzy Charge on Kill", statOrder = { 2127, 2631 }, level = 30, group = "WeaponTreeFrenzyChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 400 }, modTags = { }, tradeHash = 42069, }, + ["WeaponTreePowerChargeOnKill"] = { type = "Spawn", tier = 1, "50% reduced Power Charge Duration", "Gain a Power Charge on Kill", statOrder = { 2142, 2633 }, level = 30, group = "WeaponTreePowerChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 400 }, modTags = { }, tradeHash = 40621, }, + ["WeaponTreeEnduranceChargeOnKill"] = { type = "Spawn", tier = 1, "50% reduced Endurance Charge Duration", "Gain an Endurance Charge on Kill", statOrder = { 2125, 2629 }, level = 30, group = "WeaponTreeEnduranceChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 400 }, modTags = { }, tradeHash = 43492, }, + ["WeaponTreeMinimumFrenzyAndPowerCharges"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance Charges", "+1 to Minimum Frenzy Charges", "+1 to Minimum Power Charges", statOrder = { 1804, 1808, 1813 }, level = 30, group = "WeaponTreeMinimumChargesFrenzyAndPower", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHash = 59397, }, + ["WeaponTreeMinimumFrenzyAndPowerCharges2H"] = { type = "Spawn", tier = 1, "-2 to Maximum Endurance Charges", "+2 to Minimum Frenzy Charges", "+2 to Minimum Power Charges", statOrder = { 1804, 1808, 1813 }, level = 30, group = "WeaponTreeMinimumChargesFrenzyAndPower", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 44116, }, + ["WeaponTreeMinimumPowerAndEnduranceCharges"] = { type = "Spawn", tier = 1, "+1 to Minimum Endurance Charges", "-1 to Maximum Frenzy Charges", "+1 to Minimum Power Charges", statOrder = { 1803, 1809, 1813 }, level = 30, group = "WeaponTreeMinimumChargesPowerAndEndurance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHash = 29627, }, + ["WeaponTreeMinimumPowerAndEnduranceCharges2H"] = { type = "Spawn", tier = 1, "+2 to Minimum Endurance Charges", "-2 to Maximum Frenzy Charges", "+2 to Minimum Power Charges", statOrder = { 1803, 1809, 1813 }, level = 30, group = "WeaponTreeMinimumChargesPowerAndEndurance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 35437, }, + ["WeaponTreeMinimumEnduranceAndFrenzyCharges"] = { type = "Spawn", tier = 1, "+1 to Minimum Endurance Charges", "+1 to Minimum Frenzy Charges", "-1 to Maximum Power Charges", statOrder = { 1803, 1808, 1814 }, level = 30, group = "WeaponTreeMinimumChargesEnduranceAndFrenzy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHash = 46646, }, + ["WeaponTreeMinimumEnduranceAndFrenzyCharges2H"] = { type = "Spawn", tier = 1, "+2 to Minimum Endurance Charges", "+2 to Minimum Frenzy Charges", "-2 to Maximum Power Charges", statOrder = { 1803, 1808, 1814 }, level = 30, group = "WeaponTreeMinimumChargesEnduranceAndFrenzy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHash = 26641, }, + ["WeaponTreeMinimumAllCharges"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance, Frenzy and Power Charges", "+1 to Minimum Endurance, Frenzy and Power Charges", statOrder = { 9142, 9259 }, level = 30, group = "WeaponTreeAllMinimumCharges", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 55818, }, + ["WeaponTreeMinimumAllCharges2H"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance, Frenzy and Power Charges", "+2 to Minimum Endurance, Frenzy and Power Charges", statOrder = { 9142, 9259 }, level = 30, group = "WeaponTreeAllMinimumCharges", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 19972, }, + ["WeaponTreeMaximumFrenzyCharges"] = { type = "MergeOnly", tier = 1, "-1 to Maximum Endurance Charges", "+1 to Maximum Frenzy Charges", "-1 to Maximum Power Charges", statOrder = { 1804, 1809, 1814 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHash = 34416, }, + ["WeaponTreeMaximumFrenzyCharges2H"] = { type = "MergeOnly", tier = 1, "-2 to Maximum Endurance Charges", "+2 to Maximum Frenzy Charges", "-2 to Maximum Power Charges", statOrder = { 1804, 1809, 1814 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 36822, }, + ["WeaponTreeMaximumPowerCharges"] = { type = "MergeOnly", tier = 1, "-1 to Maximum Endurance Charges", "-1 to Maximum Frenzy Charges", "+1 to Maximum Power Charges", statOrder = { 1804, 1809, 1814 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHash = 56259, }, + ["WeaponTreeMaximumPowerCharges2H"] = { type = "MergeOnly", tier = 1, "-2 to Maximum Endurance Charges", "-2 to Maximum Frenzy Charges", "+2 to Maximum Power Charges", statOrder = { 1804, 1809, 1814 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 30827, }, + ["WeaponTreeMaximumEnduranceCharges"] = { type = "MergeOnly", tier = 1, "+1 to Maximum Endurance Charges", "-1 to Maximum Frenzy Charges", "-1 to Maximum Power Charges", statOrder = { 1804, 1809, 1814 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHash = 40522, }, + ["WeaponTreeMaximumEnduranceCharges2H"] = { type = "MergeOnly", tier = 1, "+2 to Maximum Endurance Charges", "-2 to Maximum Frenzy Charges", "-2 to Maximum Power Charges", statOrder = { 1804, 1809, 1814 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 17694, }, + ["WeaponTreeMovementSpeedPerFrenzyCharge"] = { type = "Spawn", tier = 1, "4% increased Movement Speed per Frenzy Charge", "-1 to Maximum Frenzy Charges", statOrder = { 1802, 1809 }, level = 50, group = "WeaponTreeMovementSpeedPerFrenzyCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 30545, }, + ["WeaponTreeMovementSpeedPerFrenzyCharge2H"] = { type = "Spawn", tier = 1, "6% increased Movement Speed per Frenzy Charge", "-1 to Maximum Frenzy Charges", statOrder = { 1802, 1809 }, level = 50, group = "WeaponTreeMovementSpeedPerFrenzyCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 26796, }, + ["WeaponTreeCooldownRecoveryPerPowerCharge"] = { type = "Spawn", tier = 1, "-1 to Maximum Power Charges", "4% increased Cooldown Recovery Rate per Power Charge", statOrder = { 1814, 5870 }, level = 50, group = "WeaponTreeCooldownRecoveryPerPowerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 39284, }, + ["WeaponTreeCooldownRecoveryPerPowerCharge2H"] = { type = "Spawn", tier = 1, "-1 to Maximum Power Charges", "6% increased Cooldown Recovery Rate per Power Charge", statOrder = { 1814, 5870 }, level = 50, group = "WeaponTreeCooldownRecoveryPerPowerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 21541, }, + ["WeaponTreeAreaOfEffectPerEnduranceCharge"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance Charges", "8% increased Area of Effect per Endurance Charge", statOrder = { 1804, 4733 }, level = 50, group = "WeaponTreeAreaOfEffectPerEnduranceCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 55768, }, + ["WeaponTreeAreaOfEffectPerEnduranceCharge2H"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance Charges", "12% increased Area of Effect per Endurance Charge", statOrder = { 1804, 4733 }, level = 50, group = "WeaponTreeAreaOfEffectPerEnduranceCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 34672, }, + ["WeaponTreeDamagePerCharge"] = { type = "Spawn", tier = 1, "15% increased Damage per Endurance, Frenzy or Power Charge", "-1 to Maximum Endurance, Frenzy and Power Charges", statOrder = { 6064, 9142 }, level = 70, group = "WeaponTreeDamagePerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 3777, }, + ["WeaponTreeDamagePerCharge2H"] = { type = "Spawn", tier = 1, "25% increased Damage per Endurance, Frenzy or Power Charge", "-1 to Maximum Endurance, Frenzy and Power Charges", statOrder = { 6064, 9142 }, level = 70, group = "WeaponTreeDamagePerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 34777, }, + ["WeaponTreeRampage1"] = { type = "MergeOnly", tier = 1, "Rampage", statOrder = { 10767 }, level = 86, group = "WeaponTreeSimulatedRampage", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 27393, }, + ["WeaponTreeHeraldOfAgonyEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Agony has 25% increased Buff Effect", "Herald of Agony has 25% increased Reservation", statOrder = { 7108, 7111 }, level = 16, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 42598, }, + ["WeaponTreeHeraldOfAgonyEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Agony has 35% increased Buff Effect", "Herald of Agony has 25% increased Reservation", statOrder = { 7108, 7111 }, level = 56, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 9188, }, + ["WeaponTreeHeraldOfAgonyEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Agony has 45% increased Buff Effect", "Herald of Agony has 25% increased Reservation", statOrder = { 7108, 7111 }, level = 82, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 63823, }, + ["WeaponTreeHeraldOfAgonyEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Agony has 50% increased Buff Effect", "Herald of Agony has 50% increased Reservation", statOrder = { 7108, 7111 }, level = 16, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 29958, }, + ["WeaponTreeHeraldOfAgonyEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Agony has 70% increased Buff Effect", "Herald of Agony has 50% increased Reservation", statOrder = { 7108, 7111 }, level = 56, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 8086, }, + ["WeaponTreeHeraldOfAgonyEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Agony has 90% increased Buff Effect", "Herald of Agony has 50% increased Reservation", statOrder = { 7108, 7111 }, level = 82, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 56374, }, + ["WeaponTreeHeraldOfAshEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Ash has 25% increased Reservation", "Herald of Ash has 25% increased Buff Effect", statOrder = { 4030, 7112 }, level = 16, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 60575, }, + ["WeaponTreeHeraldOfAshEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Ash has 25% increased Reservation", "Herald of Ash has 35% increased Buff Effect", statOrder = { 4030, 7112 }, level = 56, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 53850, }, + ["WeaponTreeHeraldOfAshEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Ash has 25% increased Reservation", "Herald of Ash has 45% increased Buff Effect", statOrder = { 4030, 7112 }, level = 82, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 56899, }, + ["WeaponTreeHeraldOfAshEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Ash has 50% increased Reservation", "Herald of Ash has 50% increased Buff Effect", statOrder = { 4030, 7112 }, level = 16, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 23508, }, + ["WeaponTreeHeraldOfAshEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Ash has 50% increased Reservation", "Herald of Ash has 70% increased Buff Effect", statOrder = { 4030, 7112 }, level = 56, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 1799, }, + ["WeaponTreeHeraldOfAshEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Ash has 50% increased Reservation", "Herald of Ash has 90% increased Buff Effect", statOrder = { 4030, 7112 }, level = 82, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 20166, }, + ["WeaponTreeHeraldOfIceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Ice has 25% increased Reservation", "Herald of Ice has 25% increased Buff Effect", statOrder = { 4031, 7116 }, level = 16, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 53799, }, + ["WeaponTreeHeraldOfIceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Ice has 25% increased Reservation", "Herald of Ice has 35% increased Buff Effect", statOrder = { 4031, 7116 }, level = 56, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 8465, }, + ["WeaponTreeHeraldOfIceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Ice has 25% increased Reservation", "Herald of Ice has 45% increased Buff Effect", statOrder = { 4031, 7116 }, level = 82, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 7267, }, + ["WeaponTreeHeraldOfIceEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Ice has 50% increased Reservation", "Herald of Ice has 50% increased Buff Effect", statOrder = { 4031, 7116 }, level = 16, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 22706, }, + ["WeaponTreeHeraldOfIceEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Ice has 50% increased Reservation", "Herald of Ice has 70% increased Buff Effect", statOrder = { 4031, 7116 }, level = 56, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 26021, }, + ["WeaponTreeHeraldOfIceEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Ice has 50% increased Reservation", "Herald of Ice has 90% increased Buff Effect", statOrder = { 4031, 7116 }, level = 82, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 27341, }, + ["WeaponTreeHeraldOfPurityEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Purity has 25% increased Buff Effect", "Herald of Purity has 25% increased Reservation", statOrder = { 7120, 7124 }, level = 16, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 2859, }, + ["WeaponTreeHeraldOfPurityEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Purity has 35% increased Buff Effect", "Herald of Purity has 25% increased Reservation", statOrder = { 7120, 7124 }, level = 56, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 1683, }, + ["WeaponTreeHeraldOfPurityEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Purity has 45% increased Buff Effect", "Herald of Purity has 25% increased Reservation", statOrder = { 7120, 7124 }, level = 82, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 34384, }, + ["WeaponTreeHeraldOfPurityEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Purity has 50% increased Buff Effect", "Herald of Purity has 50% increased Reservation", statOrder = { 7120, 7124 }, level = 16, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 2937, }, + ["WeaponTreeHeraldOfPurityEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Purity has 70% increased Buff Effect", "Herald of Purity has 50% increased Reservation", statOrder = { 7120, 7124 }, level = 56, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 3954, }, + ["WeaponTreeHeraldOfPurityEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Purity has 90% increased Buff Effect", "Herald of Purity has 50% increased Reservation", statOrder = { 7120, 7124 }, level = 82, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 49133, }, + ["WeaponTreeHeraldOfLightningEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Thunder has 25% increased Reservation", "Herald of Thunder has 25% increased Buff Effect", statOrder = { 4032, 7126 }, level = 16, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 777, }, + ["WeaponTreeHeraldOfLightningEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Thunder has 25% increased Reservation", "Herald of Thunder has 35% increased Buff Effect", statOrder = { 4032, 7126 }, level = 56, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 58154, }, + ["WeaponTreeHeraldOfLightningEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Thunder has 25% increased Reservation", "Herald of Thunder has 45% increased Buff Effect", statOrder = { 4032, 7126 }, level = 82, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 19425, }, + ["WeaponTreeHeraldOfLightningEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Thunder has 50% increased Reservation", "Herald of Thunder has 50% increased Buff Effect", statOrder = { 4032, 7126 }, level = 16, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 29156, }, + ["WeaponTreeHeraldOfLightningEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Thunder has 50% increased Reservation", "Herald of Thunder has 70% increased Buff Effect", statOrder = { 4032, 7126 }, level = 56, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 9075, }, + ["WeaponTreeHeraldOfLightningEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Thunder has 50% increased Reservation", "Herald of Thunder has 90% increased Buff Effect", statOrder = { 4032, 7126 }, level = 82, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 34256, }, + ["WeaponTreeAngerEffectAndReservation1"] = { type = "Spawn", tier = 1, "Anger has 20% increased Aura Effect", "Anger has 25% increased Reservation", statOrder = { 3356, 3417 }, level = 24, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 9783, }, + ["WeaponTreeAngerEffectAndReservation2"] = { type = "Spawn", tier = 2, "Anger has 25% increased Aura Effect", "Anger has 25% increased Reservation", statOrder = { 3356, 3417 }, level = 56, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 48119, }, + ["WeaponTreeAngerEffectAndReservation3"] = { type = "Spawn", tier = 3, "Anger has 30% increased Aura Effect", "Anger has 25% increased Reservation", statOrder = { 3356, 3417 }, level = 82, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 55655, }, + ["WeaponTreeAngerEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Anger has 40% increased Aura Effect", "Anger has 50% increased Reservation", statOrder = { 3356, 3417 }, level = 24, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 14270, }, + ["WeaponTreeAngerEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Anger has 50% increased Aura Effect", "Anger has 50% increased Reservation", statOrder = { 3356, 3417 }, level = 56, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 28432, }, + ["WeaponTreeAngerEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Anger has 60% increased Aura Effect", "Anger has 50% increased Reservation", statOrder = { 3356, 3417 }, level = 82, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 664, }, + ["WeaponTreeWrathEffectAndReservation1"] = { type = "Spawn", tier = 1, "Wrath has 20% increased Aura Effect", "Wrath has 25% increased Reservation", statOrder = { 3361, 4042 }, level = 24, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 37134, }, + ["WeaponTreeWrathEffectAndReservation2"] = { type = "Spawn", tier = 2, "Wrath has 25% increased Aura Effect", "Wrath has 25% increased Reservation", statOrder = { 3361, 4042 }, level = 56, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 53288, }, + ["WeaponTreeWrathEffectAndReservation3"] = { type = "Spawn", tier = 3, "Wrath has 30% increased Aura Effect", "Wrath has 25% increased Reservation", statOrder = { 3361, 4042 }, level = 82, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 24561, }, + ["WeaponTreeWrathEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Wrath has 40% increased Aura Effect", "Wrath has 50% increased Reservation", statOrder = { 3361, 4042 }, level = 24, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 54997, }, + ["WeaponTreeWrathEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Wrath has 50% increased Aura Effect", "Wrath has 50% increased Reservation", statOrder = { 3361, 4042 }, level = 56, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 57370, }, + ["WeaponTreeWrathEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Wrath has 60% increased Aura Effect", "Wrath has 50% increased Reservation", statOrder = { 3361, 4042 }, level = 82, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 3285, }, + ["WeaponTreeHatredEffectAndReservation1"] = { type = "Spawn", tier = 1, "Hatred has 20% increased Aura Effect", "Hatred has 25% increased Reservation", statOrder = { 3366, 4034 }, level = 24, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 28369, }, + ["WeaponTreeHatredEffectAndReservation2"] = { type = "Spawn", tier = 2, "Hatred has 25% increased Aura Effect", "Hatred has 25% increased Reservation", statOrder = { 3366, 4034 }, level = 56, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 4375, }, + ["WeaponTreeHatredEffectAndReservation3"] = { type = "Spawn", tier = 3, "Hatred has 30% increased Aura Effect", "Hatred has 25% increased Reservation", statOrder = { 3366, 4034 }, level = 82, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 31466, }, + ["WeaponTreeHatredEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Hatred has 40% increased Aura Effect", "Hatred has 50% increased Reservation", statOrder = { 3366, 4034 }, level = 24, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 27243, }, + ["WeaponTreeHatredEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Hatred has 50% increased Aura Effect", "Hatred has 50% increased Reservation", statOrder = { 3366, 4034 }, level = 56, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 15818, }, + ["WeaponTreeHatredEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Hatred has 60% increased Aura Effect", "Hatred has 50% increased Reservation", statOrder = { 3366, 4034 }, level = 82, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 59980, }, + ["WeaponTreeDeterminationEffectAndReservation1"] = { type = "Spawn", tier = 1, "Determination has 20% increased Aura Effect", "Determination has 25% increased Reservation", statOrder = { 3367, 4036 }, level = 24, group = "WeaponTreeDeterminationEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 8511, }, + ["WeaponTreeDeterminationEffectAndReservation2"] = { type = "Spawn", tier = 2, "Determination has 25% increased Aura Effect", "Determination has 25% increased Reservation", statOrder = { 3367, 4036 }, level = 56, group = "WeaponTreeDeterminationEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 46305, }, + ["WeaponTreeDeterminationEffectAndReservation3"] = { type = "Spawn", tier = 3, "Determination has 30% increased Aura Effect", "Determination has 25% increased Reservation", statOrder = { 3367, 4036 }, level = 82, group = "WeaponTreeDeterminationEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 24731, }, + ["WeaponTreeDisciplineEffectAndReservation1"] = { type = "Spawn", tier = 1, "Discipline has 20% increased Aura Effect", "Discipline has 25% increased Reservation", statOrder = { 3368, 4037 }, level = 24, group = "WeaponTreeDisciplineEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 31101, }, + ["WeaponTreeDisciplineEffectAndReservation2"] = { type = "Spawn", tier = 2, "Discipline has 25% increased Aura Effect", "Discipline has 25% increased Reservation", statOrder = { 3368, 4037 }, level = 56, group = "WeaponTreeDisciplineEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 23435, }, + ["WeaponTreeDisciplineEffectAndReservation3"] = { type = "Spawn", tier = 3, "Discipline has 30% increased Aura Effect", "Discipline has 25% increased Reservation", statOrder = { 3368, 4037 }, level = 82, group = "WeaponTreeDisciplineEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 27793, }, + ["WeaponTreeGraceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Grace has 20% increased Aura Effect", "Grace has 25% increased Reservation", statOrder = { 3363, 4043 }, level = 24, group = "WeaponTreeGraceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 63776, }, + ["WeaponTreeGraceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Grace has 25% increased Aura Effect", "Grace has 25% increased Reservation", statOrder = { 3363, 4043 }, level = 56, group = "WeaponTreeGraceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 4815, }, + ["WeaponTreeGraceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Grace has 30% increased Aura Effect", "Grace has 25% increased Reservation", statOrder = { 3363, 4043 }, level = 82, group = "WeaponTreeGraceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 9545, }, + ["WeaponTreeZealotryEffectAndReservation1"] = { type = "Spawn", tier = 1, "Zealotry has 20% increased Aura Effect", "Zealotry has 25% increased Reservation", statOrder = { 10722, 10725 }, level = 24, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 56503, }, + ["WeaponTreeZealotryEffectAndReservation2"] = { type = "Spawn", tier = 2, "Zealotry has 25% increased Aura Effect", "Zealotry has 25% increased Reservation", statOrder = { 10722, 10725 }, level = 56, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 5905, }, + ["WeaponTreeZealotryEffectAndReservation3"] = { type = "Spawn", tier = 3, "Zealotry has 30% increased Aura Effect", "Zealotry has 25% increased Reservation", statOrder = { 10722, 10725 }, level = 82, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 25064, }, + ["WeaponTreeZealotryEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Zealotry has 40% increased Aura Effect", "Zealotry has 50% increased Reservation", statOrder = { 10722, 10725 }, level = 24, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 16180, }, + ["WeaponTreeZealotryEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Zealotry has 50% increased Aura Effect", "Zealotry has 50% increased Reservation", statOrder = { 10722, 10725 }, level = 56, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 60674, }, + ["WeaponTreeZealotryEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Zealotry has 60% increased Aura Effect", "Zealotry has 50% increased Reservation", statOrder = { 10722, 10725 }, level = 82, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 58603, }, + ["WeaponTreePrideEffectAndReservation1"] = { type = "Spawn", tier = 1, "Pride has 20% increased Aura Effect", "Pride has 25% increased Reservation", statOrder = { 9711, 9717 }, level = 24, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 21373, }, + ["WeaponTreePrideEffectAndReservation2"] = { type = "Spawn", tier = 2, "Pride has 25% increased Aura Effect", "Pride has 25% increased Reservation", statOrder = { 9711, 9717 }, level = 56, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 57855, }, + ["WeaponTreePrideEffectAndReservation3"] = { type = "Spawn", tier = 3, "Pride has 30% increased Aura Effect", "Pride has 25% increased Reservation", statOrder = { 9711, 9717 }, level = 82, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 51920, }, + ["WeaponTreePrideEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Pride has 40% increased Aura Effect", "Pride has 50% increased Reservation", statOrder = { 9711, 9717 }, level = 24, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 23802, }, + ["WeaponTreePrideEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Pride has 50% increased Aura Effect", "Pride has 50% increased Reservation", statOrder = { 9711, 9717 }, level = 56, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 46544, }, + ["WeaponTreePrideEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Pride has 60% increased Aura Effect", "Pride has 50% increased Reservation", statOrder = { 9711, 9717 }, level = 82, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 47160, }, + ["WeaponTreePurityOfFireEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Fire has 20% increased Aura Effect", "Purity of Fire has 25% increased Reservation", statOrder = { 3358, 4039 }, level = 24, group = "WeaponTreePurityOfFireEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 53250, }, + ["WeaponTreePurityOfFireEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Fire has 25% increased Aura Effect", "Purity of Fire has 25% increased Reservation", statOrder = { 3358, 4039 }, level = 56, group = "WeaponTreePurityOfFireEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 44607, }, + ["WeaponTreePurityOfFireEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Fire has 30% increased Aura Effect", "Purity of Fire has 25% increased Reservation", statOrder = { 3358, 4039 }, level = 82, group = "WeaponTreePurityOfFireEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 37703, }, + ["WeaponTreePurityOfIceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Ice has 20% increased Aura Effect", "Purity of Ice has 25% increased Reservation", statOrder = { 3359, 4035 }, level = 24, group = "WeaponTreePurityOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 64062, }, + ["WeaponTreePurityOfIceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Ice has 25% increased Aura Effect", "Purity of Ice has 25% increased Reservation", statOrder = { 3359, 4035 }, level = 56, group = "WeaponTreePurityOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 60707, }, + ["WeaponTreePurityOfIceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Ice has 30% increased Aura Effect", "Purity of Ice has 25% increased Reservation", statOrder = { 3359, 4035 }, level = 82, group = "WeaponTreePurityOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 54096, }, + ["WeaponTreePurityOfLightningEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Lightning has 20% increased Aura Effect", "Purity of Lightning has 25% increased Reservation", statOrder = { 3360, 4040 }, level = 24, group = "WeaponTreePurityOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 22630, }, + ["WeaponTreePurityOfLightningEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Lightning has 25% increased Aura Effect", "Purity of Lightning has 25% increased Reservation", statOrder = { 3360, 4040 }, level = 56, group = "WeaponTreePurityOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 15792, }, + ["WeaponTreePurityOfLightningEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Lightning has 30% increased Aura Effect", "Purity of Lightning has 25% increased Reservation", statOrder = { 3360, 4040 }, level = 82, group = "WeaponTreePurityOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 49397, }, + ["WeaponTreePurityOfElementsEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Elements has 20% increased Aura Effect", "Purity of Elements has 25% increased Reservation", statOrder = { 3357, 4038 }, level = 24, group = "WeaponTreePurityOfElementsEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 4891, }, + ["WeaponTreePurityOfElementsEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Elements has 25% increased Aura Effect", "Purity of Elements has 25% increased Reservation", statOrder = { 3357, 4038 }, level = 56, group = "WeaponTreePurityOfElementsEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 19414, }, + ["WeaponTreePurityOfElementsEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Elements has 30% increased Aura Effect", "Purity of Elements has 25% increased Reservation", statOrder = { 3357, 4038 }, level = 82, group = "WeaponTreePurityOfElementsEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 31468, }, + ["WeaponTreeMalevolenceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Malevolence has 20% increased Aura Effect", "Malevolence has 25% increased Reservation", statOrder = { 6161, 6162 }, level = 24, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 30596, }, + ["WeaponTreeMalevolenceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Malevolence has 25% increased Aura Effect", "Malevolence has 25% increased Reservation", statOrder = { 6161, 6162 }, level = 56, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 33445, }, + ["WeaponTreeMalevolenceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Malevolence has 30% increased Aura Effect", "Malevolence has 25% increased Reservation", statOrder = { 6161, 6162 }, level = 82, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 27914, }, + ["WeaponTreeMalevolenceEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Malevolence has 40% increased Aura Effect", "Malevolence has 50% increased Reservation", statOrder = { 6161, 6162 }, level = 24, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 51011, }, + ["WeaponTreeMalevolenceEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Malevolence has 50% increased Aura Effect", "Malevolence has 50% increased Reservation", statOrder = { 6161, 6162 }, level = 56, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 35548, }, + ["WeaponTreeMalevolenceEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Malevolence has 60% increased Aura Effect", "Malevolence has 50% increased Reservation", statOrder = { 6161, 6162 }, level = 82, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 34560, }, + ["WeaponTreeHasteEffectAndReservation1"] = { type = "Spawn", tier = 1, "Haste has 20% increased Aura Effect", "Haste has 25% increased Reservation", statOrder = { 3364, 4044 }, level = 24, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 29873, }, + ["WeaponTreeHasteEffectAndReservation2"] = { type = "Spawn", tier = 2, "Haste has 25% increased Aura Effect", "Haste has 25% increased Reservation", statOrder = { 3364, 4044 }, level = 56, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 61538, }, + ["WeaponTreeHasteEffectAndReservation3"] = { type = "Spawn", tier = 3, "Haste has 30% increased Aura Effect", "Haste has 25% increased Reservation", statOrder = { 3364, 4044 }, level = 82, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHash = 17551, }, + ["WeaponTreeHasteEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Haste has 40% increased Aura Effect", "Haste has 50% increased Reservation", statOrder = { 3364, 4044 }, level = 24, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 7933, }, + ["WeaponTreeHasteEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Haste has 50% increased Aura Effect", "Haste has 50% increased Reservation", statOrder = { 3364, 4044 }, level = 56, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 42361, }, + ["WeaponTreeHasteEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Haste has 60% increased Aura Effect", "Haste has 50% increased Reservation", statOrder = { 3364, 4044 }, level = 82, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHash = 32906, }, + ["WeaponTreePrecisionEffectAndReservation1"] = { type = "Spawn", tier = 1, "Precision has 20% increased Aura Effect", "Precision has 25% increased Reservation", statOrder = { 3365, 9708 }, level = 8, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 37, 150, 150, 0 }, modTags = { }, tradeHash = 18416, }, + ["WeaponTreePrecisionEffectAndReservation2"] = { type = "Spawn", tier = 2, "Precision has 25% increased Aura Effect", "Precision has 25% increased Reservation", statOrder = { 3365, 9708 }, level = 56, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 37, 150, 150, 0 }, modTags = { }, tradeHash = 32121, }, + ["WeaponTreePrecisionEffectAndReservation3"] = { type = "Spawn", tier = 3, "Precision has 30% increased Aura Effect", "Precision has 25% increased Reservation", statOrder = { 3365, 9708 }, level = 82, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 37, 150, 150, 0 }, modTags = { }, tradeHash = 10647, }, + ["WeaponTreePrecisionEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Precision has 40% increased Aura Effect", "Precision has 50% increased Reservation", statOrder = { 3365, 9708 }, level = 8, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 37, 150, 0 }, modTags = { }, tradeHash = 16175, }, + ["WeaponTreePrecisionEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Precision has 50% increased Aura Effect", "Precision has 50% increased Reservation", statOrder = { 3365, 9708 }, level = 56, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 37, 150, 0 }, modTags = { }, tradeHash = 2821, }, + ["WeaponTreePrecisionEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Precision has 60% increased Aura Effect", "Precision has 50% increased Reservation", statOrder = { 3365, 9708 }, level = 82, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 37, 150, 0 }, modTags = { }, tradeHash = 24956, }, + ["WeaponTreeBannerEffectAndReservation1"] = { type = "Spawn", tier = 1, "Banner Skills have 20% increased Aura Effect", "25% increased Reservation of Banner Skills", statOrder = { 3362, 4972 }, level = 8, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 150, 150, 0 }, modTags = { }, tradeHash = 33868, }, + ["WeaponTreeBannerEffectAndReservation2"] = { type = "Spawn", tier = 2, "Banner Skills have 25% increased Aura Effect", "25% increased Reservation of Banner Skills", statOrder = { 3362, 4972 }, level = 56, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 150, 150, 0 }, modTags = { }, tradeHash = 28382, }, + ["WeaponTreeBannerEffectAndReservation3"] = { type = "Spawn", tier = 3, "Banner Skills have 30% increased Aura Effect", "25% increased Reservation of Banner Skills", statOrder = { 3362, 4972 }, level = 82, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 150, 150, 0 }, modTags = { }, tradeHash = 17546, }, + ["WeaponTreeBannerEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Banner Skills have 40% increased Aura Effect", "50% increased Reservation of Banner Skills", statOrder = { 3362, 4972 }, level = 8, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 37, 150, 0 }, modTags = { }, tradeHash = 8067, }, + ["WeaponTreeBannerEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Banner Skills have 50% increased Aura Effect", "50% increased Reservation of Banner Skills", statOrder = { 3362, 4972 }, level = 56, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 37, 150, 0 }, modTags = { }, tradeHash = 2028, }, + ["WeaponTreeBannerEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Banner Skills have 60% increased Aura Effect", "50% increased Reservation of Banner Skills", statOrder = { 3362, 4972 }, level = 82, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 37, 150, 0 }, modTags = { }, tradeHash = 40992, }, + ["WeaponTreeSpellSuppressionSpellDamageSuppressed1"] = { type = "Spawn", tier = 1, "-5% to amount of Suppressed Spell Damage Prevented", "+20% chance to Suppress Spell Damage", statOrder = { 1141, 1143 }, level = 15, group = "WeaponTreeSpellSuppressionSpellDamageSuppressed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 54555, }, + ["WeaponTreeSpellSuppressionSpellDamageSuppressed2"] = { type = "Spawn", tier = 2, "-5% to amount of Suppressed Spell Damage Prevented", "+25% chance to Suppress Spell Damage", statOrder = { 1141, 1143 }, level = 60, group = "WeaponTreeSpellSuppressionSpellDamageSuppressed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 45517, }, + ["WeaponTreeSpellDamageSuppressedSpellSuppression1"] = { type = "Spawn", tier = 1, "Prevent +2% of Suppressed Spell Damage", "-10% chance to Suppress Spell Damage", statOrder = { 1141, 1143 }, level = 15, group = "WeaponTreeSpellDamageSuppressedSpellSuppression", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 25739, }, + ["WeaponTreeSpellDamageSuppressedSpellSuppression2"] = { type = "Spawn", tier = 2, "Prevent +3% of Suppressed Spell Damage", "-10% chance to Suppress Spell Damage", statOrder = { 1141, 1143 }, level = 60, group = "WeaponTreeSpellDamageSuppressedSpellSuppression", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 34924, }, + ["WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently1"] = { type = "Spawn", tier = 1, "+20% chance to Suppress Spell Damage", "-15% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently", statOrder = { 1143, 10185 }, level = 5, group = "WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 11828, }, + ["WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently2"] = { type = "Spawn", tier = 2, "+25% chance to Suppress Spell Damage", "-18% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently", statOrder = { 1143, 10185 }, level = 55, group = "WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 32213, }, + ["WeaponTreeLifeOnSupress1"] = { type = "Spawn", tier = 1, "Recover 2% of Life when you Suppress Spell Damage", statOrder = { 9844 }, level = 15, group = "WeaponTreeLifeOnSupress", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 63571, }, + ["WeaponTreeLifeOnSupress2"] = { type = "Spawn", tier = 2, "Recover 3% of Life when you Suppress Spell Damage", statOrder = { 9844 }, level = 60, group = "WeaponTreeLifeOnSupress", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 55865, }, + ["WeaponTreeLifeOnBlock1"] = { type = "Spawn", tier = 1, "Recover 30 Life when you Block", statOrder = { 1760 }, level = 1, group = "WeaponTreeLifeOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 21274, }, + ["WeaponTreeLifeOnBlock2"] = { type = "Spawn", tier = 2, "Recover 50 Life when you Block", statOrder = { 1760 }, level = 50, group = "WeaponTreeLifeOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 2611, }, + ["WeaponTreeEnergyShieldOnBlock1"] = { type = "Spawn", tier = 1, "Gain 30 Energy Shield when you Block", statOrder = { 1759 }, level = 1, group = "WeaponTreeEnergyShieldOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, tradeHash = 35818, }, + ["WeaponTreeEnergyShieldOnBlock2"] = { type = "Spawn", tier = 2, "Gain 50 Energy Shield when you Block", statOrder = { 1759 }, level = 50, group = "WeaponTreeEnergyShieldOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, tradeHash = 2697, }, + ["WeaponTreeManaOnBlock1"] = { type = "Spawn", tier = 1, "30 Mana gained when you Block", statOrder = { 1758 }, level = 1, group = "WeaponTreeManaOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 43398, }, + ["WeaponTreeManaOnBlock2"] = { type = "Spawn", tier = 2, "50 Mana gained when you Block", statOrder = { 1758 }, level = 50, group = "WeaponTreeManaOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 51285, }, + ["WeaponTreeChillOnBlock1"] = { type = "Spawn", tier = 1, "50% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 1, group = "WeaponTreeChillOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, tradeHash = 8925, }, + ["WeaponTreeChillOnBlock2"] = { type = "Spawn", tier = 2, "Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 50, group = "WeaponTreeChillOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, tradeHash = 37758, }, + ["WeaponTreeShockOnBlock1"] = { type = "Spawn", tier = 1, "50% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10006 }, level = 1, group = "WeaponTreeShockOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, tradeHash = 36676, }, + ["WeaponTreeShockOnBlock2"] = { type = "Spawn", tier = 2, "Shock Attackers for 4 seconds on Block", statOrder = { 10006 }, level = 50, group = "WeaponTreeShockOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, tradeHash = 26956, }, + ["WeaponTreeScorchOnBlock1"] = { type = "Spawn", tier = 1, "15% chance to Scorch Enemies when you Block their Damage", statOrder = { 5713 }, level = 30, group = "WeaponTreeScorchOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHash = 65050, }, + ["WeaponTreeScorchOnBlock2"] = { type = "Spawn", tier = 2, "20% chance to Scorch Enemies when you Block their Damage", statOrder = { 5713 }, level = 75, group = "WeaponTreeScorchOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHash = 46025, }, + ["WeaponTreeBrittleOnBlock1"] = { type = "Spawn", tier = 1, "15% chance to inflict Brittle on Enemies when you Block their Damage", statOrder = { 5708 }, level = 30, group = "WeaponTreeBrittleOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHash = 40408, }, + ["WeaponTreeBrittleOnBlock2"] = { type = "Spawn", tier = 2, "20% chance to inflict Brittle on Enemies when you Block their Damage", statOrder = { 5708 }, level = 75, group = "WeaponTreeBrittleOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHash = 16725, }, + ["WeaponTreeSapOnBlock1"] = { type = "Spawn", tier = 1, "15% chance to Sap Enemies when you Block their Damage", statOrder = { 5712 }, level = 30, group = "WeaponTreeSapOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHash = 30229, }, + ["WeaponTreeSapOnBlock2"] = { type = "Spawn", tier = 2, "20% chance to Sap Enemies when you Block their Damage", statOrder = { 5712 }, level = 75, group = "WeaponTreeSapOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHash = 2067, }, + ["WeaponTreeMaxBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "+2% to maximum Chance to Block Attack Damage", "You take 5% of Damage from Blocked Hits", statOrder = { 1988, 4996 }, level = 45, group = "WeaponTreeMaxBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHash = 50957, }, + ["WeaponTreeMaxBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "+3% to maximum Chance to Block Attack Damage", "You take 5% of Damage from Blocked Hits", statOrder = { 1988, 4996 }, level = 82, group = "WeaponTreeMaxBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHash = 36976, }, + ["WeaponTreeMaxSpellBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "+2% to maximum Chance to Block Spell Damage", "You take 5% of Damage from Blocked Hits", statOrder = { 1989, 4996 }, level = 75, group = "WeaponTreeMaxSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHash = 32209, }, + ["WeaponTreeMaxSpellBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "+3% to maximum Chance to Block Spell Damage", "You take 5% of Damage from Blocked Hits", statOrder = { 1989, 4996 }, level = 82, group = "WeaponTreeMaxSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHash = 7741, }, + ["WeaponTreeAvoidIgniteChanceToBeShocked1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Ignited", "+20% chance to be Shocked", statOrder = { 1846, 2949 }, level = 1, group = "WeaponTreeAvoidIgniteChanceToBeShocked", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, tradeHash = 64359, }, + ["WeaponTreeAvoidIgniteChanceToBeShocked2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Ignited", "+20% chance to be Shocked", statOrder = { 1846, 2949 }, level = 60, group = "WeaponTreeAvoidIgniteChanceToBeShocked", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, tradeHash = 17900, }, + ["WeaponTreeAvoidFreezeChanceToBeIgnited1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Frozen", "+20% chance to be Ignited", statOrder = { 1845, 2948 }, level = 1, group = "WeaponTreeAvoidFreezeChanceToBeIgnited", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, tradeHash = 27169, }, + ["WeaponTreeAvoidFreezeChanceToBeIgnited2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Frozen", "+20% chance to be Ignited", statOrder = { 1845, 2948 }, level = 60, group = "WeaponTreeAvoidFreezeChanceToBeIgnited", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, tradeHash = 8132, }, + ["WeaponTreeAvoidShockChanceToBeFrozen1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Shocked", "+20% chance to be Frozen", statOrder = { 1848, 2947 }, level = 1, group = "WeaponTreeAvoidShockChanceToBeFrozen", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, tradeHash = 22615, }, + ["WeaponTreeAvoidShockChanceToBeFrozen2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Shocked", "+20% chance to be Frozen", statOrder = { 1848, 2947 }, level = 60, group = "WeaponTreeAvoidShockChanceToBeFrozen", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, tradeHash = 29514, }, + ["WeaponTreeAvoidBleedChanceToBePoisoned1"] = { type = "Spawn", tier = 1, "+20% chance to be Poisoned", "60% chance to Avoid Bleeding", statOrder = { 3370, 4216 }, level = 12, group = "WeaponTreeAvoidBleedChanceToBePoisoned", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, tradeHash = 58075, }, + ["WeaponTreeAvoidBleedChanceToBePoisoned2"] = { type = "Spawn", tier = 2, "+20% chance to be Poisoned", "100% chance to Avoid Bleeding", statOrder = { 3370, 4216 }, level = 65, group = "WeaponTreeAvoidBleedChanceToBePoisoned", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, tradeHash = 2132, }, + ["WeaponTreeAvoidPoisonBleedDurationOnSelf1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Poisoned", "50% increased Bleed Duration on you", statOrder = { 1849, 9970 }, level = 12, group = "WeaponTreeAvoidPoisonBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, tradeHash = 37792, }, + ["WeaponTreeAvoidPoisonBleedDurationOnSelf2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Poisoned", "50% increased Bleed Duration on you", statOrder = { 1849, 9970 }, level = 65, group = "WeaponTreeAvoidPoisonBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, tradeHash = 35743, }, + ["WeaponTreeCorruptingBloodImmunityExposureEffectOnSelf1"] = { type = "Spawn", tier = 1, "Corrupted Blood cannot be inflicted on you", "50% increased Effect of Exposure on you", statOrder = { 5408, 6522 }, level = 40, group = "WeaponTreeCorruptingBloodImmunityExposureEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, tradeHash = 12815, }, + ["WeaponTreeExposureImmunityChanceToBeMaimed1"] = { type = "Spawn", tier = 1, "Attack Hits have 20% chance to Maim you for 4 seconds", "Immune to Exposure", statOrder = { 5641, 7228 }, level = 40, group = "WeaponTreeExposureImmunityChanceToBeMaimed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, tradeHash = 41810, }, + ["WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf1"] = { type = "Spawn", tier = 1, "20% reduced Damage per Curse on you", "30% reduced Effect of Curses on you", statOrder = { 1216, 2170 }, level = 28, group = "WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 6566, }, + ["WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf2"] = { type = "Spawn", tier = 2, "20% reduced Damage per Curse on you", "40% reduced Effect of Curses on you", statOrder = { 1216, 2170 }, level = 73, group = "WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 257, }, + ["WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf1"] = { type = "Spawn", tier = 1, "10% increased Damage per Curse on you", "25% increased Effect of Curses on you", statOrder = { 1216, 2170 }, level = 28, group = "WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 64265, }, + ["WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf2"] = { type = "Spawn", tier = 2, "15% increased Damage per Curse on you", "25% increased Effect of Curses on you", statOrder = { 1216, 2170 }, level = 73, group = "WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 48306, }, + ["WeaponTreeStunThresholdStunDurationOnSelf1"] = { type = "Spawn", tier = 1, "100% increased Stun Threshold", "50% increased Stun Duration on you", statOrder = { 3272, 4174 }, level = 1, group = "WeaponTreeStunThresholdStunDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 28185, }, + ["WeaponTreeStunThresholdStunDurationOnSelf2"] = { type = "Spawn", tier = 2, "150% increased Stun Threshold", "50% increased Stun Duration on you", statOrder = { 3272, 4174 }, level = 60, group = "WeaponTreeStunThresholdStunDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 62831, }, + ["WeaponTreeStunRecoveryReducedStunThreshold1"] = { type = "Spawn", tier = 1, "100% increased Stun and Block Recovery", "25% reduced Stun Threshold", statOrder = { 1902, 3272 }, level = 1, group = "WeaponTreeStunRecoveryReducedStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 11137, }, + ["WeaponTreeStunRecoveryReducedStunThreshold2"] = { type = "Spawn", tier = 2, "150% increased Stun and Block Recovery", "25% reduced Stun Threshold", statOrder = { 1902, 3272 }, level = 60, group = "WeaponTreeStunRecoveryReducedStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 4138, }, + ["WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits1"] = { type = "Spawn", tier = 1, "You take 30% reduced Extra Damage from Critical Strikes", "Hits have 100% increased Critical Strike Chance against you", statOrder = { 1512, 3130 }, level = 1, group = "WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 42324, }, + ["WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits2"] = { type = "Spawn", tier = 2, "You take 40% reduced Extra Damage from Critical Strikes", "Hits have 100% increased Critical Strike Chance against you", statOrder = { 1512, 3130 }, level = 45, group = "WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 19498, }, + ["WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits1"] = { type = "Spawn", tier = 1, "You take 20% increased Extra Damage from Critical Strikes", "Hits have 50% reduced Critical Strike Chance against you", statOrder = { 1512, 3130 }, level = 1, group = "WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 16501, }, + ["WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits2"] = { type = "Spawn", tier = 2, "You take 20% increased Extra Damage from Critical Strikes", "Hits have 70% reduced Critical Strike Chance against you", statOrder = { 1512, 3130 }, level = 45, group = "WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 7656, }, + ["WeaponTreeElementalDamageReflectImmunePhysicalReflectDamageTaken1"] = { type = "Spawn", tier = 1, "100% reduced Reflected Elemental Damage taken", "100% increased Reflected Physical Damage taken", statOrder = { 2709, 2710 }, level = 68, group = "WeaponTreeElementalDamageReflectImmunePhysicalReflectDamageTaken", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 14579, }, + ["WeaponTreePhysicalDamageReflectImmuneElementalReflectDamageTaken1"] = { type = "Spawn", tier = 1, "100% increased Reflected Elemental Damage taken", "100% reduced Reflected Physical Damage taken", statOrder = { 2709, 2710 }, level = 68, group = "WeaponTreePhysicalDamageReflectImmuneElementalReflectDamageTaken", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 61011, }, + ["WeaponTreeDamageYouReflectGainedAsLife1"] = { type = "Spawn", tier = 1, "20% of Damage you Reflect to Enemies when Hit is leeched as Life", statOrder = { 2711 }, level = 1, group = "WeaponTreeDamageYouReflectGainedAsLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 11696, }, + ["WeaponTreeDamageYouReflectGainedAsLife2"] = { type = "Spawn", tier = 2, "30% of Damage you Reflect to Enemies when Hit is leeched as Life", statOrder = { 2711 }, level = 50, group = "WeaponTreeDamageYouReflectGainedAsLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 65033, }, + ["WeaponTreeLifeRecoveryRateReducedMaximumLife1"] = { type = "Spawn", tier = 1, "10% reduced maximum Life", "12% increased Life Recovery rate", statOrder = { 1571, 1578 }, level = 1, group = "WeaponTreeLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, tradeHash = 57, }, + ["WeaponTreeLifeRecoveryRateReducedMaximumLife2"] = { type = "Spawn", tier = 2, "10% reduced maximum Life", "16% increased Life Recovery rate", statOrder = { 1571, 1578 }, level = 72, group = "WeaponTreeLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, tradeHash = 15937, }, + ["WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield1"] = { type = "Spawn", tier = 1, "25% reduced Energy Shield", "12% increased Energy Shield Recovery rate", statOrder = { 1560, 1568 }, level = 1, group = "WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 750, 0 }, modTags = { }, tradeHash = 23076, }, + ["WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield2"] = { type = "Spawn", tier = 2, "25% reduced Energy Shield", "16% increased Energy Shield Recovery rate", statOrder = { 1560, 1568 }, level = 72, group = "WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 750, 0 }, modTags = { }, tradeHash = 42584, }, + ["WeaponTreeManaRecoveryRateReducedMaximumMana1"] = { type = "Spawn", tier = 1, "10% reduced maximum Mana", "12% increased Mana Recovery rate", statOrder = { 1580, 1586 }, level = 1, group = "WeaponTreeManaRecoveryRateReducedMaximumMana", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 26428, }, + ["WeaponTreeManaRecoveryRateReducedMaximumMana2"] = { type = "Spawn", tier = 2, "10% reduced maximum Mana", "16% increased Mana Recovery rate", statOrder = { 1580, 1586 }, level = 72, group = "WeaponTreeManaRecoveryRateReducedMaximumMana", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 22544, }, + ["WeaponTreeLifeRegenOnLowLife1"] = { type = "Spawn", tier = 1, "Regenerate 2% of Life per second while on Low Life", statOrder = { 1945 }, level = 1, group = "WeaponTreeLifeRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 8527, }, + ["WeaponTreeLifeRegenOnLowLife2"] = { type = "Spawn", tier = 2, "Regenerate 3% of Life per second while on Low Life", statOrder = { 1945 }, level = 50, group = "WeaponTreeLifeRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 37946, }, + ["WeaponTreeEnergyShieldRegenOnLowLife1"] = { type = "Spawn", tier = 1, "Regenerate 2% of Energy Shield per second while on Low Life", statOrder = { 1801 }, level = 10, group = "WeaponTreeEnergyShieldRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 3323, }, + ["WeaponTreeEnergyShieldRegenOnLowLife2"] = { type = "Spawn", tier = 2, "Regenerate 3% of Energy Shield per second while on Low Life", statOrder = { 1801 }, level = 80, group = "WeaponTreeEnergyShieldRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, tradeHash = 16411, }, + ["WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock1"] = { type = "Spawn", tier = 1, "-20% chance to Block Projectile Attack Damage", "+25% chance to Block Projectile Spell Damage", statOrder = { 2464, 5051 }, level = 1, group = "WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 17932, }, + ["WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock2"] = { type = "Spawn", tier = 2, "-20% chance to Block Projectile Attack Damage", "+30% chance to Block Projectile Spell Damage", statOrder = { 2464, 5051 }, level = 65, group = "WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 6942, }, + ["WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock1"] = { type = "Spawn", tier = 1, "+25% chance to Block Projectile Attack Damage", "-20% chance to Block Projectile Spell Damage", statOrder = { 2464, 5051 }, level = 1, group = "WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 7830, }, + ["WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock2"] = { type = "Spawn", tier = 2, "+30% chance to Block Projectile Attack Damage", "-20% chance to Block Projectile Spell Damage", statOrder = { 2464, 5051 }, level = 62, group = "WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 3655, }, + ["WeaponTreeElusiveOnLowLifeReducedElusiveEffect1"] = { type = "Spawn", tier = 1, "30% reduced Elusive Effect", "Gain Elusive on reaching Low Life", statOrder = { 6350, 6745 }, level = 30, group = "WeaponTreeElusiveOnLowLifeReducedElusiveEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 9657, }, + ["WeaponTreeElusiveOnLowLifeReducedElusiveEffect2"] = { type = "Spawn", tier = 2, "20% reduced Elusive Effect", "Gain Elusive on reaching Low Life", statOrder = { 6350, 6745 }, level = 76, group = "WeaponTreeElusiveOnLowLifeReducedElusiveEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHash = 25013, }, + ["WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife1"] = { type = "Spawn", tier = 1, "Cannot be Stunned when on Low Life", "8% increased Damage taken while on Low Life", statOrder = { 2174, 6120 }, level = 1, group = "WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 5579, }, + ["WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife2"] = { type = "Spawn", tier = 2, "Cannot be Stunned when on Low Life", "5% increased Damage taken while on Low Life", statOrder = { 2174, 6120 }, level = 76, group = "WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 62833, }, + ["WeaponTreeConsecratedGroundAilmentImmunityConsecratedGroundEffect1"] = { type = "Spawn", tier = 1, "100% chance to Avoid Elemental Ailments while on Consecrated Ground", "50% reduced Effect of Consecrated Ground you create", statOrder = { 3555, 5847 }, level = 40, group = "WeaponTreeConsecratedGroundAilmentImmunityConsecratedGroundEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 52552, }, + ["WeaponTreeConsecratedGroundEffectConsecratedGroundArea1"] = { type = "Spawn", tier = 1, "50% reduced Consecrated Ground Area", "30% increased Effect of Consecrated Ground you create", statOrder = { 5845, 5847 }, level = 40, group = "WeaponTreeConsecratedGroundEffectConsecratedGroundArea", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 32031, }, + ["WeaponTreeConsecratedGroundEffectConsecratedGroundArea2"] = { type = "Spawn", tier = 2, "50% reduced Consecrated Ground Area", "50% increased Effect of Consecrated Ground you create", statOrder = { 5845, 5847 }, level = 80, group = "WeaponTreeConsecratedGroundEffectConsecratedGroundArea", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHash = 59438, }, + ["WeaponTreeGuardSkillCooldownRecoveryGuardDuration1"] = { type = "Spawn", tier = 1, "Guard Skills have 60% increased Cooldown Recovery Rate", "Guard Skills have 50% reduced Duration", statOrder = { 6920, 6921 }, level = 15, group = "WeaponTreeGuardSkillCooldownRecoveryGuardDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHash = 4513, }, + ["WeaponTreeGuardSkillCooldownRecoveryGuardDuration2"] = { type = "Spawn", tier = 2, "Guard Skills have 80% increased Cooldown Recovery Rate", "Guard Skills have 50% reduced Duration", statOrder = { 6920, 6921 }, level = 65, group = "WeaponTreeGuardSkillCooldownRecoveryGuardDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHash = 34164, }, + ["WeaponTreeDebuffTimePassed1"] = { type = "Spawn", tier = 1, "Debuffs on you expire 15% faster", statOrder = { 6151 }, level = 25, group = "WeaponTreeDebuffTimePassed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHash = 48224, }, + ["WeaponTreeDebuffTimePassed2"] = { type = "Spawn", tier = 2, "Debuffs on you expire 25% faster", statOrder = { 6151 }, level = 78, group = "WeaponTreeDebuffTimePassed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHash = 35946, }, + ["WeaponTreeAvoidAilmentsFromCriticalStrikes1"] = { type = "Spawn", tier = 1, "50% chance to avoid Ailments from Critical Strikes", statOrder = { 4934 }, level = 1, group = "WeaponTreeAvoidAilmentsFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHash = 26435, }, + ["WeaponTreeAvoidAilmentsFromCriticalStrikes2"] = { type = "Spawn", tier = 2, "75% chance to avoid Ailments from Critical Strikes", statOrder = { 4934 }, level = 70, group = "WeaponTreeAvoidAilmentsFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHash = 31967, }, + ["WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery1"] = { type = "Spawn", tier = 1, "Retaliation Skills have 30% reduced Cooldown Recovery Rate", "Retaliation Skills deal 45% more Damage", statOrder = { 5889, 10588 }, level = 28, group = "WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHash = 11043, }, + ["WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery2"] = { type = "Spawn", tier = 2, "Retaliation Skills have 30% reduced Cooldown Recovery Rate", "Retaliation Skills deal 60% more Damage", statOrder = { 5889, 10588 }, level = 75, group = "WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHash = 48221, }, + ["WeaponTreeFortificationDurationMaximumFortification1"] = { type = "Spawn", tier = 1, "150% increased Fortification Duration", "-2 to maximum Fortification", statOrder = { 2265, 5031 }, level = 35, group = "WeaponTreeFortificationDurationMaximumFortification", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHash = 25290, }, + ["WeaponTreeFortificationDurationMaximumFortification2"] = { type = "Spawn", tier = 2, "200% increased Fortification Duration", "-2 to maximum Fortification", statOrder = { 2265, 5031 }, level = 80, group = "WeaponTreeFortificationDurationMaximumFortification", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHash = 8249, }, + ["WeaponTreeNumberOfCorpsesReducedCorpseLife1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have +1 to Maximum number of corpses allowed", "Corpses you Spawn have 5% reduced Maximum Life", statOrder = { 6167, 9163 }, level = 16, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 60654, }, + ["WeaponTreeNumberOfCorpsesReducedCorpseLife2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have +2 to Maximum number of corpses allowed", "Corpses you Spawn have 5% reduced Maximum Life", statOrder = { 6167, 9163 }, level = 72, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 31926, }, + ["WeaponTreeNumberOfCorpsesReducedCorpseLife2h1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have +2 to Maximum number of corpses allowed", "Corpses you Spawn have 10% reduced Maximum Life", statOrder = { 6167, 9163 }, level = 16, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 46735, }, + ["WeaponTreeNumberOfCorpsesReducedCorpseLife2h2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have +4 to Maximum number of corpses allowed", "Corpses you Spawn have 10% reduced Maximum Life", statOrder = { 6167, 9163 }, level = 72, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 54123, }, + ["WeaponTreeCorpseLifeReducedNumberOfCorpses1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have -1 to Maximum number of corpses allowed", "Corpses you Spawn have 10% increased Maximum Life", statOrder = { 6167, 9163 }, level = 16, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 28005, }, + ["WeaponTreeCorpseLifeReducedNumberOfCorpses2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have -1 to Maximum number of corpses allowed", "Corpses you Spawn have 15% increased Maximum Life", statOrder = { 6167, 9163 }, level = 72, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 54783, }, + ["WeaponTreeCorpseLifeReducedNumberOfCorpses2h1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have -2 to Maximum number of corpses allowed", "Corpses you Spawn have 20% increased Maximum Life", statOrder = { 6167, 9163 }, level = 16, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 19563, }, + ["WeaponTreeCorpseLifeReducedNumberOfCorpses2h2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have -2 to Maximum number of corpses allowed", "Corpses you Spawn have 30% increased Maximum Life", statOrder = { 6167, 9163 }, level = 72, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 3913, }, + ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration1"] = { type = "Spawn", tier = 1, "10% reduced Minion Duration", "Minions have 15% increased Cooldown Recovery Rate", statOrder = { 5032, 9288 }, level = 12, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, tradeHash = 19622, }, + ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration2"] = { type = "Spawn", tier = 2, "10% reduced Minion Duration", "Minions have 25% increased Cooldown Recovery Rate", statOrder = { 5032, 9288 }, level = 64, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, tradeHash = 36321, }, + ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration2h1"] = { type = "Spawn", tier = 1, "20% reduced Minion Duration", "Minions have 30% increased Cooldown Recovery Rate", statOrder = { 5032, 9288 }, level = 12, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, tradeHash = 9234, }, + ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration2h2"] = { type = "Spawn", tier = 2, "20% reduced Minion Duration", "Minions have 50% increased Cooldown Recovery Rate", statOrder = { 5032, 9288 }, level = 64, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, tradeHash = 54695, }, + ["WeaponTreeMinionDurationReducedCooldownRecovery1"] = { type = "Spawn", tier = 1, "15% increased Minion Duration", "Minions have 15% reduced Cooldown Recovery Rate", statOrder = { 5032, 9288 }, level = 12, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 42042, }, + ["WeaponTreeMinionDurationReducedCooldownRecovery2"] = { type = "Spawn", tier = 2, "20% increased Minion Duration", "Minions have 15% reduced Cooldown Recovery Rate", statOrder = { 5032, 9288 }, level = 64, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 16531, }, + ["WeaponTreeMinionDurationReducedCooldownRecovery2h1"] = { type = "Spawn", tier = 1, "30% increased Minion Duration", "Minions have 30% reduced Cooldown Recovery Rate", statOrder = { 5032, 9288 }, level = 12, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 39283, }, + ["WeaponTreeMinionDurationReducedCooldownRecovery2h2"] = { type = "Spawn", tier = 2, "40% increased Minion Duration", "Minions have 30% reduced Cooldown Recovery Rate", statOrder = { 5032, 9288 }, level = 64, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 47588, }, + ["WeaponTreeMinionAreaOfEffectReducedDamage1"] = { type = "Spawn", tier = 1, "Minions deal 15% reduced Damage", "Minions have 20% increased Area of Effect", statOrder = { 1973, 3024 }, level = 1, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 2619, }, + ["WeaponTreeMinionAreaOfEffectReducedDamage2"] = { type = "Spawn", tier = 2, "Minions deal 15% reduced Damage", "Minions have 30% increased Area of Effect", statOrder = { 1973, 3024 }, level = 55, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 4643, }, + ["WeaponTreeMinionAreaOfEffectReducedDamage2h1"] = { type = "Spawn", tier = 1, "Minions deal 30% reduced Damage", "Minions have 40% increased Area of Effect", statOrder = { 1973, 3024 }, level = 1, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 49539, }, + ["WeaponTreeMinionAreaOfEffectReducedDamage2h2"] = { type = "Spawn", tier = 2, "Minions deal 30% reduced Damage", "Minions have 60% increased Area of Effect", statOrder = { 1973, 3024 }, level = 55, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 7122, }, + ["WeaponTreeMinionElementalResistanceReducedChaosResistance1"] = { type = "Spawn", tier = 1, "Minions have +12% to all Elemental Resistances", "Minions have -11% to Chaos Resistance", statOrder = { 2912, 2913 }, level = 1, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, tradeHash = 31864, }, + ["WeaponTreeMinionElementalResistanceReducedChaosResistance2"] = { type = "Spawn", tier = 2, "Minions have +16% to all Elemental Resistances", "Minions have -11% to Chaos Resistance", statOrder = { 2912, 2913 }, level = 55, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, tradeHash = 48570, }, + ["WeaponTreeMinionElementalResistanceReducedChaosResistance2h1"] = { type = "Spawn", tier = 1, "Minions have +25% to all Elemental Resistances", "Minions have -23% to Chaos Resistance", statOrder = { 2912, 2913 }, level = 1, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, tradeHash = 58834, }, + ["WeaponTreeMinionElementalResistanceReducedChaosResistance2h2"] = { type = "Spawn", tier = 2, "Minions have +35% to all Elemental Resistances", "Minions have -23% to Chaos Resistance", statOrder = { 2912, 2913 }, level = 55, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, tradeHash = 54906, }, + ["WeaponTreeMinionChaosResistanceReducedElementalResistance1"] = { type = "Spawn", tier = 1, "Minions have -6% to all Elemental Resistances", "Minions have +17% to Chaos Resistance", statOrder = { 2912, 2913 }, level = 1, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 15427, }, + ["WeaponTreeMinionChaosResistanceReducedElementalResistance2"] = { type = "Spawn", tier = 2, "Minions have -6% to all Elemental Resistances", "Minions have +23% to Chaos Resistance", statOrder = { 2912, 2913 }, level = 55, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 49966, }, + ["WeaponTreeMinionChaosResistanceReducedElementalResistance2h1"] = { type = "Spawn", tier = 1, "Minions have -12% to all Elemental Resistances", "Minions have +37% to Chaos Resistance", statOrder = { 2912, 2913 }, level = 1, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 11254, }, + ["WeaponTreeMinionChaosResistanceReducedElementalResistance2h2"] = { type = "Spawn", tier = 2, "Minions have -12% to all Elemental Resistances", "Minions have +47% to Chaos Resistance", statOrder = { 2912, 2913 }, level = 55, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 40035, }, + ["WeaponTreeMinionArmour1"] = { type = "Spawn", tier = 1, "Minions have +350 to Armour", statOrder = { 2905 }, level = 25, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 2975, }, + ["WeaponTreeMinionArmour2"] = { type = "Spawn", tier = 2, "Minions have +500 to Armour", statOrder = { 2905 }, level = 55, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 7437, }, + ["WeaponTreeMinionArmour2h1"] = { type = "Spawn", tier = 1, "Minions have +700 to Armour", statOrder = { 2905 }, level = 25, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 12389, }, + ["WeaponTreeMinionArmour2h2"] = { type = "Spawn", tier = 2, "Minions have +1000 to Armour", statOrder = { 2905 }, level = 55, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 61142, }, + ["WeaponTreeMinionEvasion1"] = { type = "Spawn", tier = 1, "Minions have 20% increased Evasion Rating", statOrder = { 9304 }, level = 1, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 22251, }, + ["WeaponTreeMinionEvasion2"] = { type = "Spawn", tier = 2, "Minions have 30% increased Evasion Rating", statOrder = { 9304 }, level = 55, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 15170, }, + ["WeaponTreeMinionEvasion2h1"] = { type = "Spawn", tier = 1, "Minions have 40% increased Evasion Rating", statOrder = { 9304 }, level = 1, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 29318, }, + ["WeaponTreeMinionEvasion2h2"] = { type = "Spawn", tier = 2, "Minions have 60% increased Evasion Rating", statOrder = { 9304 }, level = 55, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 3834, }, + ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion1"] = { type = "Spawn", tier = 1, "Minions have 15% reduced Evasion Rating", "Minions have +15% chance to Suppress Spell Damage", statOrder = { 9304, 9334 }, level = 24, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 19084, }, + ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion2"] = { type = "Spawn", tier = 2, "Minions have 15% reduced Evasion Rating", "Minions have +25% chance to Suppress Spell Damage", statOrder = { 9304, 9334 }, level = 76, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 45781, }, + ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion2h1"] = { type = "Spawn", tier = 1, "Minions have 30% reduced Evasion Rating", "Minions have +30% chance to Suppress Spell Damage", statOrder = { 9304, 9334 }, level = 24, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 47161, }, + ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion2h2"] = { type = "Spawn", tier = 2, "Minions have 30% reduced Evasion Rating", "Minions have +50% chance to Suppress Spell Damage", statOrder = { 9304, 9334 }, level = 76, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 41497, }, + ["WeaponTreeMinionLifeReducedLifeRecoveryRate1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced Life Recovery rate", "Minions have 20% increased maximum Life", statOrder = { 1765, 1766 }, level = 1, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, tradeHash = 49305, }, + ["WeaponTreeMinionLifeReducedLifeRecoveryRate2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced Life Recovery rate", "Minions have 30% increased maximum Life", statOrder = { 1765, 1766 }, level = 62, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, tradeHash = 17906, }, + ["WeaponTreeMinionLifeReducedLifeRecoveryRate2h1"] = { type = "Spawn", tier = 1, "Minions have 20% reduced Life Recovery rate", "Minions have 40% increased maximum Life", statOrder = { 1765, 1766 }, level = 1, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, tradeHash = 17847, }, + ["WeaponTreeMinionLifeReducedLifeRecoveryRate2h2"] = { type = "Spawn", tier = 2, "Minions have 20% reduced Life Recovery rate", "Minions have 60% increased maximum Life", statOrder = { 1765, 1766 }, level = 62, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, tradeHash = 25369, }, + ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife1"] = { type = "Spawn", tier = 1, "Minions have 15% increased Life Recovery rate", "Minions have 15% reduced maximum Life", statOrder = { 1765, 1766 }, level = 10, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, tradeHash = 41655, }, + ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife2"] = { type = "Spawn", tier = 2, "Minions have 20% increased Life Recovery rate", "Minions have 15% reduced maximum Life", statOrder = { 1765, 1766 }, level = 66, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, tradeHash = 33652, }, + ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife2h1"] = { type = "Spawn", tier = 1, "Minions have 30% increased Life Recovery rate", "Minions have 30% reduced maximum Life", statOrder = { 1765, 1766 }, level = 10, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, tradeHash = 360, }, + ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife2h2"] = { type = "Spawn", tier = 2, "Minions have 40% increased Life Recovery rate", "Minions have 30% reduced maximum Life", statOrder = { 1765, 1766 }, level = 66, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, tradeHash = 27878, }, + ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance1"] = { type = "Spawn", tier = 1, "Minions have -6% to all Elemental Resistances", "Minions gain 15% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 2912, 9319 }, level = 15, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 52340, }, + ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance2"] = { type = "Spawn", tier = 2, "Minions have -6% to all Elemental Resistances", "Minions gain 20% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 2912, 9319 }, level = 78, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 36548, }, + ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance2h1"] = { type = "Spawn", tier = 1, "Minions have -12% to all Elemental Resistances", "Minions gain 30% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 2912, 9319 }, level = 15, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 62631, }, + ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance2h2"] = { type = "Spawn", tier = 2, "Minions have -12% to all Elemental Resistances", "Minions gain 40% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 2912, 9319 }, level = 78, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 25448, }, + ["WeaponTreeMinionMaximumElementalResistances1"] = { type = "Spawn", tier = 1, "Minions have +1% to all maximum Elemental Resistances", statOrder = { 9318 }, level = 83, group = "WeaponTreeMinionMaximumElementalResistances", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHash = 45474, }, + ["WeaponTreeMinionMaximumElementalResistances2h1"] = { type = "Spawn", tier = 1, "Minions have +2% to all maximum Elemental Resistances", statOrder = { 9318 }, level = 83, group = "WeaponTreeMinionMaximumElementalResistances", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHash = 21700, }, + ["WeaponTreeMinionBlindOnHitChance1"] = { type = "Spawn", tier = 1, "Minions have 10% chance to Blind on Hit with Attacks", statOrder = { 9277 }, level = 20, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHash = 11024, }, + ["WeaponTreeMinionBlindOnHitChance2"] = { type = "Spawn", tier = 2, "Minions have 15% chance to Blind on Hit with Attacks", statOrder = { 9277 }, level = 73, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHash = 56587, }, + ["WeaponTreeMinionBlindOnHitChance2h1"] = { type = "Spawn", tier = 1, "Minions have 20% chance to Blind on Hit with Attacks", statOrder = { 9277 }, level = 20, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHash = 2099, }, + ["WeaponTreeMinionBlindOnHitChance2h2"] = { type = "Spawn", tier = 2, "Minions have 30% chance to Blind on Hit with Attacks", statOrder = { 9277 }, level = 73, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHash = 63115, }, + ["WeaponTreeMinionHinderOnHitChance1"] = { type = "Spawn", tier = 1, "Minions have 10% chance to Hinder Enemies on Hit with Spells", statOrder = { 9335 }, level = 20, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHash = 14928, }, + ["WeaponTreeMinionHinderOnHitChance2"] = { type = "Spawn", tier = 2, "Minions have 15% chance to Hinder Enemies on Hit with Spells", statOrder = { 9335 }, level = 73, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHash = 19140, }, + ["WeaponTreeMinionHinderOnHitChance2h1"] = { type = "Spawn", tier = 1, "Minions have 20% chance to Hinder Enemies on Hit with Spells", statOrder = { 9335 }, level = 20, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHash = 17065, }, + ["WeaponTreeMinionHinderOnHitChance2h2"] = { type = "Spawn", tier = 2, "Minions have 30% chance to Hinder Enemies on Hit with Spells", statOrder = { 9335 }, level = 73, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHash = 55412, }, + ["WeaponTreeMinionMovementSpeed1"] = { type = "Spawn", tier = 1, "Minions have 12% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { }, tradeHash = 14096, }, + ["WeaponTreeMinionMovementSpeed2"] = { type = "Spawn", tier = 2, "Minions have 16% increased Movement Speed", statOrder = { 1769 }, level = 52, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { }, tradeHash = 3294, }, + ["WeaponTreeMinionMovementSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 24% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { }, tradeHash = 40752, }, + ["WeaponTreeMinionMovementSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 32% increased Movement Speed", statOrder = { 1769 }, level = 52, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { }, tradeHash = 60343, }, + ["WeaponTreeMinionProjectileSpeed1"] = { type = "Spawn", tier = 1, "Minions have 15% increased Projectile Speed", statOrder = { 9327 }, level = 1, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 62349, }, + ["WeaponTreeMinionProjectileSpeed2"] = { type = "Spawn", tier = 2, "Minions have 20% increased Projectile Speed", statOrder = { 9327 }, level = 76, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 44022, }, + ["WeaponTreeMinionProjectileSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 30% increased Projectile Speed", statOrder = { 9327 }, level = 1, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 36540, }, + ["WeaponTreeMinionProjectileSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 40% increased Projectile Speed", statOrder = { 9327 }, level = 76, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 17656, }, + ["WeaponTreeMinionBleedChanceBleedDurationOnSelf1"] = { type = "Spawn", tier = 1, "Minions have 8% chance to cause Bleeding with Attacks", "20% increased Bleed Duration on you", statOrder = { 2490, 9970 }, level = 25, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 48032, }, + ["WeaponTreeMinionBleedChanceBleedDurationOnSelf2"] = { type = "Spawn", tier = 2, "Minions have 12% chance to cause Bleeding with Attacks", "20% increased Bleed Duration on you", statOrder = { 2490, 9970 }, level = 78, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 47420, }, + ["WeaponTreeMinionBleedChanceBleedDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "Minions have 16% chance to cause Bleeding with Attacks", "40% increased Bleed Duration on you", statOrder = { 2490, 9970 }, level = 25, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 46451, }, + ["WeaponTreeMinionBleedChanceBleedDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "Minions have 24% chance to cause Bleeding with Attacks", "40% increased Bleed Duration on you", statOrder = { 2490, 9970 }, level = 78, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 5974, }, + ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf1"] = { type = "Spawn", tier = 1, "Minions have 8% chance to Poison Enemies on Hit", "20% increased Poison Duration on you", statOrder = { 3174, 9979 }, level = 25, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 10699, }, + ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf2"] = { type = "Spawn", tier = 2, "Minions have 12% chance to Poison Enemies on Hit", "20% increased Poison Duration on you", statOrder = { 3174, 9979 }, level = 78, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 22264, }, + ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "Minions have 16% chance to Poison Enemies on Hit", "40% increased Poison Duration on you", statOrder = { 3174, 9979 }, level = 25, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 63899, }, + ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "Minions have 24% chance to Poison Enemies on Hit", "40% increased Poison Duration on you", statOrder = { 3174, 9979 }, level = 78, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 35465, }, + ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf1"] = { type = "Spawn", tier = 1, "20% increased Ignite Duration on you", "Minions have 8% chance to Ignite", statOrder = { 1875, 9285 }, level = 25, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 65484, }, + ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf2"] = { type = "Spawn", tier = 2, "20% increased Ignite Duration on you", "Minions have 12% chance to Ignite", statOrder = { 1875, 9285 }, level = 78, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 44124, }, + ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "40% increased Ignite Duration on you", "Minions have 16% chance to Ignite", statOrder = { 1875, 9285 }, level = 25, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 11581, }, + ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "40% increased Ignite Duration on you", "Minions have 24% chance to Ignite", statOrder = { 1875, 9285 }, level = 78, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 37981, }, + ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf1"] = { type = "Spawn", tier = 1, "20% increased Freeze Duration on you", "Minions have 8% chance to Freeze", statOrder = { 1874, 9282 }, level = 25, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 15255, }, + ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf2"] = { type = "Spawn", tier = 2, "20% increased Freeze Duration on you", "Minions have 12% chance to Freeze", statOrder = { 1874, 9282 }, level = 78, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 44426, }, + ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "40% increased Freeze Duration on you", "Minions have 16% chance to Freeze", statOrder = { 1874, 9282 }, level = 25, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 16843, }, + ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "40% increased Freeze Duration on you", "Minions have 24% chance to Freeze", statOrder = { 1874, 9282 }, level = 78, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 15403, }, + ["WeaponTreeMinionShockChanceShockDurationOnSelf1"] = { type = "Spawn", tier = 1, "20% increased Shock Duration on you", "Minions have 8% chance to Shock", statOrder = { 1873, 9287 }, level = 25, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 27920, }, + ["WeaponTreeMinionShockChanceShockDurationOnSelf2"] = { type = "Spawn", tier = 2, "20% increased Shock Duration on you", "Minions have 12% chance to Shock", statOrder = { 1873, 9287 }, level = 78, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 44070, }, + ["WeaponTreeMinionShockChanceShockDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "40% increased Shock Duration on you", "Minions have 16% chance to Shock", statOrder = { 1873, 9287 }, level = 25, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 263, }, + ["WeaponTreeMinionShockChanceShockDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "40% increased Shock Duration on you", "Minions have 24% chance to Shock", statOrder = { 1873, 9287 }, level = 78, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 8029, }, + ["WeaponTreeLinkSkillsEffectReducedLinkManaCost1"] = { type = "Spawn", tier = 1, "Link Skills have 8% increased Buff Effect", "20% increased Mana Cost of Link Skills", statOrder = { 7486, 7494 }, level = 40, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, tradeHash = 15845, }, + ["WeaponTreeLinkSkillsEffectReducedLinkManaCost2"] = { type = "Spawn", tier = 2, "Link Skills have 12% increased Buff Effect", "20% increased Mana Cost of Link Skills", statOrder = { 7486, 7494 }, level = 82, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, tradeHash = 47594, }, + ["WeaponTreeLinkSkillsEffectReducedLinkManaCost2h1"] = { type = "Spawn", tier = 1, "Link Skills have 16% increased Buff Effect", "40% increased Mana Cost of Link Skills", statOrder = { 7486, 7494 }, level = 40, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, tradeHash = 41316, }, + ["WeaponTreeLinkSkillsEffectReducedLinkManaCost2h2"] = { type = "Spawn", tier = 2, "Link Skills have 24% increased Buff Effect", "40% increased Mana Cost of Link Skills", statOrder = { 7486, 7494 }, level = 82, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, tradeHash = 48159, }, + ["WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect1"] = { type = "Spawn", tier = 1, "Link Skills have 20% reduced Buff Effect", "Link Skills Link to 1 additional random target", statOrder = { 7486, 7508 }, level = 84, group = "WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, tradeHash = 41817, }, + ["WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect2h1"] = { type = "Spawn", tier = 1, "Link Skills have 30% reduced Buff Effect", "Link Skills Link to 2 additional random targets", statOrder = { 7486, 7508 }, level = 84, group = "WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, tradeHash = 45, }, + ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect1"] = { type = "Spawn", tier = 1, "Convocation has 25% increased Cooldown Recovery Rate", "20% reduced Convocation Buff Effect", statOrder = { 3877, 4023 }, level = 28, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 21521, }, + ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect2"] = { type = "Spawn", tier = 2, "Convocation has 40% increased Cooldown Recovery Rate", "20% reduced Convocation Buff Effect", statOrder = { 3877, 4023 }, level = 70, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 18249, }, + ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect2h1"] = { type = "Spawn", tier = 1, "Convocation has 50% increased Cooldown Recovery Rate", "40% reduced Convocation Buff Effect", statOrder = { 3877, 4023 }, level = 28, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 24409, }, + ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect2h2"] = { type = "Spawn", tier = 2, "Convocation has 80% increased Cooldown Recovery Rate", "40% reduced Convocation Buff Effect", statOrder = { 3877, 4023 }, level = 70, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, tradeHash = 16325, }, + ["WeaponTreeOfferingEffectReducedDuration1"] = { type = "Spawn", tier = 1, "10% increased effect of Offerings", "Offering Skills have 15% reduced Duration", statOrder = { 4063, 9553 }, level = 16, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 26933, }, + ["WeaponTreeOfferingEffectReducedDuration2"] = { type = "Spawn", tier = 2, "15% increased effect of Offerings", "Offering Skills have 15% reduced Duration", statOrder = { 4063, 9553 }, level = 78, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 30290, }, + ["WeaponTreeOfferingEffectReducedDuration2h1"] = { type = "Spawn", tier = 1, "20% increased effect of Offerings", "Offering Skills have 30% reduced Duration", statOrder = { 4063, 9553 }, level = 16, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 22279, }, + ["WeaponTreeOfferingEffectReducedDuration2h2"] = { type = "Spawn", tier = 2, "30% increased effect of Offerings", "Offering Skills have 30% reduced Duration", statOrder = { 4063, 9553 }, level = 78, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 14722, }, + ["WeaponTreeOfferingDurationReducedEffect1"] = { type = "Spawn", tier = 1, "10% reduced effect of Offerings", "Offering Skills have 25% increased Duration", statOrder = { 4063, 9553 }, level = 16, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 54731, }, + ["WeaponTreeOfferingDurationReducedEffect2"] = { type = "Spawn", tier = 2, "10% reduced effect of Offerings", "Offering Skills have 40% increased Duration", statOrder = { 4063, 9553 }, level = 78, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 2025, }, + ["WeaponTreeOfferingDurationReducedEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced effect of Offerings", "Offering Skills have 50% increased Duration", statOrder = { 4063, 9553 }, level = 16, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 6206, }, + ["WeaponTreeOfferingDurationReducedEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced effect of Offerings", "Offering Skills have 80% increased Duration", statOrder = { 4063, 9553 }, level = 78, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, tradeHash = 29227, }, + ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced Movement Speed", "Minions have 10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1769, 3381 }, level = 50, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHash = 17021, }, + ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced Movement Speed", "Minions have 15% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1769, 3381 }, level = 81, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHash = 35882, }, + ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced Movement Speed", "Minions have 20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1769, 3381 }, level = 50, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHash = 63110, }, + ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced Movement Speed", "Minions have 30% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1769, 3381 }, level = 81, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHash = 8656, }, + ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance1"] = { type = "Spawn", tier = 1, "Minions have -7% to Chaos Resistance", "Minions have 10% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 2913, 3379 }, level = 50, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHash = 19707, }, + ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance2"] = { type = "Spawn", tier = 2, "Minions have -7% to Chaos Resistance", "Minions have 15% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 2913, 3379 }, level = 81, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHash = 11287, }, + ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance2h1"] = { type = "Spawn", tier = 1, "Minions have -7% to Chaos Resistance", "Minions have 20% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 2913, 3379 }, level = 50, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHash = 54301, }, + ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance2h2"] = { type = "Spawn", tier = 2, "Minions have -7% to Chaos Resistance", "Minions have 30% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 2913, 3379 }, level = 81, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHash = 32077, }, + ["WeaponTreeMinionBlockReducedSpellBlock1"] = { type = "Spawn", tier = 1, "Minions have +20% Chance to Block Attack Damage", "Minions have -10% Chance to Block Spell Damage", statOrder = { 2903, 2904 }, level = 24, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, tradeHash = 13658, }, + ["WeaponTreeMinionBlockReducedSpellBlock2"] = { type = "Spawn", tier = 2, "Minions have +25% Chance to Block Attack Damage", "Minions have -10% Chance to Block Spell Damage", statOrder = { 2903, 2904 }, level = 75, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, tradeHash = 14679, }, + ["WeaponTreeMinionBlockReducedSpellBlock2h1"] = { type = "Spawn", tier = 1, "Minions have +30% Chance to Block Attack Damage", "Minions have -15% Chance to Block Spell Damage", statOrder = { 2903, 2904 }, level = 24, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, tradeHash = 30998, }, + ["WeaponTreeMinionBlockReducedSpellBlock2h2"] = { type = "Spawn", tier = 2, "Minions have +40% Chance to Block Attack Damage", "Minions have -15% Chance to Block Spell Damage", statOrder = { 2903, 2904 }, level = 75, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, tradeHash = 39160, }, + ["WeaponTreeMinionSpellBlockReducedBlock1"] = { type = "Spawn", tier = 1, "Minions have -10% Chance to Block Attack Damage", "Minions have +20% Chance to Block Spell Damage", statOrder = { 2903, 2904 }, level = 24, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, tradeHash = 12754, }, + ["WeaponTreeMinionSpellBlockReducedBlock2"] = { type = "Spawn", tier = 2, "Minions have -10% Chance to Block Attack Damage", "Minions have +25% Chance to Block Spell Damage", statOrder = { 2903, 2904 }, level = 75, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, tradeHash = 15875, }, + ["WeaponTreeMinionSpellBlockReducedBlock2h1"] = { type = "Spawn", tier = 1, "Minions have -15% Chance to Block Attack Damage", "Minions have +30% Chance to Block Spell Damage", statOrder = { 2903, 2904 }, level = 24, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, tradeHash = 351, }, + ["WeaponTreeMinionSpellBlockReducedBlock2h2"] = { type = "Spawn", tier = 2, "Minions have -15% Chance to Block Attack Damage", "Minions have +40% Chance to Block Spell Damage", statOrder = { 2903, 2904 }, level = 75, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, tradeHash = 22717, }, + ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced maximum Life", "Minions Recover 3% of their Life when they Block", statOrder = { 1766, 3061 }, level = 50, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 14545, }, + ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced maximum Life", "Minions Recover 4% of their Life when they Block", statOrder = { 1766, 3061 }, level = 81, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 53587, }, + ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife2h1"] = { type = "Spawn", tier = 1, "Minions have 20% reduced maximum Life", "Minions Recover 6% of their Life when they Block", statOrder = { 1766, 3061 }, level = 50, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 25937, }, + ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife2h2"] = { type = "Spawn", tier = 2, "Minions have 20% reduced maximum Life", "Minions Recover 8% of their Life when they Block", statOrder = { 1766, 3061 }, level = 81, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, tradeHash = 34844, }, + ["WeaponTreeGolemsAllowedReducedGolemBuffEffect1"] = { type = "Spawn", tier = 1, "+1 to maximum number of Summoned Golems", "50% reduced Effect of Buffs granted by your Golems", statOrder = { 3690, 6894 }, level = 40, group = "WeaponTreeGolemsAllowedReducedGolemBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, tradeHash = 3897, }, + ["WeaponTreeGolemsAllowedReducedGolemBuffEffect2h1"] = { type = "Spawn", tier = 1, "+2 to maximum number of Summoned Golems", "100% reduced Effect of Buffs granted by your Golems", statOrder = { 3690, 6894 }, level = 77, group = "WeaponTreeGolemsAllowedReducedGolemBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, tradeHash = 23749, }, + ["WeaponTreeGolemBuffEffectReducedGolemsAllowed1"] = { type = "Spawn", tier = 1, "-1 to maximum number of Summoned Golems", "75% increased Effect of Buffs granted by your Golems", statOrder = { 3690, 6894 }, level = 40, group = "WeaponTreeGolemBuffEffectReducedGolemsAllowed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, tradeHash = 5183, }, + ["WeaponTreeGolemBuffEffectReducedGolemsAllowed2h1"] = { type = "Spawn", tier = 1, "-2 to maximum number of Summoned Golems", "150% increased Effect of Buffs granted by your Golems", statOrder = { 3690, 6894 }, level = 77, group = "WeaponTreeGolemBuffEffectReducedGolemsAllowed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, tradeHash = 1679, }, + ["WeaponTreeSupportManaLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Mana Leech", statOrder = { 514 }, level = 38, group = "WeaponTreeSupportManaLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 32875, }, + ["WeaponTreeSupportManaLeech2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Mana Leech", statOrder = { 514 }, level = 38, group = "WeaponTreeSupportManaLeech", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 28586, }, + ["WeaponTreeSupportAdditionalAccuracy"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 15 Additional Accuracy", statOrder = { 480 }, level = 38, group = "WeaponTreeSupportAdditionalAccuracy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 11814, }, + ["WeaponTreeSupportAdditionalAccuracy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 15 Additional Accuracy", statOrder = { 480 }, level = 38, group = "WeaponTreeSupportAdditionalAccuracy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 53347, }, + ["WeaponTreeSupportArrogance"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Arrogance", statOrder = { 459 }, level = 38, group = "WeaponTreeSupportArrogance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 12962, }, + ["WeaponTreeSupportArrogance2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Arrogance", statOrder = { 459 }, level = 38, group = "WeaponTreeSupportArrogance", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 27356, }, + ["WeaponTreeSupportFork"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Fork", statOrder = { 486 }, level = 38, group = "WeaponTreeSupportFork", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 36837, }, + ["WeaponTreeSupportFork2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Fork", statOrder = { 486 }, level = 38, group = "WeaponTreeSupportFork", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 61066, }, + ["WeaponTreeSupportChanceToPoison"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance to Poison", statOrder = { 523 }, level = 38, group = "WeaponTreeSupportChanceToPoison", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 26244, }, + ["WeaponTreeSupportChanceToPoison2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance to Poison", statOrder = { 523 }, level = 38, group = "WeaponTreeSupportChanceToPoison", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 44530, }, + ["WeaponTreeSupportLifeLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Life Leech", statOrder = { 483 }, level = 38, group = "WeaponTreeSupportLifeLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 29206, }, + ["WeaponTreeSupportLifeLeech2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Life Leech", statOrder = { 483 }, level = 38, group = "WeaponTreeSupportLifeLeech", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 8862, }, + ["WeaponTreeSupportMeleeSplash"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Melee Splash", statOrder = { 471 }, level = 38, group = "WeaponTreeSupportMeleeSplash", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHash = 45258, }, + ["WeaponTreeSupportMeleeSplash2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Melee Splash", statOrder = { 471 }, level = 38, group = "WeaponTreeSupportMeleeSplash", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 50080, }, + ["WeaponTreeSupportFasterProjectiles"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Faster Projectiles", statOrder = { 482 }, level = 38, group = "WeaponTreeSupportFasterProjectiles", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 3110, }, + ["WeaponTreeSupportFasterProjectiles2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Faster Projectiles", statOrder = { 482 }, level = 38, group = "WeaponTreeSupportFasterProjectiles", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 62468, }, + ["WeaponTreeSupportStun"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Stun", statOrder = { 479 }, level = 38, group = "WeaponTreeSupportStun", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 53398, }, + ["WeaponTreeSupportStun2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Stun", statOrder = { 479 }, level = 38, group = "WeaponTreeSupportStun", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 7170, }, + ["WeaponTreeSupportIncreasedArea"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Increased Area of Effect", statOrder = { 224 }, level = 38, group = "WeaponTreeSupportIncreasedArea", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 4568, }, + ["WeaponTreeSupportIncreasedArea2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Increased Area of Effect", statOrder = { 224 }, level = 38, group = "WeaponTreeSupportIncreasedArea", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 25007, }, + ["WeaponTreeSupportKnockback"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Knockback", statOrder = { 502 }, level = 38, group = "WeaponTreeSupportKnockback", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 56855, }, + ["WeaponTreeSupportKnockback2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Knockback", statOrder = { 502 }, level = 38, group = "WeaponTreeSupportKnockback", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 61653, }, + ["WeaponTreeSupportMinionLife"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Life", statOrder = { 504 }, level = 38, group = "WeaponTreeSupportMinionLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 59753, }, + ["WeaponTreeSupportMinionLife2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Life", statOrder = { 504 }, level = 38, group = "WeaponTreeSupportMinionLife", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHash = 16548, }, + ["WeaponTreeSupportMinionSpeed"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Speed", statOrder = { 508 }, level = 38, group = "WeaponTreeSupportMinionSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 21302, }, + ["WeaponTreeSupportMinionSpeed2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Speed", statOrder = { 508 }, level = 38, group = "WeaponTreeSupportMinionSpeed", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHash = 17987, }, + ["WeaponTreeSupportLesserMultipleProjectiles"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Multiple Projectiles", statOrder = { 505 }, level = 38, group = "WeaponTreeSupportLesserMultipleProjectiles", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 44253, }, + ["WeaponTreeSupportLesserMultipleProjectiles2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Multiple Projectiles", statOrder = { 505 }, level = 38, group = "WeaponTreeSupportLesserMultipleProjectiles", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 39526, }, + ["WeaponTreeSupportBlind"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Blind", statOrder = { 470 }, level = 38, group = "WeaponTreeSupportBlind", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 35486, }, + ["WeaponTreeSupportBlind2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Blind", statOrder = { 470 }, level = 38, group = "WeaponTreeSupportBlind", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 5927, }, + ["WeaponTreeSupportBlasphemy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Blasphemy", statOrder = { 520 }, level = 38, group = "WeaponTreeSupportBlasphemy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, tradeHash = 58553, }, + ["WeaponTreeSupportBlasphemy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Blasphemy", statOrder = { 520 }, level = 38, group = "WeaponTreeSupportBlasphemy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, tradeHash = 52066, }, + ["WeaponTreeSupportIronWill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Will", statOrder = { 501 }, level = 38, group = "WeaponTreeSupportIronWill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, tradeHash = 14505, }, + ["WeaponTreeSupportIronWill2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Will", statOrder = { 501 }, level = 38, group = "WeaponTreeSupportIronWill", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, tradeHash = 32183, }, + ["WeaponTreeSupportFasterCast"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 500 }, level = 38, group = "WeaponTreeSupportFasterCast", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, tradeHash = 40805, }, + ["WeaponTreeSupportFasterCast2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 500 }, level = 38, group = "WeaponTreeSupportFasterCast", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, tradeHash = 26522, }, + ["WeaponTreeSupportChanceToFlee"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Chance to Flee", statOrder = { 498 }, level = 38, group = "WeaponTreeSupportChanceToFlee", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 18820, }, + ["WeaponTreeSupportChanceToFlee2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Chance to Flee", statOrder = { 498 }, level = 38, group = "WeaponTreeSupportChanceToFlee", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 24552, }, + ["WeaponTreeSupportItemRarity"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Item Rarity", statOrder = { 321 }, level = 38, group = "WeaponTreeSupportItemRarity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 60863, }, + ["WeaponTreeSupportItemRarity2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Item Rarity", statOrder = { 321 }, level = 38, group = "WeaponTreeSupportItemRarity", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 13231, }, + ["WeaponTreeSupportChanceToIgnite"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Combustion", statOrder = { 245 }, level = 38, group = "WeaponTreeSupportChanceToIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 62296, }, + ["WeaponTreeSupportChanceToIgnite2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Combustion", statOrder = { 245 }, level = 38, group = "WeaponTreeSupportChanceToIgnite", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 5018, }, + ["WeaponTreeSupportLifeGainOnHit"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Life Gain On Hit", statOrder = { 324 }, level = 38, group = "WeaponTreeSupportLifeGainOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 37236, }, + ["WeaponTreeSupportLifeGainOnHit2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Life Gain On Hit", statOrder = { 324 }, level = 38, group = "WeaponTreeSupportLifeGainOnHit", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 50613, }, + ["WeaponTreeSupportCullingStrike"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Culling Strike", statOrder = { 254 }, level = 38, group = "WeaponTreeSupportCullingStrike", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 38566, }, + ["WeaponTreeSupportCullingStrike2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Culling Strike", statOrder = { 254 }, level = 38, group = "WeaponTreeSupportCullingStrike", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 22375, }, + ["WeaponTreeSupportPointBlank"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Point Blank", statOrder = { 354 }, level = 38, group = "WeaponTreeSupportPointBlank", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 26574, }, + ["WeaponTreeSupportPointBlank2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Point Blank", statOrder = { 354 }, level = 38, group = "WeaponTreeSupportPointBlank", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 3749, }, + ["WeaponTreeSupportIronGrip"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Grip", statOrder = { 319 }, level = 38, group = "WeaponTreeSupportIronGrip", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 10869, }, + ["WeaponTreeSupportIronGrip2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Grip", statOrder = { 319 }, level = 38, group = "WeaponTreeSupportIronGrip", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 24540, }, + ["WeaponTreeSupportChain"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chain", statOrder = { 243 }, level = 38, group = "WeaponTreeSupportChain", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 16157, }, + ["WeaponTreeSupportChain2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chain", statOrder = { 243 }, level = 38, group = "WeaponTreeSupportChain", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 62681, }, + ["WeaponTreeSupportElementalArmy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Army Support", statOrder = { 384 }, level = 38, group = "WeaponTreeSupportElementalArmy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 29608, }, + ["WeaponTreeSupportElementalArmy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Army Support", statOrder = { 384 }, level = 38, group = "WeaponTreeSupportElementalArmy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHash = 26088, }, + ["WeaponTreeSupportEmpower"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Empower", statOrder = { 269 }, level = 38, group = "WeaponTreeSupportEmpower", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHash = 7514, }, + ["WeaponTreeSupportEmpower2H"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Empower", statOrder = { 269 }, level = 38, group = "WeaponTreeSupportEmpower", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 48569, }, + ["WeaponTreeSupportSlowerProjectiles"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Slower Projectiles", statOrder = { 377 }, level = 38, group = "WeaponTreeSupportSlowerProjectiles", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 30297, }, + ["WeaponTreeSupportSlowerProjectiles2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Slower Projectiles", statOrder = { 377 }, level = 38, group = "WeaponTreeSupportSlowerProjectiles", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 15933, }, + ["WeaponTreeSupportLessDuration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Less Duration", statOrder = { 365 }, level = 38, group = "WeaponTreeSupportLessDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 10402, }, + ["WeaponTreeSupportLessDuration2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Less Duration", statOrder = { 365 }, level = 38, group = "WeaponTreeSupportLessDuration", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 50107, }, + ["WeaponTreeSupportEnhance"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enhance", statOrder = { 271 }, level = 38, group = "WeaponTreeSupportEnhance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHash = 26703, }, + ["WeaponTreeSupportEnhance2H"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enhance", statOrder = { 271 }, level = 38, group = "WeaponTreeSupportEnhance", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 40943, }, + ["WeaponTreeSupportEnlighten"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enlighten", statOrder = { 272 }, level = 38, group = "WeaponTreeSupportEnlighten", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHash = 1950, }, + ["WeaponTreeSupportEnlighten2H"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enlighten", statOrder = { 272 }, level = 38, group = "WeaponTreeSupportEnlighten", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHash = 18839, }, + ["WeaponTreeSupportPhysicalToLightning"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Physical To Lightning", statOrder = { 352 }, level = 38, group = "WeaponTreeSupportPhysicalToLightning", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 11880, }, + ["WeaponTreeSupportPhysicalToLightning2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Physical To Lightning", statOrder = { 352 }, level = 38, group = "WeaponTreeSupportPhysicalToLightning", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 36228, }, + ["WeaponTreeSupportAdvancedTraps"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Advanced Traps", statOrder = { 390 }, level = 38, group = "WeaponTreeSupportAdvancedTraps", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 24860, }, + ["WeaponTreeSupportAdvancedTraps2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Advanced Traps", statOrder = { 390 }, level = 38, group = "WeaponTreeSupportAdvancedTraps", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 47622, }, + ["WeaponTreeSupportIgniteProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ignite Proliferation", statOrder = { 308 }, level = 38, group = "WeaponTreeSupportIgniteProliferation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 18624, }, + ["WeaponTreeSupportIgniteProliferation2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ignite Proliferation", statOrder = { 308 }, level = 38, group = "WeaponTreeSupportIgniteProliferation", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 16669, }, + ["WeaponTreeSupportChanceToBleed"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance To Bleed", statOrder = { 244 }, level = 38, group = "WeaponTreeSupportChanceToBleed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 49653, }, + ["WeaponTreeSupportChanceToBleed2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance To Bleed", statOrder = { 244 }, level = 38, group = "WeaponTreeSupportChanceToBleed", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 38664, }, + ["WeaponTreeSupportDecay"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Decay", statOrder = { 259 }, level = 38, group = "WeaponTreeSupportDecay", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 40092, }, + ["WeaponTreeSupportDecay2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Decay", statOrder = { 259 }, level = 38, group = "WeaponTreeSupportDecay", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 38869, }, + ["WeaponTreeSupportMaim"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Maim", statOrder = { 331 }, level = 38, group = "WeaponTreeSupportMaim", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 40150, }, + ["WeaponTreeSupportMaim2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Maim", statOrder = { 331 }, level = 38, group = "WeaponTreeSupportMaim", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 19671, }, + ["WeaponTreeSupportOnslaught"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 344 }, level = 38, group = "WeaponTreeSupportOnslaught", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 17523, }, + ["WeaponTreeSupportOnslaught2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 344 }, level = 38, group = "WeaponTreeSupportOnslaught", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 4006, }, + ["WeaponTreeSupportArcaneSurge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arcane Surge", statOrder = { 226 }, level = 38, group = "WeaponTreeSupportArcaneSurge", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, tradeHash = 51860, }, + ["WeaponTreeSupportArcaneSurge2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arcane Surge", statOrder = { 226 }, level = 38, group = "WeaponTreeSupportArcaneSurge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, tradeHash = 7059, }, + ["WeaponTreeSupportArrowNova"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arrow Nova", statOrder = { 361 }, level = 38, group = "WeaponTreeSupportArrowNova", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHash = 42041, }, + ["WeaponTreeSupportArrowNova2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arrow Nova", statOrder = { 361 }, level = 38, group = "WeaponTreeSupportArrowNova", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 14595, }, + ["WeaponTreeSupportPierce"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Pierce", statOrder = { 509 }, level = 38, group = "WeaponTreeSupportPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 64810, }, + ["WeaponTreeSupportPierce2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Pierce", statOrder = { 509 }, level = 38, group = "WeaponTreeSupportPierce", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 12911, }, + ["WeaponTreeSupportGenerosity"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Generosity", statOrder = { 495 }, level = 38, group = "WeaponTreeSupportGenerosity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 23311, }, + ["WeaponTreeSupportGenerosity2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Generosity", statOrder = { 495 }, level = 38, group = "WeaponTreeSupportGenerosity", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 44326, }, + ["WeaponTreeSupportFortify"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Fortify", statOrder = { 496 }, level = 38, group = "WeaponTreeSupportFortify", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHash = 20818, }, + ["WeaponTreeSupportFortify2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Fortify", statOrder = { 496 }, level = 38, group = "WeaponTreeSupportFortify", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 18070, }, + ["WeaponTreeSupportElementalProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Proliferation", statOrder = { 466 }, level = 38, group = "WeaponTreeSupportElementalProliferation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 26551, }, + ["WeaponTreeSupportElementalProliferation2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Proliferation", statOrder = { 466 }, level = 38, group = "WeaponTreeSupportElementalProliferation", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 55379, }, + ["WeaponTreeSupportVolley"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Volley", statOrder = { 350 }, level = 38, group = "WeaponTreeSupportVolley", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 59155, }, + ["WeaponTreeSupportVolley2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Volley", statOrder = { 350 }, level = 38, group = "WeaponTreeSupportVolley", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 52621, }, + ["WeaponTreeSupportSpellCascade"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Spell Cascade", statOrder = { 379 }, level = 38, group = "WeaponTreeSupportSpellCascade", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, tradeHash = 21714, }, + ["WeaponTreeSupportSpellCascade2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Spell Cascade", statOrder = { 379 }, level = 38, group = "WeaponTreeSupportSpellCascade", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, tradeHash = 53361, }, + ["WeaponTreeSupportAncestralCall"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ancestral Call", statOrder = { 382 }, level = 38, group = "WeaponTreeSupportAncestralCall", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHash = 4505, }, + ["WeaponTreeSupportAncestralCall2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ancestral Call", statOrder = { 382 }, level = 38, group = "WeaponTreeSupportAncestralCall", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 54847, }, + ["WeaponTreeSupportSummonGhostOnKill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Summon Phantasm", statOrder = { 385 }, level = 38, group = "WeaponTreeSupportSummonGhostOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 42627, }, + ["WeaponTreeSupportSummonGhostOnKill2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Summon Phantasm", statOrder = { 385 }, level = 38, group = "WeaponTreeSupportSummonGhostOnKill", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHash = 7156, }, + ["WeaponTreeSupportWitheringTouch"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Withering Touch", statOrder = { 405 }, level = 38, group = "WeaponTreeSupportWitheringTouch", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 7023, }, + ["WeaponTreeSupportWitheringTouch2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Withering Touch", statOrder = { 405 }, level = 38, group = "WeaponTreeSupportWitheringTouch", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 42834, }, + ["WeaponTreeSupportEnergyLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Energy Leech", statOrder = { 270 }, level = 38, group = "WeaponTreeSupportEnergyLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 47374, }, + ["WeaponTreeSupportEnergyLeech2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Energy Leech", statOrder = { 270 }, level = 38, group = "WeaponTreeSupportEnergyLeech", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 21019, }, + ["WeaponTreeSupportIntensify"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Intensify", statOrder = { 380 }, level = 38, group = "WeaponTreeSupportIntensify", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, tradeHash = 36288, }, + ["WeaponTreeSupportIntensify2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Intensify", statOrder = { 380 }, level = 38, group = "WeaponTreeSupportIntensify", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, tradeHash = 28083, }, + ["WeaponTreeSupportImpale"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Impale", statOrder = { 310 }, level = 38, group = "WeaponTreeSupportImpale", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 55393, }, + ["WeaponTreeSupportImpale2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Impale", statOrder = { 310 }, level = 38, group = "WeaponTreeSupportImpale", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 57406, }, + ["WeaponTreeSupportRage"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Rage", statOrder = { 360 }, level = 38, group = "WeaponTreeSupportRage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHash = 59412, }, + ["WeaponTreeSupportRage2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Rage", statOrder = { 360 }, level = 38, group = "WeaponTreeSupportRage", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 2830, }, + ["WeaponTreeSupportShockwave"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Shockwave", statOrder = { 376 }, level = 38, group = "WeaponTreeSupportShockwave", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHash = 62098, }, + ["WeaponTreeSupportShockwave2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Shockwave", statOrder = { 376 }, level = 38, group = "WeaponTreeSupportShockwave", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "staff", "mace", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHash = 52004, }, + ["WeaponTreeSupportFeedingFrenzy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Feeding Frenzy", statOrder = { 276 }, level = 38, group = "WeaponTreeSupportFeedingFrenzy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 56354, }, + ["WeaponTreeSupportFeedingFrenzy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Feeding Frenzy", statOrder = { 276 }, level = 38, group = "WeaponTreeSupportFeedingFrenzy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHash = 41860, }, + ["WeaponTreeSupportPredator"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Predator", statOrder = { 258 }, level = 38, group = "WeaponTreeSupportPredator", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 20961, }, + ["WeaponTreeSupportPredator2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Predator", statOrder = { 258 }, level = 38, group = "WeaponTreeSupportPredator", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHash = 50055, }, + ["WeaponTreeSupportInfernalLegion"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Infernal Legion", statOrder = { 315 }, level = 38, group = "WeaponTreeSupportInfernalLegion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, tradeHash = 55874, }, + ["WeaponTreeSupportInfernalLegion2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Infernal Legion", statOrder = { 315 }, level = 38, group = "WeaponTreeSupportInfernalLegion", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHash = 49150, }, + ["WeaponTreeSupportSwiftAssembly"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swift Assembly", statOrder = { 386 }, level = 38, group = "WeaponTreeSupportSwiftAssembly", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 48196, }, + ["WeaponTreeSupportSwiftAssembly2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swift Assembly", statOrder = { 386 }, level = 38, group = "WeaponTreeSupportSwiftAssembly", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 62518, }, + ["WeaponTreeSupportSecondWind"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Second Wind", statOrder = { 375 }, level = 38, group = "WeaponTreeSupportSecondWind", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 43937, }, + ["WeaponTreeSupportSecondWind2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Second Wind", statOrder = { 375 }, level = 38, group = "WeaponTreeSupportSecondWind", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 36845, }, + ["WeaponTreeSupportUrgentOrders"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Urgent Orders", statOrder = { 397 }, level = 38, group = "WeaponTreeSupportUrgentOrders", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHash = 31465, }, + ["WeaponTreeSupportUrgentOrders2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Urgent Orders", statOrder = { 397 }, level = 38, group = "WeaponTreeSupportUrgentOrders", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 24639, }, + ["WeaponTreeSupportSwiftBrand"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swiftbrand", statOrder = { 387 }, level = 38, group = "WeaponTreeSupportSwiftBrand", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, tradeHash = 21043, }, + ["WeaponTreeSupportSwiftBrand2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swiftbrand", statOrder = { 387 }, level = 38, group = "WeaponTreeSupportSwiftBrand", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, tradeHash = 7315, }, + ["WeaponTreeSupportImpendingDoom"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Impending Doom", statOrder = { 311 }, level = 38, group = "WeaponTreeSupportImpendingDoom", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { "support", "gem" }, tradeHash = 62692, }, + ["WeaponTreeSupportImpendingDoom2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Impending Doom", statOrder = { 311 }, level = 38, group = "WeaponTreeSupportImpendingDoom", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { "support", "gem" }, tradeHash = 57446, }, + ["WeaponTreeSupportLifetap"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Lifetap", statOrder = { 325 }, level = 38, group = "WeaponTreeSupportLifetap", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 48478, }, + ["WeaponTreeSupportLifetap2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Lifetap", statOrder = { 325 }, level = 38, group = "WeaponTreeSupportLifetap", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 51911, }, + ["WeaponTreeSupportBehead"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Behead", statOrder = { 231 }, level = 38, group = "WeaponTreeSupportBehead", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHash = 59639, }, + ["WeaponTreeSupportBehead2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Behead", statOrder = { 231 }, level = 38, group = "WeaponTreeSupportBehead", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHash = 54648, }, + ["WeaponTreeSupportDivineBlessing"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Divine Blessing", statOrder = { 228 }, level = 38, group = "WeaponTreeSupportDivineBlessing", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 24083, }, + ["WeaponTreeSupportDivineBlessing2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Divine Blessing", statOrder = { 228 }, level = 38, group = "WeaponTreeSupportDivineBlessing", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 26284, }, + ["WeaponTreeSupportEternalBlessing"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Eternal Blessing", statOrder = { 273 }, level = 38, group = "WeaponTreeSupportEternalBlessing", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 63804, }, + ["WeaponTreeSupportEternalBlessing2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Eternal Blessing", statOrder = { 273 }, level = 38, group = "WeaponTreeSupportEternalBlessing", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 25227, }, + ["WeaponTreeSupportOvercharge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Overcharge", statOrder = { 345 }, level = 38, group = "WeaponTreeSupportOvercharge", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHash = 9520, }, + ["WeaponTreeSupportOvercharge2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Overcharge", statOrder = { 345 }, level = 38, group = "WeaponTreeSupportOvercharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHash = 50319, }, + ["WeaponTreeSupportCursedGround"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Cursed Ground", statOrder = { 256 }, level = 38, group = "WeaponTreeSupportCursedGround", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, tradeHash = 16150, }, + ["WeaponTreeSupportCursedGround2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Cursed Ground", statOrder = { 256 }, level = 38, group = "WeaponTreeSupportCursedGround", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, tradeHash = 65411, }, + ["WeaponTreeSupportHexBloom"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Hex Bloom", statOrder = { 304 }, level = 38, group = "WeaponTreeSupportHexBloom", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, tradeHash = 27843, }, + ["WeaponTreeSupportHexBloom2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Hex Bloom", statOrder = { 304 }, level = 38, group = "WeaponTreeSupportHexBloom", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, tradeHash = 19653, }, + ["WeaponTreeSupportPinpoint"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Pinpoint", statOrder = { 353 }, level = 38, group = "WeaponTreeSupportPinpoint", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, tradeHash = 33576, }, + ["WeaponTreeSupportPinpoint2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Pinpoint", statOrder = { 353 }, level = 38, group = "WeaponTreeSupportPinpoint", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, tradeHash = 4687, }, + ["WeaponTreeSkillTornadoShotSplitArrow"] = { type = "Spawn", tier = 1, "Trigger Level 20 Tornado when you Attack with Split Arrow or Tornado Shot", statOrder = { 5475 }, level = 1, group = "WeaponTreeSkillTornadoShotSplitArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 2899, }, + ["WeaponTreeSkillMirrorArrowBlinkArrow"] = { type = "Spawn", tier = 1, "Trigger Level 20 Blink Arrow when you Attack with Mirror Arrow", "Trigger Level 20 Mirror Arrow when you Attack with Blink Arrow", statOrder = { 5453, 5459 }, level = 1, group = "WeaponTreeSkillMirrorArrowBlinkArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 53153, }, + ["WeaponTreeSkillCleaveReave"] = { type = "Spawn", tier = 1, "Trigger Level 20 Summon Spectral Wolf on Critical Strike with Cleave or Reave", statOrder = { 5474 }, level = 1, group = "WeaponTreeSkillCleaveReave", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "axe", "dagger", "claw", "shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 22704, }, + ["WeaponTreeSkillBodySwapDetonateDead"] = { type = "Spawn", tier = 1, "Trigger Level 20 Bodyswap when you Explode a Corpse with Detonate Dead", statOrder = { 5454 }, level = 1, group = "WeaponTreeSkillBodySwapDetonateDead", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 500, 500, 0 }, modTags = { }, tradeHash = 49146, }, + ["WeaponTreeSkillGlacialCascadeIceNova"] = { type = "Spawn", tier = 1, "Trigger Level 20 Ice Nova from the Final Burst location of Glacial Cascades you Cast", statOrder = { 5458 }, level = 1, group = "WeaponTreeSkillGlacialCascadeIceNova", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 500, 500, 0 }, modTags = { }, tradeHash = 38413, }, + ["WeaponTreeSkillLaceratePerforate"] = { type = "Spawn", tier = 1, "Trigger Level 20 Stance Swap when you Attack with Perforate or Lacerate", statOrder = { 5473 }, level = 1, group = "WeaponTreeSkillLaceratePerforate", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "axe", "shield", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 42448, }, + ["WeaponTreeSkillStormBurstDivineIre"] = { type = "Spawn", tier = 1, "Trigger Level 20 Gravity Sphere when you Cast Storm Burst or Divine Ire", statOrder = { 5456 }, level = 1, group = "WeaponTreeSkillStormBurstDivineIre", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 1000, 500, 0 }, modTags = { }, tradeHash = 23452, }, + ["WeaponTreeSkillHeavyStrikeBoneshatter"] = { type = "Spawn", tier = 1, "Trigger Level 20 Bone Corpses when you Stun an Enemy with Heavy Strike or Boneshatter", statOrder = { 5455 }, level = 1, group = "WeaponTreeSkillHeavyStrikeBoneshatter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "staff", "sceptre", "mace", "axe", "shield", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 5366, }, + ["WeaponTreeSkillBladeFlurryChargedDash"] = { type = "Spawn", tier = 1, "Trigger a Socketed Spell every second while Channelling Blade Flurry or Charged Dash", statOrder = { 5452 }, level = 1, group = "WeaponTreeSkillBladeFlurryChargedDash", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "sword", "dagger", "claw", "weapon", "shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0 }, modTags = { }, tradeHash = 27861, }, + ["WeaponTreeSkillBurningArrowExplosiveArrow"] = { type = "Spawn", tier = 1, "Killing Blows with Burning Arrow or Explosive Arrow Shatter Enemies as though Frozen", statOrder = { 5380 }, level = 1, group = "WeaponTreeSkillBurningArrowExplosiveArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 7137, }, + ["WeaponTreeSkillBlastRainArtilleryBallista"] = { type = "Spawn", tier = 1, "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", statOrder = { 5096, 5097 }, level = 1, group = "WeaponTreeSkillBlastRainArtilleryBallista", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 25324, }, + ["WeaponTreeSkillShrapnelBallistaSiegeBallista"] = { type = "Spawn", tier = 1, "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", statOrder = { 4294, 10027, 10032 }, level = 1, group = "WeaponTreeSkillShrapnelBallistaSiegeBallista", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 30149, }, + ["WeaponTreeSkillLightningArrowIceShot"] = { type = "Spawn", tier = 1, "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", statOrder = { 7437, 7438 }, level = 1, group = "WeaponTreeSkillLightningArrowIceShot", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 6978, }, + ["WeaponTreeSkillGalvanicArrowStormRain"] = { type = "Spawn", tier = 1, "Galvanic Arrow and Storm Rain Repeat an additional time when used by a Mine", statOrder = { 6852 }, level = 1, group = "WeaponTreeSkillGalvanicArrowStormRain", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 2281, }, + ["WeaponTreeSkillElementalHitWildStrike"] = { type = "Spawn", tier = 1, "Always inflict Scorch, Brittle and Sapped with Elemental Hit and Wild Strike Hits", "Cannot Ignite, Chill, Freeze or Shock", statOrder = { 6325, 9479 }, level = 1, group = "WeaponTreeSkillElementalHitWildStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "shield", "weapon", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHash = 19913, }, + ["WeaponTreeSkillBarrageFrenzy"] = { type = "Spawn", tier = 1, "Barrage and Frenzy have 25% increased Critical Strike Chance per Endurance Charge", statOrder = { 4981 }, level = 1, group = "WeaponTreeSkillBarrageFrenzy", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 1000, 500, 500, 0 }, modTags = { }, tradeHash = 36169, }, + ["WeaponTreeSkillBarrageFrenzy2H"] = { type = "Spawn", tier = 1, "Barrage and Frenzy have 40% increased Critical Strike Chance per Endurance Charge", statOrder = { 4981 }, level = 1, group = "WeaponTreeSkillBarrageFrenzy", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 1000, 500, 0 }, modTags = { }, tradeHash = 13505, }, + ["WeaponTreeSkillToxicRainRainofArrows"] = { type = "Spawn", tier = 1, "Rain of Arrows and Toxic Rain deal 300% more Damage with Bleeding", "-60% of Toxic Rain Physical Damage Converted to Chaos Damage", statOrder = { 9811, 10413 }, level = 1, group = "WeaponTreeSkillToxicRainRainofArrows", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 49661, }, + ["WeaponTreeSkillCausticArrowScourgeArrow"] = { type = "Spawn", tier = 1, "Caustic Arrow and Scourge Arrow fire 25% more projectiles", statOrder = { 5478 }, level = 1, group = "WeaponTreeSkillCausticArrowScourgeArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 16086, }, + ["WeaponTreeSkillPunctureEnsnaringArrow"] = { type = "Spawn", tier = 1, "Enemies you Kill with Puncture or Ensnaring Arrow Hits Explode, dealing 10% of their Life as Physical Damage", statOrder = { 9758 }, level = 1, group = "WeaponTreeSkillPunctureEnsnaringArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "dagger", "claw", "sword", "shield", "default", }, weightVal = { 1000, 500, 500, 500, 500, 0 }, modTags = { }, tradeHash = 38853, }, + ["WeaponTreeSkillFrostBladesLightningStrike"] = { type = "Spawn", tier = 1, "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", statOrder = { 7471, 7472 }, level = 1, group = "WeaponTreeSkillFrostBladesLightningStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, tradeHash = 10115, }, + ["WeaponTreeSkillFrostBladesLightningStrike2H"] = { type = "Spawn", tier = 1, "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", statOrder = { 7471, 7472 }, level = 1, group = "WeaponTreeSkillFrostBladesLightningStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHash = 45053, }, + ["WeaponTreeSkillViperStrikePestilentStrike"] = { type = "Spawn", tier = 1, "Viper Strike and Pestilent Strike deal 25% increased Attack Damage per Frenzy Charge", statOrder = { 10528 }, level = 1, group = "WeaponTreeSkillViperStrikePestilentStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "sword", "claw", "dagger", "shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 45635, }, + ["WeaponTreeSkillViperStrikePestilentStrike2H"] = { type = "Spawn", tier = 1, "Viper Strike and Pestilent Strike deal 40% increased Attack Damage per Frenzy Charge", statOrder = { 10528 }, level = 1, group = "WeaponTreeSkillViperStrikePestilentStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "sword", "claw", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 62670, }, + ["WeaponTreeSkillDominatingBlowAbsolution"] = { type = "Spawn", tier = 1, "Increases and Reductions to Minion Damage also affect Dominating Blow and Absolution at 150% of their value", statOrder = { 6258 }, level = 1, group = "WeaponTreeSkillDominatingBlowAbsolution", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "shield", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "weapon", "default", }, weightVal = { 0, 500, 1000, 1000, 250, 0 }, modTags = { }, tradeHash = 19478, }, + ["WeaponTreeSkillVolcanicFissureMoltenStrike"] = { type = "Spawn", tier = 1, "Vaal Volcanic Fissure and Vaal Molten Strike have 40% reduced Soul Gain Prevention Duration", statOrder = { 10525 }, level = 1, group = "WeaponTreeSkillVolcanicFissureMoltenStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, tradeHash = 29593, }, + ["WeaponTreeSkillVolcanicFissureMoltenStrike2H"] = { type = "Spawn", tier = 1, "Vaal Volcanic Fissure and Vaal Molten Strike have 80% reduced Soul Gain Prevention Duration", statOrder = { 10525 }, level = 1, group = "WeaponTreeSkillVolcanicFissureMoltenStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHash = 40979, }, + ["WeaponTreeSkillStaticStrikeSmite"] = { type = "Spawn", tier = 1, "Killing Blows from Smite and Static Strike Consume corpses to Recover 5% of Life", statOrder = { 10084 }, level = 1, group = "WeaponTreeSkillStaticStrikeSmite", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, tradeHash = 40918, }, + ["WeaponTreeSkillVigilantStrikeFlickerStrike"] = { type = "Spawn", tier = 1, "Flicker Strike and Vigilant Strike's Cooldown can be bypassed by Power Charges instead of Frenzy or Endurance Charges", statOrder = { 10527 }, level = 1, group = "WeaponTreeSkillVigilantStrikeFlickerStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, tradeHash = 11098, }, + ["WeaponTreeSkillDoubleStrikeDualStrike"] = { type = "Spawn", tier = 1, "50% chance to gain Soul Eater for 20 seconds on Killing Blow against Rare and Unique Enemies with Double Strike or Dual Strike", statOrder = { 6262 }, level = 1, group = "WeaponTreeSkillDoubleStrikeDualStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, tradeHash = 53537, }, + ["WeaponTreeSkillDoubleStrikeDualStrike2H"] = { type = "Spawn", tier = 1, "Gain Soul Eater for 20 seconds on Killing Blow against Rare and Unique Enemies with Double Strike or Dual Strike", statOrder = { 6262 }, level = 1, group = "WeaponTreeSkillDoubleStrikeDualStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHash = 18808, }, + ["WeaponTreeSkillIceCrashGlacialHammer"] = { type = "Spawn", tier = 1, "Enemies Frozen by Ice Crash or Glacial Hammer become Covered in Frost for 4 seconds as they Unfreeze", statOrder = { 7185 }, level = 1, group = "WeaponTreeSkillIceCrashGlacialHammer", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "shield", "sword", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 500, 500, 1000, 1000, 500, 1000, 0 }, modTags = { }, tradeHash = 1345, }, + ["WeaponTreeSkillEarthquakeEarthshatter"] = { type = "Spawn", tier = 1, "Killing Blows with Earthquake and Earthshatter Shatter Enemies as though Frozen", statOrder = { 6285 }, level = 1, group = "WeaponTreeSkillEarthquakeEarthshatter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "shield", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 11560, }, + ["WeaponTreeSkillGroundSlamSunder"] = { type = "Spawn", tier = 1, "Poisons inflicted by Sunder or Ground Slam on non-Poisoned Enemies deal 400% increased Damage", statOrder = { 6915 }, level = 1, group = "WeaponTreeSkillGroundSlamSunder", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "shield", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 500, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 44433, }, + ["WeaponTreeSkillGroundSlamSunder2H"] = { type = "Spawn", tier = 1, "Poisons inflicted by Sunder or Ground Slam on non-Poisoned Enemies deal 600% increased Damage", statOrder = { 6915 }, level = 1, group = "WeaponTreeSkillGroundSlamSunder", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 64182, }, + ["WeaponTreeSkillTectonicSlamInfernalBlow"] = { type = "Spawn", tier = 1, "Tectonic Slam and Infernal Blow deal 1% increased Attack Damage per 700 Armour", statOrder = { 10360 }, level = 1, group = "WeaponTreeSkillTectonicSlamInfernalBlow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "shield", "sword", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 500, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 7655, }, + ["WeaponTreeSkillTectonicSlamInfernalBlow2H"] = { type = "Spawn", tier = 1, "Tectonic Slam and Infernal Blow deal 1% increased Attack Damage per 450 Armour", statOrder = { 10359 }, level = 1, group = "WeaponTreeSkillTectonicSlamInfernalBlow2H", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "sword", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 20261, }, + ["WeaponTreeSkillRageVortexBladestorm"] = { type = "Spawn", tier = 1, "Enemies in your Rage Vortex or Bladestorms are Hindered and Unnerved", statOrder = { 5092 }, level = 1, group = "WeaponTreeSkillRageVortexBladestorm", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "axe", "shield", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 64041, }, + ["WeaponTreeSkillShieldCrushSpectralShieldThrow"] = { type = "Spawn", tier = 1, "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", statOrder = { 9998, 9999, 10000 }, level = 1, group = "WeaponTreeSkillShieldCrushSpectralShieldThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHash = 60578, }, + ["WeaponTreeSkillShieldCrushSpectralShieldThrowUniqueHelmet"] = { type = "Spawn", tier = 1, "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", statOrder = { 9998, 9999, 10000 }, level = 1, group = "WeaponTreeSkillShieldCrushSpectralShieldThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 20227, }, + ["WeaponTreeSkillCycloneSweep"] = { type = "Spawn", tier = 1, "Knockback direction is reversed with Cyclone and Holy Sweep", "Knock Enemies Back on hit with Cyclone and Holy Sweep", statOrder = { 6011, 6012 }, level = 1, group = "WeaponTreeSkillCycloneSweep", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, tradeHash = 21178, }, + ["WeaponTreeSkillCobraLashVenomGyre"] = { type = "Spawn", tier = 1, "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", statOrder = { 5791, 5792 }, level = 1, group = "WeaponTreeSkillCobraLashVenomGyre", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "claw", "dagger", "shield", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 37160, }, + ["WeaponTreeSkillPoisonousConcoctionExplosiveConcoction"] = { type = "Spawn", tier = 1, "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", statOrder = { 6643, 7879 }, level = 1, group = "WeaponTreeSkillPoisonousConcoctionExplosiveConcoction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHash = 8413, }, + ["WeaponTreeSkillPoisonousConcoctionExplosiveConcoctionUniqueHelmet"] = { type = "Spawn", tier = 1, "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", statOrder = { 6643, 7879 }, level = 1, group = "WeaponTreeSkillPoisonousConcoctionExplosiveConcoction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 14475, }, + ["WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel"] = { type = "Spawn", tier = 1, "Recover 1% of Energy Shield per Steel Shard Consumed", statOrder = { 9853 }, level = 1, group = "WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "sword", "axe", "shield", "default", }, weightVal = { 0, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 20692, }, + ["WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel2H"] = { type = "Spawn", tier = 1, "Recover 2% of Energy Shield per Steel Shard Consumed", statOrder = { 9853 }, level = 1, group = "WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "sword", "axe", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHash = 39897, }, + ["WeaponTreeSkillSpectralHelixSpectralThrow"] = { type = "Spawn", tier = 1, "Each Projectile from Spectral Helix or Spectral Throw has", "between 40% more and 40% less Projectile Speed at random", statOrder = { 10112, 10112.1 }, level = 1, group = "WeaponTreeSkillSpectralHelixSpectralThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHash = 16687, }, + ["WeaponTreeSkillSpectralHelixSpectralThrow2H"] = { type = "Spawn", tier = 1, "Each Projectile from Spectral Helix or Spectral Throw has", "between 75% more and 75% less Projectile Speed at random", statOrder = { 10112, 10112.1 }, level = 1, group = "WeaponTreeSkillSpectralHelixSpectralThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHash = 16468, }, + ["WeaponTreeSkillChainHookShieldCharge"] = { type = "Spawn", tier = 1, "Shield Charge and Chain Hook have 2% increased Attack Speed per 10 Rampage Kills", statOrder = { 5482 }, level = 1, group = "WeaponTreeSkillChainHookShieldCharge", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "sword", "axe", "mace", "sceptre", "shield", "default", }, weightVal = { 0, 500, 500, 500, 500, 1000, 0 }, modTags = { }, tradeHash = 44299, }, + ["WeaponTreeSkillConsecratedPathPurifyingFlame"] = { type = "Spawn", tier = 1, "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", statOrder = { 5858, 5859 }, level = 1, group = "WeaponTreeSkillConsecratedPathPurifyingFlame", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "bow", "claw", "weapon_can_roll_minion_modifiers", "attack_dagger", "shield", "weapon", "default", }, weightVal = { 1000, 0, 0, 0, 0, 500, 1000, 0 }, modTags = { }, tradeHash = 41803, }, + ["WeaponTreeSkillFrozenLegionGeneralsCry"] = { type = "Spawn", tier = 1, "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", statOrder = { 6688, 6693, 6859 }, level = 1, group = "WeaponTreeSkillFrozenLegionGeneralsCry", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHash = 292, }, + ["WeaponTreeSkillAncestralProtectorAncestralWarchief"] = { type = "Spawn", tier = 1, "20% of Damage Dealt by Ancestor Totems Leeched to you as Energy Shield", statOrder = { 4664 }, level = 1, group = "WeaponTreeSkillAncestralProtectorAncestralWarchief", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, tradeHash = 34556, }, + ["WeaponTreeSkillAncestralProtectorAncestralWarchief2H"] = { type = "Spawn", tier = 1, "40% of Damage Dealt by Ancestor Totems Leeched to you as Energy Shield", statOrder = { 4664 }, level = 1, group = "WeaponTreeSkillAncestralProtectorAncestralWarchief", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHash = 4198, }, + ["WeaponTreeSkillKineticBoltKineticBlastPowerSiphon"] = { type = "Spawn", tier = 1, "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", statOrder = { 7318, 7319 }, level = 1, group = "WeaponTreeSkillKineticBoltKineticBlastPowerSiphon", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "wand", "shield", "default", }, weightVal = { 1000, 500, 0 }, modTags = { }, tradeHash = 21968, }, + ["WeaponTreeSkillExsanguinateReap"] = { type = "Spawn", tier = 1, "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", statOrder = { 6526, 6528, 9832 }, level = 1, group = "WeaponTreeSkillExsanguinateReap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 1000, 500, 0 }, modTags = { }, tradeHash = 43045, }, + ["WeaponTreeSkillFirestormBladefall"] = { type = "Spawn", tier = 1, "15% chance for Firestorm and Bladefall to affect the same area again when they finish", statOrder = { 6596 }, level = 1, group = "WeaponTreeSkillFirestormBladefall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 28927, }, + ["WeaponTreeSkillFirestormBladefall2H"] = { type = "Spawn", tier = 1, "25% chance for Firestorm and Bladefall to affect the same area again when they finish", statOrder = { 6596 }, level = 1, group = "WeaponTreeSkillFirestormBladefall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 60714, }, + ["WeaponTreeSkillEtherealKnives"] = { type = "Spawn", tier = 1, "Ethereal Knives requires 1 fewer Projectile Fired to leave each Lingering Blade", statOrder = { 6472 }, level = 1, group = "WeaponTreeSkillEtherealKnives", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 22295, }, + ["WeaponTreeSkillEtherealKnives2H"] = { type = "Spawn", tier = 1, "Ethereal Knives requires 2 fewer Projectiles Fired to leave each Lingering Blade", statOrder = { 6472 }, level = 1, group = "WeaponTreeSkillEtherealKnives", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 18766, }, + ["WeaponTreeSkillFireballRollingMagma"] = { type = "Spawn", tier = 1, "Fireball and Rolling Magma have 100% more Area of Effect", "Modifiers to number of Projectiles do not apply to Fireball and Rolling Magma", statOrder = { 6592, 6593 }, level = 1, group = "WeaponTreeSkillFireballRollingMagma", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 42442, }, + ["WeaponTreeSkillFireballRollingMagma2H"] = { type = "Spawn", tier = 1, "Fireball and Rolling Magma have 200% more Area of Effect", "Modifiers to number of Projectiles do not apply to Fireball and Rolling Magma", statOrder = { 6592, 6593 }, level = 1, group = "WeaponTreeSkillFireballRollingMagma", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 26179, }, + ["WeaponTreeSkillFreezingPulseEyeOfWinter"] = { type = "Spawn", tier = 1, "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", statOrder = { 6668, 6669 }, level = 1, group = "WeaponTreeSkillFreezingPulseEyeOfWinter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 3659, }, + ["WeaponTreeSkillFreezingPulseEyeOfWinter2H"] = { type = "Spawn", tier = 1, "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", statOrder = { 6668, 6669 }, level = 1, group = "WeaponTreeSkillFreezingPulseEyeOfWinter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 20294, }, + ["WeaponTreeSkillBladeVortexBladeBlast"] = { type = "Spawn", tier = 1, "30% chance for Blade Vortex and Blade Blast to Impale Enemies on Hit", "Blade Vortex and Blade Blast deal no Non-Physical Damage", statOrder = { 5088, 5089 }, level = 1, group = "WeaponTreeSkillBladeVortexBladeBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 42310, }, + ["WeaponTreeSkillBladeVortexBladeBlast2H"] = { type = "Spawn", tier = 1, "60% chance for Blade Vortex and Blade Blast to Impale Enemies on Hit", "Blade Vortex and Blade Blast deal no Non-Physical Damage", statOrder = { 5088, 5089 }, level = 1, group = "WeaponTreeSkillBladeVortexBladeBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 36800, }, + ["WeaponTreeSkillShockNovaStormCall"] = { type = "Spawn", tier = 1, "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", statOrder = { 10015, 10016 }, level = 1, group = "WeaponTreeSkillShockNovaStormCall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 17605, }, + ["WeaponTreeSkillShockNovaStormCall2H"] = { type = "Spawn", tier = 1, "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", statOrder = { 10015, 10016 }, level = 1, group = "WeaponTreeSkillShockNovaStormCall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 57547, }, + ["WeaponTreeSkillCreepingFrostColdSnap"] = { type = "Spawn", tier = 1, "All Damage from Cold Snap and Creeping Frost can Sap", "25% chance for Cold Snap and Creeping Frost to Sap Enemies in Chilling Areas", statOrder = { 5910, 5911 }, level = 1, group = "WeaponTreeSkillCreepingFrostColdSnap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 47007, }, + ["WeaponTreeSkillCreepingFrostColdSnap2H"] = { type = "Spawn", tier = 1, "All Damage from Cold Snap and Creeping Frost can Sap", "50% chance for Cold Snap and Creeping Frost to Sap Enemies in Chilling Areas", statOrder = { 5910, 5911 }, level = 1, group = "WeaponTreeSkillCreepingFrostColdSnap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 22434, }, + ["WeaponTreeSkillLightningConduitGalvanicField"] = { type = "Spawn", tier = 1, "Killing Blows with Lightning Conduit and Galvanic Field Shatter Enemies as though Frozen", statOrder = { 7440 }, level = 1, group = "WeaponTreeSkillLightningConduitGalvanicField", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 31906, }, + ["WeaponTreeSkillManabondStormbind"] = { type = "Spawn", tier = 1, "Manabond and Stormbind Freeze enemies as though dealing 200% more Damage", "50% of Manabond and Stormbind Lightning Damage Converted to Cold Damage", statOrder = { 8220, 8221 }, level = 1, group = "WeaponTreeSkillManabondStormbind", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 55980, }, + ["WeaponTreeSkillManabondStormbind2H"] = { type = "Spawn", tier = 1, "Manabond and Stormbind Freeze enemies as though dealing 300% more Damage", "100% of Manabond and Stormbind Lightning Damage Converted to Cold Damage", statOrder = { 8220, 8221 }, level = 1, group = "WeaponTreeSkillManabondStormbind", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 33472, }, + ["WeaponTreeSkillIceSpearBallLightning"] = { type = "Spawn", tier = 1, "Ice Spear and Ball Lightning fire Projectiles in a circle", "Ice Spear and Ball Lightning Projectiles Return to you", statOrder = { 7198, 7199 }, level = 1, group = "WeaponTreeSkillIceSpearBallLightning", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 11439, }, + ["WeaponTreeSkillFlameblastIncinerate"] = { type = "Spawn", tier = 1, "+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", statOrder = { 6621, 6622, 6623, 7263 }, level = 1, group = "WeaponTreeSkillFlameblastIncinerate", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 55271, }, + ["WeaponTreeSkillFlameblastIncinerate2H"] = { type = "Spawn", tier = 1, "+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", statOrder = { 6621, 6622, 6623, 7263 }, level = 1, group = "WeaponTreeSkillFlameblastIncinerate", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 64981, }, + ["WeaponTreeSkillHexblastDoomBlast"] = { type = "Spawn", tier = 1, "10% of Hexblast and Doom Blast Overkill Damage is Leeched as Life", statOrder = { 7135 }, level = 1, group = "WeaponTreeSkillHexblastDoomBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 39700, }, + ["WeaponTreeSkillHexblastDoomBlast2H"] = { type = "Spawn", tier = 1, "20% of Hexblast and Doom Blast Overkill Damage is Leeched as Life", statOrder = { 7135 }, level = 1, group = "WeaponTreeSkillHexblastDoomBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 33841, }, + ["WeaponTreeSkillForbiddenRiteDarkPact"] = { type = "Spawn", tier = 1, "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", statOrder = { 6655 }, level = 1, group = "WeaponTreeSkillForbiddenRiteDarkPact", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 58877, }, + ["WeaponTreeSkillForbiddenRiteDarkPact2H"] = { type = "Spawn", tier = 1, "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", statOrder = { 6655 }, level = 1, group = "WeaponTreeSkillForbiddenRiteDarkPact", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 48442, }, + ["WeaponTreeSkillBaneContagion"] = { type = "Spawn", tier = 1, "Enemies inflicted with Bane or Contagion are Chilled", statOrder = { 6368 }, level = 1, group = "WeaponTreeSkillBaneContagion", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 27307, }, + ["WeaponTreeSkillEssenceDrainSoulrend"] = { type = "Spawn", tier = 1, "25% reduced Essence Drain and Soulrend Projectile Speed", "Essence Drain and Soulrend fire 2 additional Projectiles", statOrder = { 6470, 6471 }, level = 1, group = "WeaponTreeSkillEssenceDrainSoulrend", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 101, }, + ["WeaponTreeSkillEssenceDrainSoulrend2H"] = { type = "Spawn", tier = 1, "50% reduced Essence Drain and Soulrend Projectile Speed", "Essence Drain and Soulrend fire 4 additional Projectiles", statOrder = { 6470, 6471 }, level = 1, group = "WeaponTreeSkillEssenceDrainSoulrend", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 33893, }, + ["WeaponTreeSkillSparkLightningTendrils"] = { type = "Spawn", tier = 1, "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", statOrder = { 7474, 10101 }, level = 1, group = "WeaponTreeSkillSparkLightningTendrils", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 6094, }, + ["WeaponTreeSkillSparkLightningTendrils2H"] = { type = "Spawn", tier = 1, "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", statOrder = { 7474, 10101 }, level = 1, group = "WeaponTreeSkillSparkLightningTendrils", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 18385, }, + ["WeaponTreeSkillFrostBombOrbofStorms"] = { type = "Spawn", tier = 1, "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", statOrder = { 6678, 9561 }, level = 1, group = "WeaponTreeSkillFrostBombOrbofStorms", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 49502, }, + ["WeaponTreeSkillFrostBombOrbofStorms2H"] = { type = "Spawn", tier = 1, "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", statOrder = { 6678, 9561 }, level = 1, group = "WeaponTreeSkillFrostBombOrbofStorms", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 27519, }, + ["WeaponTreeSkillWinterOrbHydrosphere"] = { type = "Spawn", tier = 1, "Trigger Level 20 Hydrosphere while you Channel Winter Orb", statOrder = { 5457 }, level = 1, group = "WeaponTreeSkillWinterOrbHydrosphere", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 18389, }, + ["WeaponTreeSkillWintertideBrandArcanistBrand"] = { type = "Spawn", tier = 1, "Enemies Branded by Wintertide Brand or Arcanist Brand Explode on Death dealing a quarter of their maximum Life as Chaos damage", statOrder = { 10622 }, level = 1, group = "WeaponTreeSkillWintertideBrandArcanistBrand", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 12418, }, + ["WeaponTreeSkillAnimateWeapon"] = { type = "Spawn", tier = 1, "Animated Lingering Blades have +1.5% to Critical Strike Chance", statOrder = { 4690 }, level = 1, group = "WeaponTreeSkillAnimateWeapon", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 8849, }, + ["WeaponTreeSkillAnimateWeapon2H"] = { type = "Spawn", tier = 1, "Animated Lingering Blades have +2.5% to Critical Strike Chance", statOrder = { 4690 }, level = 1, group = "WeaponTreeSkillAnimateWeapon", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHash = 63769, }, + ["WeaponTreeSkillSummonCarrionGolemSummonStoneGolemSummonChaosGolem"] = { type = "Spawn", tier = 1, "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", statOrder = { 5451, 5751, 10235 }, level = 1, group = "WeaponTreeSkillSummonCarrionGolemSummonStoneGolemSummonChaosGolem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 64468, }, + ["WeaponTreeSkillSummonFlameGolemSummonIceGolemSummonLightningGolem"] = { type = "Spawn", tier = 1, "Maximum Life of Summoned Elemental Golems is Doubled", statOrder = { 6324 }, level = 1, group = "WeaponTreeSkillSummonFlameGolemSummonIceGolemSummonLightningGolem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 56226, }, + ["WeaponTreeSkillSummonHolyRelicSummonSkeletons"] = { type = "Spawn", tier = 1, "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", statOrder = { 10050, 10051 }, level = 1, group = "WeaponTreeSkillSummonHolyRelicSummonSkeletons", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 12341, }, + ["WeaponTreeSkillSummonHolyRelicSummonSkeletons2H"] = { type = "Spawn", tier = 1, "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", statOrder = { 10050, 10051 }, level = 1, group = "WeaponTreeSkillSummonHolyRelicSummonSkeletons", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHash = 58543, }, + ["WeaponTreeSkillRaiseSpectreRaiseZombie"] = { type = "Spawn", tier = 1, "Raised Zombies and Spectres gain Adrenaline for 8 seconds when Raised", statOrder = { 10117 }, level = 1, group = "WeaponTreeSkillRaiseSpectreRaiseZombie", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 56565, }, + ["WeaponTreeSkillRaiseSpectreRaiseZombie2H"] = { type = "Spawn", tier = 1, "Raised Zombies and Spectres gain Adrenaline for 14 seconds when Raised", statOrder = { 10117 }, level = 1, group = "WeaponTreeSkillRaiseSpectreRaiseZombie", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHash = 48348, }, + ["WeaponTreeSkillSummonRagingSpiritSummonPhantasmSupport"] = { type = "Spawn", tier = 1, "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", statOrder = { 9537, 9539, 10307, 10318 }, level = 1, group = "WeaponTreeSkillSummonRagingSpiritSummonPhantasmSupport", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 17413, }, + ["WeaponTreeSkillFireTrapExplosiveTrap"] = { type = "Spawn", tier = 1, "Fire Trap and Explosive Trap Throw an additional Trap when used by a Mine", statOrder = { 6552 }, level = 1, group = "WeaponTreeSkillFireTrapExplosiveTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 41467, }, + ["WeaponTreeSkillFireTrapExplosiveTrap2H"] = { type = "Spawn", tier = 1, "Fire Trap and Explosive Trap Throws 2 additional Traps when used by a Mine", statOrder = { 6552 }, level = 1, group = "WeaponTreeSkillFireTrapExplosiveTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 26541, }, + ["WeaponTreeSkillIceTrapLightningTrap"] = { type = "Spawn", tier = 1, "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", statOrder = { 7182, 7183, 7184 }, level = 1, group = "WeaponTreeSkillIceTrapLightningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 46814, }, + ["WeaponTreeSkillIceTrapLightningTrap2H"] = { type = "Spawn", tier = 1, "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", statOrder = { 7182, 7183, 7184 }, level = 1, group = "WeaponTreeSkillIceTrapLightningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 16167, }, + ["WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap"] = { type = "Spawn", tier = 1, "Flamethrower, Seismic and Lightning Spire Trap have 30% increased Cooldown Recovery Rate", "Flamethrower, Seismic and Lightning Spire Trap have -1 Cooldown Use", statOrder = { 6624, 6625 }, level = 1, group = "WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 1542, }, + ["WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap2H"] = { type = "Spawn", tier = 1, "Flamethrower, Seismic and Lightning Spire Trap have 50% increased Cooldown Recovery Rate", "Flamethrower, Seismic and Lightning Spire Trap have -2 Cooldown Uses", statOrder = { 6624, 6625 }, level = 1, group = "WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 38414, }, + ["WeaponTreeSkillStormblastMinePyroclastMineIcicleMine"] = { type = "Spawn", tier = 1, "Stormblast, Icicle and Pyroclast Mine have 150% increased Aura Effect", "Stormblast, Icicle and Pyroclast Mine deal no Damage", statOrder = { 10254, 10255 }, level = 1, group = "WeaponTreeSkillStormblastMinePyroclastMineIcicleMine", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 52958, }, + ["WeaponTreeSkillStormblastMinePyroclastMineIcicleMine2H"] = { type = "Spawn", tier = 1, "Stormblast, Icicle and Pyroclast Mine have 300% increased Aura Effect", "Stormblast, Icicle and Pyroclast Mine deal no Damage", statOrder = { 10254, 10255 }, level = 1, group = "WeaponTreeSkillStormblastMinePyroclastMineIcicleMine", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 14176, }, + ["WeaponTreeSkillBearTrapSiphoningTrap"] = { type = "Spawn", tier = 1, "Bear Trap and Siphoning Trap Debuffs also apply 15% reduced Cooldown Recovery Rate to affected Enemies", statOrder = { 5063 }, level = 1, group = "WeaponTreeSkillBearTrapSiphoningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 21872, }, + ["WeaponTreeSkillBearTrapSiphoningTrap2H"] = { type = "Spawn", tier = 1, "Bear Trap and Siphoning Trap Debuffs also apply 25% reduced Cooldown Recovery Rate to affected Enemies", statOrder = { 5063 }, level = 1, group = "WeaponTreeSkillBearTrapSiphoningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 16035, }, + ["WeaponTreeSkillHolyFlameTotemShockwaveTotem"] = { type = "Spawn", tier = 1, "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", statOrder = { 7174 }, level = 1, group = "WeaponTreeSkillHolyFlameTotemShockwaveTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 20624, }, + ["WeaponTreeSkillHolyFlameTotemShockwaveTotem2H"] = { type = "Spawn", tier = 1, "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", statOrder = { 7174 }, level = 1, group = "WeaponTreeSkillHolyFlameTotemShockwaveTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 16909, }, + ["WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem"] = { type = "Spawn", tier = 1, "Decoy, Devouring and Rejuvenation Totems Reflect 100% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 6152 }, level = 1, group = "WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 23155, }, + ["WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem2H"] = { type = "Spawn", tier = 1, "Decoy, Devouring and Rejuvenation Totems Reflect 200% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 6152 }, level = 1, group = "WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 47012, }, + ["WeaponTreeSkillRighteousFireScorchingRay"] = { type = "Spawn", tier = 1, "Regenerate 15 Mana per second while any Enemy is in your Righteous Fire or Scorching Ray", statOrder = { 9946 }, level = 1, group = "WeaponTreeSkillRighteousFireScorchingRay", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 5727, }, + ["WeaponTreeSkillRighteousFireScorchingRay2H"] = { type = "Spawn", tier = 1, "Regenerate 25 Mana per second while any Enemy is in your Righteous Fire or Scorching Ray", statOrder = { 9946 }, level = 1, group = "WeaponTreeSkillRighteousFireScorchingRay", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 26652, }, + ["WeaponTreeSkillBlightWither"] = { type = "Spawn", tier = 1, "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%", statOrder = { 5117, 10623 }, level = 1, group = "WeaponTreeSkillBlightWither", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 24028, }, + ["WeaponTreeSkillBlightWither2H"] = { type = "Spawn", tier = 1, "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%", statOrder = { 5117, 10623 }, level = 1, group = "WeaponTreeSkillBlightWither", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 7729, }, + ["WeaponTreeSkillVoltaxicBurstDischarge"] = { type = "Spawn", tier = 1, "Discharge and Voltaxic Burst are Cast at the targeted location instead of around you", statOrder = { 6181 }, level = 1, group = "WeaponTreeSkillVoltaxicBurstDischarge", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 48251, }, + ["WeaponTreeSkillStormArmageddonBrandSummonReaper"] = { type = "Spawn", tier = 1, "Storm and Armageddon Brands can be attached to your Summoned Reaper", statOrder = { 10236 }, level = 1, group = "WeaponTreeSkillStormArmageddonBrandSummonReaper", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 1000, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 16249, }, + ["WeaponTreeSkillArcCracklingLance"] = { type = "Spawn", tier = 1, "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", statOrder = { 4699, 4700 }, level = 1, group = "WeaponTreeSkillArcCracklingLance", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 31945, }, + ["WeaponTreeSkillArcCracklingLance2H"] = { type = "Spawn", tier = 1, "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", statOrder = { 4699, 4700 }, level = 1, group = "WeaponTreeSkillArcCracklingLance", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 30093, }, + ["WeaponTreeSkillAnimateGuardian"] = { type = "Spawn", tier = 1, "50% increased Effect of Link Buffs on Animated Guardian", "Link Skills can target Animated Guardian", statOrder = { 7483, 7498 }, level = 1, group = "WeaponTreeSkillAnimateGuardian", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 6636, }, + ["WeaponTreeSkillBlazingSalvoFlameWall"] = { type = "Spawn", tier = 1, "Blazing Salvo Projectiles Fork when they pass through a Flame Wall", statOrder = { 5100 }, level = 1, group = "WeaponTreeSkillBlazingSalvoFlameWall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 45031, }, + ["WeaponTreeSkillVolatileDeadCremation"] = { type = "Spawn", tier = 1, "Volatile Dead and Cremation Penetrate 2% Fire Resistance per 100 Dexterity", statOrder = { 10540 }, level = 1, group = "WeaponTreeSkillVolatileDeadCremation", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 23345, }, + ["WeaponTreeSkillVolatileDeadCremation2H"] = { type = "Spawn", tier = 1, "Volatile Dead and Cremation Penetrate 4% Fire Resistance per 100 Dexterity", statOrder = { 10540 }, level = 1, group = "WeaponTreeSkillVolatileDeadCremation", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 10239, }, + ["WeaponTreeSkillWaveofConviction"] = { type = "Spawn", tier = 1, "+10% to Wave of Conviction Damage over Time Multiplier per 0.1 seconds of Duration expired", statOrder = { 9763 }, level = 1, group = "WeaponTreeSkillWaveofConviction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 55654, }, + ["WeaponTreeSkillWaveofConviction2H"] = { type = "Spawn", tier = 1, "+15% to Wave of Conviction Damage over Time Multiplier per 0.1 seconds of Duration expired", statOrder = { 9763 }, level = 1, group = "WeaponTreeSkillWaveofConviction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 47483, }, + ["WeaponTreeSkillVortexFrostbolt"] = { type = "Spawn", tier = 1, "+15% to Vortex Critical Strike Chance when Cast on Frostbolt", statOrder = { 10551 }, level = 1, group = "WeaponTreeSkillVortexFrostbolt", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, tradeHash = 31198, }, + ["WeaponTreeSkillVortexFrostbolt2H"] = { type = "Spawn", tier = 1, "+25% to Vortex Critical Strike Chance when Cast on Frostbolt", statOrder = { 10551 }, level = 1, group = "WeaponTreeSkillVortexFrostbolt", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHash = 38596, }, + ["WeaponTreeSellPriceMagmaticOre"] = { type = "Spawn", tier = 1, "Item sells for an additional Magmatic Ore", statOrder = { 10597 }, level = 50, group = "WeaponTreeSellPriceMagmaticOre", nodeType = "SellBonus", nodeLocation = { 3, 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 1275, 1275, 938, 750 }, modTags = { }, tradeHash = 47181, }, + ["WeaponTreeSellNodeScouringOrb"] = { type = "Spawn", tier = 1, "Item sells for 20 additional Orbs of Scouring", statOrder = { 10608 }, level = 50, group = "WeaponTreeSellNodeScouringOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 340, 340, 250, 200 }, modTags = { }, tradeHash = 20871, }, + ["WeaponTreeSellNodeScouringOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 40 additional Orbs of Scouring", statOrder = { 10608 }, level = 78, group = "WeaponTreeSellNodeScouringOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 170, 170, 125, 100 }, modTags = { }, tradeHash = 4343, }, + ["WeaponTreeSellNodeChaosOrb"] = { type = "Spawn", tier = 1, "Item sells for 20 additional Chaos Orbs", statOrder = { 10593 }, level = 50, group = "WeaponTreeSellNodeChaosOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 408, 408, 300, 240 }, modTags = { }, tradeHash = 49649, }, + ["WeaponTreeSellNodeChaosOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 40 additional Chaos Orbs", statOrder = { 10593 }, level = 78, group = "WeaponTreeSellNodeChaosOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 204, 204, 150, 120 }, modTags = { }, tradeHash = 52895, }, + ["WeaponTreeSellNodeOrbOfRegret"] = { type = "Spawn", tier = 1, "Item sells for 15 additional Orbs of Regret", statOrder = { 10605 }, level = 50, group = "WeaponTreeSellNodeOrbOfRegret", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 228, 228, 168, 134 }, modTags = { }, tradeHash = 30417, }, + ["WeaponTreeSellNodeOrbOfRegretHigh"] = { type = "Spawn", tier = 2, "Item sells for 30 additional Orbs of Regret", statOrder = { 10605 }, level = 78, group = "WeaponTreeSellNodeOrbOfRegretHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 114, 114, 84, 67 }, modTags = { }, tradeHash = 49711, }, + ["WeaponTreeSellNodeRegalOrb"] = { type = "Spawn", tier = 1, "Item sells for 10 additional Regal Orbs", statOrder = { 10606 }, level = 50, group = "WeaponTreeSellNodeRegalOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 102, 102, 75, 60 }, modTags = { }, tradeHash = 60323, }, + ["WeaponTreeSellNodeRegalOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 20 additional Regal Orbs", statOrder = { 10606 }, level = 78, group = "WeaponTreeSellNodeRegalOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 51, 51, 38, 30 }, modTags = { }, tradeHash = 38368, }, + ["WeaponTreeSellNodeVaalOrb"] = { type = "Spawn", tier = 1, "Item sells for 15 additional Vaal Orbs", statOrder = { 10609 }, level = 50, group = "WeaponTreeSellNodeVaalOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 228, 228, 168, 134 }, modTags = { }, tradeHash = 1189, }, + ["WeaponTreeSellNodeVaalOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 30 additional Vaal Orbs", statOrder = { 10609 }, level = 78, group = "WeaponTreeSellNodeVaalOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 114, 114, 84, 67 }, modTags = { }, tradeHash = 45250, }, + ["WeaponTreeSellNodeGemcutters"] = { type = "Spawn", tier = 1, "Item sells for 15 additional Gemcutter's Prisms", statOrder = { 10600 }, level = 50, group = "WeaponTreeSellNodeGemcutters", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 92, 92, 68, 54 }, modTags = { }, tradeHash = 45159, }, + ["WeaponTreeSellNodeGemcuttersHigh"] = { type = "Spawn", tier = 2, "Item sells for 30 additional Gemcutter's Prisms", statOrder = { 10600 }, level = 78, group = "WeaponTreeSellNodeGemcuttersHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 46, 46, 34, 27 }, modTags = { }, tradeHash = 2456, }, + ["WeaponTreeSellNodeBlessedOrb"] = { type = "Spawn", tier = 1, "Item sells for 10 additional Blessed Orbs", statOrder = { 10592 }, level = 50, group = "WeaponTreeSellNodeBlessedOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 136, 136, 100, 80 }, modTags = { }, tradeHash = 47569, }, + ["WeaponTreeSellNodeBlessedOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 20 additional Blessed Orbs", statOrder = { 10592 }, level = 78, group = "WeaponTreeSellNodeBlessedOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 68, 68, 50, 40 }, modTags = { }, tradeHash = 59749, }, + ["WeaponTreeSellNodeAwakenedSextant"] = { type = "Spawn", tier = 1, "Item sells for an additional Cartography Scarab of every type", statOrder = { 10591 }, level = 78, group = "WeaponTreeSellNodeAwakenedSextant", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 238, 238, 175, 140 }, modTags = { }, tradeHash = 48243, }, + ["WeaponTreeSellNodeAwakenedSextantHigh"] = { type = "Spawn", tier = 2, "Item sells for 2 additional Cartography Scarabs of every type", statOrder = { 10591 }, level = 78, group = "WeaponTreeSellNodeAwakenedSextantHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 119, 119, 88, 70 }, modTags = { }, tradeHash = 42738, }, + ["WeaponTreeSellNodeOrbOfAnnulment"] = { type = "Spawn", tier = 1, "Item sells for an additional Orb of Annulment", statOrder = { 10604 }, level = 68, group = "WeaponTreeSellNodeOrbOfAnnulment", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 68, 68, 50, 40 }, modTags = { }, tradeHash = 62042, }, + ["WeaponTreeSellNodeOrbOfAnnulmentHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Orbs of Annulment", statOrder = { 10604 }, level = 78, group = "WeaponTreeSellNodeOrbOfAnnulmentHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 24, 24, 18, 14 }, modTags = { }, tradeHash = 1751, }, + ["WeaponTreeSellNodeExaltedOrb"] = { type = "Spawn", tier = 1, "Item sells for an additional Exalted Orb", statOrder = { 10596 }, level = 68, group = "WeaponTreeSellNodeExaltedOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 170, 170, 125, 100 }, modTags = { }, tradeHash = 2402, }, + ["WeaponTreeSellNodeExaltedOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Exalted Orbs", statOrder = { 10596 }, level = 78, group = "WeaponTreeSellNodeExaltedOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 58, 58, 43, 34 }, modTags = { }, tradeHash = 64992, }, + ["WeaponTreeSellNodeDivineOrb"] = { type = "Spawn", tier = 1, "Item sells for an additional Divine Orb", statOrder = { 10595 }, level = 68, group = "WeaponTreeSellNodeDivineOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 170, 170, 125, 100 }, modTags = { }, tradeHash = 18496, }, + ["WeaponTreeSellNodeDivineOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Divine Orbs", statOrder = { 10595 }, level = 78, group = "WeaponTreeSellNodeDivineOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 58, 58, 43, 34 }, modTags = { }, tradeHash = 6400, }, + ["WeaponTreeSellNodeSacredOrb"] = { type = "Spawn", tier = 1, "Item sells for an additional Sacred Orb", statOrder = { 10607 }, level = 80, group = "WeaponTreeSellNodeSacredOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 9, 9, 6, 5 }, modTags = { }, tradeHash = 36660, }, + ["WeaponTreeSellNodeSacredOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Sacred Orbs", statOrder = { 10607 }, level = 84, group = "WeaponTreeSellNodeSacredOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 3, 3, 3, 2 }, modTags = { }, tradeHash = 54710, }, + ["WeaponTreeSellNodeIgneousGeode"] = { type = "Spawn", tier = 1, "Item sells for an additional Igneous Geode", statOrder = { 10601 }, level = 75, group = "WeaponTreeSellNodeIgneousGeode", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 2125, 2125, 1563, 1250 }, modTags = { }, tradeHash = 8869, }, + ["WeaponTreeSellNodeCrystallineGeode"] = { type = "Spawn", tier = 1, "Item sells for an additional Crystalline Geode", statOrder = { 10594 }, level = 84, group = "WeaponTreeSellNodeCrystallineGeode", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 228, 228, 168, 134 }, modTags = { }, tradeHash = 4855, }, + ["WeaponTreeSellNodeDouble"] = { type = "Spawn", tier = 1, "Crucible Passives that sell for items sell for twice as much", statOrder = { 10603 }, level = 84, group = "WeaponTreeSellNodeDouble", nodeType = "SellBonus", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 340, 340, 250, 200 }, modTags = { }, tradeHash = 5779, }, + ["WeaponTreeFishingLineStrength"] = { type = "Spawn", tier = 1, "30% increased Fishing Line Strength", statOrder = { 2844 }, level = 1, group = "WeaponTreeFishingLineStrength", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, tradeHash = 12534, }, + ["WeaponTreeFishingQuantity"] = { type = "Spawn", tier = 1, "20% increased Quantity of Fish Caught", statOrder = { 2849 }, level = 1, group = "WeaponTreeFishingQuantity", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, tradeHash = 4067, }, + ["WeaponTreeFishingRarity"] = { type = "Spawn", tier = 1, "40% increased Rarity of Fish Caught", statOrder = { 2850 }, level = 1, group = "WeaponTreeFishingRarity", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, tradeHash = 12959, }, + ["WeaponTreeFishingPoolConsumption"] = { type = "Spawn", tier = 1, "20% increased Fishing Pool Consumption", statOrder = { 2845 }, level = 1, group = "WeaponTreeFishingPoolConsumption", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, tradeHash = 57652, }, + ["WeaponTreeFishingExoticFish"] = { type = "Spawn", tier = 1, "You can catch Exotic Fish", statOrder = { 2854 }, level = 1, group = "WeaponTreeFishingExoticFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, tradeHash = 735, }, + ["WeaponTreeFishingBiteSensitivity"] = { type = "Spawn", tier = 1, "50% increased Fish Bite Sensitivity", statOrder = { 3583 }, level = 1, group = "WeaponTreeFishingBiteSensitivity", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, tradeHash = 45720, }, + ["WeaponTreeFishingReelStability"] = { type = "Spawn", tier = 1, "100% increased Reeling Stability", statOrder = { 6612 }, level = 1, group = "WeaponTreeFishingReelStability", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, tradeHash = 26301, }, + ["WeaponTreeFishingChanceToCatchBoots"] = { type = "Spawn", tier = 1, "25% reduced chance to catch Boots", statOrder = { 6602 }, level = 1, group = "WeaponTreeFishingChanceToCatchBoots", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, tradeHash = 39645, }, + ["WeaponTreeFishingChanceToCatchDivineOrb"] = { type = "Spawn", tier = 1, "5% increased chance to catch a Divine Orb", statOrder = { 6603 }, level = 1, group = "WeaponTreeFishingChanceToCatchDivineOrb", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, tradeHash = 36068, }, + ["WeaponTreeFishingCanCatchDivineFish"] = { type = "Spawn", tier = 1, "You can catch Divine Fish", statOrder = { 6601 }, level = 1, group = "WeaponTreeFishingCanCatchDivineFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, tradeHash = 13623, }, + ["WeaponTreeFishingGhastlyFishermanCannotSpawn"] = { type = "Spawn", tier = 1, "The Ghastly Fisherman cannot spawn", statOrder = { 6606 }, level = 1, group = "WeaponTreeFishingGhastlyFishermanCannotSpawn", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, tradeHash = 13569, }, + ["WeaponTreeFishingGhastlyFishermanSpawnsBehindYou"] = { type = "Spawn", tier = 1, "The Ghastly Fisherman always appears behind you", statOrder = { 6607 }, level = 1, group = "WeaponTreeFishingGhastlyFishermanSpawnsBehindYou", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, tradeHash = 17222, }, + ["WeaponTreeFishingTasalioIrePerFishCaught"] = { type = "Spawn", tier = 1, "20% reduced Tasalio's Ire per Fish caught", statOrder = { 6613 }, level = 1, group = "WeaponTreeFishingTasalioIrePerFishCaught", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, tradeHash = 30831, }, + ["WeaponTreeFishingValakoAidPerStormyDay"] = { type = "Spawn", tier = 1, "20% increased Valako's Aid per Stormy Day", statOrder = { 6614 }, level = 1, group = "WeaponTreeFishingValakoAidPerStormyDay", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, tradeHash = 54071, }, + ["WeaponTreeFishingBestiaryLuresAtFishingHoles"] = { type = "Spawn", tier = 1, "Can use Bestiary Lures at Fishing Holes", statOrder = { 6600 }, level = 1, group = "WeaponTreeFishingBestiaryLuresAtFishingHoles", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, tradeHash = 47493, }, + ["WeaponTreeFishingCorruptedFishCleansedChance"] = { type = "Spawn", tier = 1, "Corrupted Fish have 10% chance to be Cleansed", statOrder = { 6604 }, level = 1, group = "WeaponTreeFishingCorruptedFishCleansedChance", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, tradeHash = 54305, }, + ["WeaponTreeFishingKrillsonAffectionPerFishGifted"] = { type = "Spawn", tier = 1, "23% increased Krillson Affection per Fish Gifted", statOrder = { 6608 }, level = 1, group = "WeaponTreeFishingKrillsonAffectionPerFishGifted", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, tradeHash = 47980, }, + ["WeaponTreeFishingLifeOfFishWithThisRod"] = { type = "Spawn", tier = 1, "40% increased Life of Fish caught with this Fishing Rod", statOrder = { 6609 }, level = 1, group = "WeaponTreeFishingLifeOfFishWithThisRod", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, tradeHash = 12413, }, + ["WeaponTreeFishingFishAlwaysTellTruthWithThisRod"] = { type = "Spawn", tier = 1, "Fish caught with this Fishing Rod will always tell the truth", statOrder = { 6605 }, level = 1, group = "WeaponTreeFishingFishAlwaysTellTruthWithThisRod", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, tradeHash = 11897, }, + ["WeaponTreeFishingWishPerFish"] = { type = "Spawn", tier = 1, "+3 Wishes per Ancient Fish caught", statOrder = { 6616 }, level = 1, group = "WeaponTreeFishingWishPerFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, tradeHash = 47244, }, + ["WeaponTreeFishingWishEffectOfAncientFish"] = { type = "Spawn", tier = 1, "50% increased effect of Wishes granted by Ancient Fish", statOrder = { 6615 }, level = 1, group = "WeaponTreeFishingWishEffectOfAncientFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, tradeHash = 27846, }, + ["WeaponTreeFishingMagmaticFishAreCooked"] = { type = "Spawn", tier = 1, "Fish caught from Magmatic Fishing Holes are already Cooked", statOrder = { 6610 }, level = 1, group = "WeaponTreeFishingMagmaticFishAreCooked", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, tradeHash = 61359, }, + ["WeaponTreeFishingMoltenOneConfusionPerFishGifted"] = { type = "Spawn", tier = 1, "15% increased Molten One confusion per Fish Gifted", statOrder = { 6611 }, level = 1, group = "WeaponTreeFishingMoltenOneConfusionPerFishGifted", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, tradeHash = 59398, }, + ["UniqueTreeWeaponTreeSupportArcaneSurge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Arcane Surge", statOrder = { 226 }, level = 1, group = "WeaponTreeSupportArcaneSurge", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 9992, }, + ["UniqueTreeWeaponTreeSupportChanceToIgnite"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Combustion", statOrder = { 245 }, level = 1, group = "WeaponTreeSupportChanceToIgnite", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 16631, }, + ["UniqueTreeWeaponTreeSupportDecay"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Decay", statOrder = { 259 }, level = 1, group = "WeaponTreeSupportDecay", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 47133, }, + ["UniqueTreeWeaponTreeSupportElementalProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Elemental Proliferation", statOrder = { 466 }, level = 1, group = "WeaponTreeSupportElementalProliferation", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 44300, }, + ["UniqueTreeWeaponTreeSupportEnergyLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Energy Leech", statOrder = { 270 }, level = 1, group = "WeaponTreeSupportEnergyLeech", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 42115, }, + ["UniqueTreeWeaponTreeSupportFasterCast"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Faster Casting", statOrder = { 500 }, level = 1, group = "WeaponTreeSupportFasterCast", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 63346, }, + ["UniqueTreeWeaponTreeSupportIgniteProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Ignite Proliferation", statOrder = { 308 }, level = 1, group = "WeaponTreeSupportIgniteProliferation", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 56134, }, + ["UniqueTreeWeaponTreeSupportIntensify"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Intensify", statOrder = { 380 }, level = 1, group = "WeaponTreeSupportIntensify", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 46858, }, + ["UniqueTreeWeaponTreeSupportOvercharge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Overcharge", statOrder = { 345 }, level = 1, group = "WeaponTreeSupportOvercharge", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 52502, }, + ["UniqueTreeWeaponTreeSupportPhysicalToLightning"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Physical To Lightning", statOrder = { 352 }, level = 1, group = "WeaponTreeSupportPhysicalToLightning", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 65339, }, + ["UniqueTreeWeaponTreeSupportPinpoint"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Pinpoint", statOrder = { 353 }, level = 1, group = "WeaponTreeSupportPinpoint", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 61170, }, + ["UniqueTreeWeaponTreeSupportSpellCascade"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Spell Cascade", statOrder = { 379 }, level = 1, group = "WeaponTreeSupportSpellCascade", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 64913, }, + ["UniqueTreeWeaponTreeSupportSummonGhostOnKill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Summon Phantasm", statOrder = { 385 }, level = 1, group = "WeaponTreeSupportSummonGhostOnKill", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 51163, }, + ["UniqueTreeWeaponTreeSupportSwiftBrand"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Swiftbrand", statOrder = { 387 }, level = 1, group = "WeaponTreeSupportSwiftBrand", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 33117, }, + ["UniqueTreeWeaponTreeSupportAddedChaos"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Added Chaos Damage", statOrder = { 458 }, level = 1, group = "WeaponTreeSupportAddedChaos", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 20387, }, + ["UniqueTreeWeaponTreeSupportAddedCold"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Added Cold Damage", statOrder = { 518 }, level = 1, group = "WeaponTreeSupportAddedCold", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 51067, }, + ["UniqueTreeWeaponTreeSupportAddedLightning"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Added Lightning Damage", statOrder = { 467 }, level = 1, group = "WeaponTreeSupportAddedLightning", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 32855, }, + ["UniqueTreeWeaponTreeSupportArchmage"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Archmage", statOrder = { 227 }, level = 1, group = "WeaponTreeSupportArchmage", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 47182, }, + ["UniqueTreeWeaponTreeSupportBonechill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Bonechill", statOrder = { 235 }, level = 1, group = "WeaponTreeSupportBonechill", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 52828, }, + ["UniqueTreeWeaponTreeSupportConcentratedEffect"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Concentrated Effect", statOrder = { 453 }, level = 1, group = "WeaponTreeSupportConcentratedEffect", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 64293, }, + ["UniqueTreeWeaponTreeSupportControlledDestruction"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Controlled Destruction", statOrder = { 525 }, level = 1, group = "WeaponTreeSupportControlledDestruction", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 18084, }, + ["UniqueTreeWeaponTreeSupportEfficacy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Efficacy", statOrder = { 265 }, level = 1, group = "WeaponTreeSupportEfficacy", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 43613, }, + ["UniqueTreeWeaponTreeSupportElementalFocus"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Elemental Focus", statOrder = { 267 }, level = 1, group = "WeaponTreeSupportElementalFocus", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 49734, }, + ["UniqueTreeWeaponTreeSupportElementalPenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Elemental Penetration", statOrder = { 268 }, level = 1, group = "WeaponTreeSupportElementalPenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 48244, }, + ["UniqueTreeWeaponTreeSupportImmolate"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Immolate", statOrder = { 309 }, level = 1, group = "WeaponTreeSupportImmolate", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 42265, }, + ["UniqueTreeWeaponTreeSupportIncreasedCriticalDamage"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 30 Increased Critical Damage", statOrder = { 485 }, level = 1, group = "WeaponTreeSupportIncreasedCriticalDamage", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 3151, }, + ["UniqueTreeWeaponTreeSupportIncreasedCriticalStrikes"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Increased Critical Strikes", statOrder = { 313 }, level = 1, group = "WeaponTreeSupportIncreasedCriticalStrikes", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 54278, }, + ["UniqueTreeWeaponTreeSupportInfusedChannelling"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Infused Channelling", statOrder = { 383 }, level = 1, group = "WeaponTreeSupportInfusedChannelling", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 25513, }, + ["UniqueTreeWeaponTreeSupportInnervate"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Innervate", statOrder = { 521 }, level = 1, group = "WeaponTreeSupportInnervate", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 1810, }, + ["UniqueTreeWeaponTreeSupportFirePenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Fire Penetration", statOrder = { 465 }, level = 1, group = "WeaponTreeSupportFirePenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 45600, }, + ["UniqueTreeWeaponTreeSupportColdPenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Cold Penetration", statOrder = { 513 }, level = 1, group = "WeaponTreeSupportColdPenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 20469, }, + ["UniqueTreeWeaponTreeSupportLightningPenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Lightning Penetration", statOrder = { 326 }, level = 1, group = "WeaponTreeSupportLightningPenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 42728, }, + ["UniqueTreeWeaponTreeSupportPowerChargeOnCrit"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Power Charge On Critical Strike", statOrder = { 356 }, level = 1, group = "WeaponTreeSupportPowerChargeOnCrit", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 37407, }, + ["UniqueTreeWeaponTreeSupportSpellEcho"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Spell Echo", statOrder = { 341 }, level = 1, group = "WeaponTreeSupportSpellEcho", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 3342, }, + ["UniqueTreeWeaponTreeSupportTrinity"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Trinity", statOrder = { 392 }, level = 1, group = "WeaponTreeSupportTrinity", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 5003, }, + ["UniqueTreeWeaponTreeSupportUnboundAilments"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Unbound Ailments", statOrder = { 393 }, level = 1, group = "WeaponTreeSupportUnboundAilments", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 8484, }, + ["UniqueTreeWeaponTreeSupportUnleash"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Unleash", statOrder = { 396 }, level = 1, group = "WeaponTreeSupportUnleash", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 12731, }, + ["UniqueTreeWeaponTreeSupportBurningDamage"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Burning Damage", statOrder = { 312 }, level = 1, group = "WeaponTreeSupportBurningDamage", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 45950, }, + ["UniqueTreeWeaponTreeSupportColdToFire"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Cold to Fire", statOrder = { 463 }, level = 1, group = "WeaponTreeSupportColdToFire", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 6705, }, + ["UniqueTreeWeaponTreeSupportInspiration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Inspiration", statOrder = { 494 }, level = 1, group = "WeaponTreeSupportInspiration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 10770, }, + ["UniqueTreeWeaponTreeSupportIceBite"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Ice Bite", statOrder = { 512 }, level = 1, group = "WeaponTreeSupportIceBite", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 26563, }, + ["UniqueTreeWeaponTreeSupportCriticalStrikeAffliction"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Critical Strike Affliction", statOrder = { 355 }, level = 1, group = "WeaponTreeSupportCriticalStrikeAffliction", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 23600, }, + ["UniqueTreeWeaponTreeSupportDeadlyAilments"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Deadly Ailments", statOrder = { 257 }, level = 1, group = "WeaponTreeSupportDeadlyAilments", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 21266, }, + ["UniqueTreeWeaponTreeSupportHypothermia"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Hypothermia", statOrder = { 511 }, level = 1, group = "WeaponTreeSupportHypothermia", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 63124, }, + ["UniqueTreeWeaponTreeSupportSwiftAffliction"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Swift Affliction", statOrder = { 363 }, level = 1, group = "WeaponTreeSupportSwiftAffliction", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHash = 22697, }, } \ No newline at end of file diff --git a/src/Data/ModCorrupted.lua b/src/Data/ModCorrupted.lua index 44d73325df7..4ab9e08b69d 100644 --- a/src/Data/ModCorrupted.lua +++ b/src/Data/ModCorrupted.lua @@ -147,7 +147,7 @@ return { ["V2ChanceToGainEnduranceChargeOnStunCorrupted_"] = { type = "Corrupted", affix = "", "(5-7)% chance to gain an Endurance Charge when you Stun an Enemy", statOrder = { 5687 }, level = 1, group = "GainEnduranceChargeOnStunChance", weightKey = { "sceptre", "staff", "mace", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1582887649] = { "(5-7)% chance to gain an Endurance Charge when you Stun an Enemy" }, } }, ["V2ChanceToGainFortifyOnMeleeHitCorrupted"] = { type = "Corrupted", affix = "", "Melee Hits have (10-15)% chance to Fortify", statOrder = { 2264 }, level = 1, group = "FortifyOnMeleeHit", weightKey = { "sceptre", "wand", "dagger", "claw", "rapier", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (10-15)% chance to Fortify" }, } }, ["V2ChanceToGainFrenzyChargeOnKillCorrupted"] = { type = "Corrupted", affix = "", "(9-11)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { "dagger", "claw", "bow", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "(9-11)% chance to gain a Frenzy Charge on Kill" }, } }, - ["V2ChanceToGainOnslaughtOnKillCorrupted_"] = { type = "Corrupted", affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "sceptre", "wand", "dagger", "claw", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "(10-15)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["V2ChanceToGainOnslaughtOnKillCorrupted_"] = { type = "Corrupted", affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "sceptre", "wand", "dagger", "claw", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { }, tradeHashes = { [3023957681] = { "(10-15)% chance to gain Onslaught for 4 seconds on Kill" }, } }, ["V2ChanceToGainPowerChargeOnCritCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% chance to gain a Power Charge on Critical Strike", statOrder = { 1830 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "wand", "dagger", "claw", "sceptre", "staff", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "(5-7)% chance to gain a Power Charge on Critical Strike" }, } }, ["V2UnholyMightOnKillPercentChanceCorrupted"] = { type = "Corrupted", affix = "", "(10-15)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 1, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3562211447] = { "(10-15)% chance to gain Unholy Might for 3 seconds on Kill" }, } }, ["V2ChanceToSpellDodgeCorrupted_"] = { type = "Corrupted", affix = "", "+(6-9)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(6-9)% chance to Suppress Spell Damage" }, } }, @@ -242,10 +242,10 @@ return { ["V2LocalIncreasedCriticalStrikeChance1hCorrupted1"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "wand", "rapier", "claw", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(14-18)% increased Critical Strike Chance" }, } }, ["V2LocalIncreasedCriticalStrikeChance2hCorrupted_"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(14-18)% increased Critical Strike Chance" }, } }, ["V2LocalIncreasedCriticalStrikeChance1hCorrupted2__"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "dagger", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(14-18)% increased Critical Strike Chance" }, } }, - ["V2LocalIncreasedPhysicalDamageBowCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(10-15)% increased Physical Damage" }, } }, - ["V2LocalIncreasedPhysicalDamageBowCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrder = { 1232 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(16-20)% increased Physical Damage" }, } }, - ["V2LocalIncreasedPhysicalDamageCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(10-15)% increased Physical Damage" }, } }, - ["V2LocalIncreasedPhysicalDamageCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrder = { 1232 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(16-20)% increased Physical Damage" }, } }, + ["V2LocalIncreasedPhysicalDamageBowCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(10-15)% increased Physical Damage" }, } }, + ["V2LocalIncreasedPhysicalDamageBowCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrder = { 1232 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(16-20)% increased Physical Damage" }, } }, + ["V2LocalIncreasedPhysicalDamageCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(10-15)% increased Physical Damage" }, } }, + ["V2LocalIncreasedPhysicalDamageCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrder = { 1232 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(16-20)% increased Physical Damage" }, } }, ["V2IncreasedSpellDamage1hCorrupted"] = { type = "Corrupted", affix = "", "(50-60)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-60)% increased Spell Damage" }, } }, ["V2LocalMeleeWeaponRangeCorrupted"] = { type = "Corrupted", affix = "", "+(0.1-0.2) metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "sword", "mace", "staff", "bow", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+(0.1-0.2) metres to Weapon Range" }, } }, ["V2ManaOnHitCorrupted"] = { type = "Corrupted", affix = "", "Gain (4-6) Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 40, group = "ManaGainPerTarget", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (4-6) Mana per Enemy Hit with Attacks" }, } }, diff --git a/src/Data/ModDelve.lua b/src/Data/ModDelve.lua index c5c03058e69..245e33a7bad 100644 --- a/src/Data/ModDelve.lua +++ b/src/Data/ModDelve.lua @@ -90,7 +90,7 @@ return { ["DelveArmourEnergyShieldRegen"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second", statOrder = { 2646 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of Energy Shield per second" }, } }, ["DelveArmourEnergyShieldLeechSpells_"] = { type = "Suffix", affix = "of the Underground", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1722 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [11106713] = { "0.3% of Spell Damage Leeched as Energy Shield" }, } }, ["DelveArmourSpellBlock__"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "gloves", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(3-4)% Chance to Block Spell Damage" }, } }, - ["DelveArmourDodgeAndSpellDodge_"] = { type = "Suffix", affix = "of the Underground", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToDodgeAndSpellDodge", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(4-6)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } }, + ["DelveArmourDodgeAndSpellDodge_"] = { type = "Suffix", affix = "of the Underground", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToDodgeAndSpellDodge", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(4-6)% chance to Suppress Spell Damage" }, } }, ["DelveArmourBlindChance"] = { type = "Suffix", affix = "of the Underground", "(4-6)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2221570601] = { "(4-6)% Global chance to Blind Enemies on hit" }, } }, ["DelveArmourEvasionOnFullLife"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Global Evasion Rating when on Full Life", statOrder = { 6497 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [88817332] = { "(25-50)% increased Global Evasion Rating when on Full Life" }, } }, ["DelveArmourDoubleArmourEffectOnHit"] = { type = "Suffix", affix = "of the Underground", "(10-20)% chance to Defend with 200% of Armour", statOrder = { 5671 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [327253797] = { "(10-20)% chance to Defend with 200% of Armour" }, } }, @@ -146,8 +146,8 @@ return { ["DelveRingManaCostReduction1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% reduced Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(4-6)% reduced Mana Cost of Skills" }, } }, ["DelveQuiverIncreasedMana1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(20-30)% increased maximum Mana" }, } }, ["DelveJewelDamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of the Underground", "(2-3)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(2-3)% of Damage taken Recouped as Mana" }, } }, - ["DelveWeaponChanceToGainOnslaughtOnKill1h1_"] = { type = "Suffix", affix = "of the Underground", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "10% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["DelveWeaponChanceToGainOnslaughtOnKill2h1"] = { type = "Suffix", affix = "of the Underground", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "20% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["DelveWeaponChanceToGainOnslaughtOnKill1h1_"] = { type = "Suffix", affix = "of the Underground", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [3023957681] = { "10% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["DelveWeaponChanceToGainOnslaughtOnKill2h1"] = { type = "Suffix", affix = "of the Underground", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { }, tradeHashes = { [3023957681] = { "20% chance to gain Onslaught for 4 seconds on Kill" }, } }, ["DelveBodyFrenzyChargeWhenHit1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain a Frenzy Charge when Hit", statOrder = { 4530 }, level = 1, group = "FrenzyChargeWhenHit", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [881914531] = { "(15-20)% chance to gain a Frenzy Charge when Hit" }, } }, ["DelveBootsMovementSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9419 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, tradeHashes = { [3178542354] = { "(4-6)% increased Movement Speed if you've Hit an Enemy Recently" }, } }, ["DelveGlovesAttackAndCastSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently", statOrder = { 4815 }, level = 1, group = "AttackAndCastSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [1483753325] = { "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently" }, } }, @@ -187,5 +187,5 @@ return { ["DelveGlovesVaalSkillCriticalChance1"] = { type = "Suffix", affix = "of the Underground", "(80-120)% increased Vaal Skill Critical Strike Chance", statOrder = { 3107 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { "abyss_jewel", "jewel", "quiver", "gloves", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "critical", "vaal" }, tradeHashes = { [3165492062] = { "(80-120)% increased Vaal Skill Critical Strike Chance" }, } }, ["DelveAmuletVaalSkillDuration1"] = { type = "Suffix", affix = "of the Underground", "Vaal Skills have (15-25)% increased Skill Effect Duration", statOrder = { 3105 }, level = 1, group = "VaalSkillDuration", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [547412107] = { "Vaal Skills have (15-25)% increased Skill Effect Duration" }, } }, ["DelveJewelryVaalSkillDamage1"] = { type = "Suffix", affix = "of the Underground", "(20-40)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 1, group = "VaalSkillDamage", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(20-40)% increased Damage with Vaal Skills" }, } }, - ["DelveMapMonsterPacksVaalMapWorlds1"] = { type = "Prefix", affix = "Subterranean", "Area is inhabited by the Vaal", "Found Items have 10% chance to drop Corrupted in Area", statOrder = { 8763, 10827 }, level = 1, group = "MapMonsterPacksVaalMapWorlds", weightKey = { "map", "expedition_logbook", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [728267040] = { "Found Items have 10% chance to drop Corrupted in Area" }, [57434274] = { "" }, [2306002879] = { "" }, [2390685262] = { "" }, [2017682521] = { "" }, } }, + ["DelveMapMonsterPacksVaalMapWorlds1"] = { type = "Prefix", affix = "Subterranean", "Area is inhabited by the Vaal", "Found Items have 10% chance to drop Corrupted in Area", statOrder = { 8763, 10827 }, level = 1, group = "MapMonsterPacksVaalMapWorlds", weightKey = { "map", "expedition_logbook", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [728267040] = { "Found Items have 10% chance to drop Corrupted in Area" }, [57434274] = { "" }, [2609768284] = { "Area is inhabited by the Vaal" }, } }, } \ No newline at end of file diff --git a/src/Data/ModEldritch.lua b/src/Data/ModEldritch.lua index a10f7bd35c1..8efeb2bbc7d 100644 --- a/src/Data/ModEldritch.lua +++ b/src/Data/ModEldritch.lua @@ -8,4066 +8,4066 @@ return { ["IncreasedAttackSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "11% increased Attack Speed" }, } }, ["IncreasedAttackSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "12% increased Attack Speed" }, } }, ["IncreasedAttackSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "13% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "12% increased Attack Speed" }, [4074358700] = { "" }, } }, - ["IncreasedAttackSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "13% increased Attack Speed" }, [4074358700] = { "" }, } }, - ["IncreasedAttackSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "14% increased Attack Speed" }, [4074358700] = { "" }, } }, - ["IncreasedAttackSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "15% increased Attack Speed" }, [4074358700] = { "" }, } }, - ["IncreasedAttackSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "16% increased Attack Speed" }, [4074358700] = { "" }, } }, - ["IncreasedAttackSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "17% increased Attack Speed" }, [4074358700] = { "" }, } }, - ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "16% increased Attack Speed" }, [3283106665] = { "" }, } }, - ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "17% increased Attack Speed" }, [3283106665] = { "" }, } }, - ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "18% increased Attack Speed" }, [3283106665] = { "" }, } }, - ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "19% increased Attack Speed" }, [3283106665] = { "" }, } }, - ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "20% increased Attack Speed" }, [3283106665] = { "" }, } }, - ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "21% increased Attack Speed" }, [3283106665] = { "" }, } }, + ["IncreasedAttackSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "12% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "13% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "14% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "15% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "16% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "17% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "16% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "17% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "18% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "19% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "20% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "21% increased Attack Speed" }, } }, ["AttackCriticalStrikeChanceEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-21)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(19-21)% increased Critical Strike Chance for Attacks" }, } }, ["AttackCriticalStrikeChanceEldritchImplicit2"] = { type = "Exarch", affix = "", "(22-24)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(22-24)% increased Critical Strike Chance for Attacks" }, } }, ["AttackCriticalStrikeChanceEldritchImplicit3"] = { type = "Exarch", affix = "", "(25-27)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(25-27)% increased Critical Strike Chance for Attacks" }, } }, ["AttackCriticalStrikeChanceEldritchImplicit4"] = { type = "Exarch", affix = "", "(28-30)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(28-30)% increased Critical Strike Chance for Attacks" }, } }, ["AttackCriticalStrikeChanceEldritchImplicit5"] = { type = "Exarch", affix = "", "(31-33)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(31-33)% increased Critical Strike Chance for Attacks" }, } }, ["AttackCriticalStrikeChanceEldritchImplicit6"] = { type = "Exarch", affix = "", "(34-36)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(34-36)% increased Critical Strike Chance for Attacks" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(31-33)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(34-36)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(37-39)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(40-42)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(43-45)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(46-48)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(43-45)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(46-48)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(49-51)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(52-54)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(55-57)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(58-60)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(31-33)% increased Critical Strike Chance for Attacks" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(34-36)% increased Critical Strike Chance for Attacks" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(37-39)% increased Critical Strike Chance for Attacks" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(40-42)% increased Critical Strike Chance for Attacks" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(43-45)% increased Critical Strike Chance for Attacks" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(46-48)% increased Critical Strike Chance for Attacks" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(43-45)% increased Critical Strike Chance for Attacks" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(46-48)% increased Critical Strike Chance for Attacks" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(49-51)% increased Critical Strike Chance for Attacks" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(52-54)% increased Critical Strike Chance for Attacks" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(55-57)% increased Critical Strike Chance for Attacks" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(58-60)% increased Critical Strike Chance for Attacks" }, } }, ["AddedPhysicalDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (3-5) to (7-9) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (3-5) to (7-9) Physical Damage to Attacks" }, } }, ["AddedPhysicalDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (4-5) to (8-9) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-5) to (8-9) Physical Damage to Attacks" }, } }, ["AddedPhysicalDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (4-6) to (9-10) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-6) to (9-10) Physical Damage to Attacks" }, } }, ["AddedPhysicalDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (5-6) to (10-11) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-6) to (10-11) Physical Damage to Attacks" }, } }, ["AddedPhysicalDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (11-12) Physical Damage to Attacks" }, } }, ["AddedPhysicalDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (6-7) to (12-14) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-7) to (12-14) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (5-6) to (10-11) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (5-6) to (10-11) Physical Damage to Attacks" }, [4074358700] = { "" }, } }, - ["AddedPhysicalDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (11-12) Physical Damage to Attacks" }, [4074358700] = { "" }, } }, - ["AddedPhysicalDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-7) to (12-14) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (6-7) to (12-14) Physical Damage to Attacks" }, [4074358700] = { "" }, } }, - ["AddedPhysicalDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (6-9) to (13-15) Physical Damage to Attacks" }, [4074358700] = { "" }, } }, - ["AddedPhysicalDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-9) to (14-17) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (7-9) to (14-17) Physical Damage to Attacks" }, [4074358700] = { "" }, } }, - ["AddedPhysicalDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-10) to (16-18) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (8-10) to (16-18) Physical Damage to Attacks" }, [4074358700] = { "" }, } }, - ["AddedPhysicalDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (6-9) to (13-15) Physical Damage to Attacks" }, [3283106665] = { "" }, } }, - ["AddedPhysicalDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (7-9) to (14-17) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (7-9) to (14-17) Physical Damage to Attacks" }, [3283106665] = { "" }, } }, - ["AddedPhysicalDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (8-10) to (16-18) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (8-10) to (16-18) Physical Damage to Attacks" }, [3283106665] = { "" }, } }, - ["AddedPhysicalDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (9-12) to (18-21) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (9-12) to (18-21) Physical Damage to Attacks" }, [3283106665] = { "" }, } }, - ["AddedPhysicalDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-14) to (21-24) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (10-14) to (21-24) Physical Damage to Attacks" }, [3283106665] = { "" }, } }, - ["AddedPhysicalDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-15) to (24-28) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (12-15) to (24-28) Physical Damage to Attacks" }, [3283106665] = { "" }, } }, + ["AddedPhysicalDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (5-6) to (10-11) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (5-6) to (10-11) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (11-12) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-7) to (12-14) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (6-7) to (12-14) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (6-9) to (13-15) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-9) to (14-17) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (7-9) to (14-17) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-10) to (16-18) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (8-10) to (16-18) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (6-9) to (13-15) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (7-9) to (14-17) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (7-9) to (14-17) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (8-10) to (16-18) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (8-10) to (16-18) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (9-12) to (18-21) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (9-12) to (18-21) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-14) to (21-24) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (10-14) to (21-24) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-15) to (24-28) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (12-15) to (24-28) Physical Damage to Attacks" }, } }, ["AddedFireDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (6-8) to (13-15) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (6-8) to (13-15) Fire Damage to Attacks" }, } }, ["AddedFireDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (7-9) to (14-16) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (7-9) to (14-16) Fire Damage to Attacks" }, } }, ["AddedFireDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (8-10) to (15-18) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-10) to (15-18) Fire Damage to Attacks" }, } }, ["AddedFireDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (8-11) to (17-20) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-11) to (17-20) Fire Damage to Attacks" }, } }, ["AddedFireDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (9-12) to (19-22) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (9-12) to (19-22) Fire Damage to Attacks" }, } }, ["AddedFireDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (10-13) to (21-24) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (10-13) to (21-24) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-11) to (17-20) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (8-11) to (17-20) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-12) to (19-22) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (9-12) to (19-22) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (21-24) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (10-13) to (21-24) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-26) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (11-15) to (23-26) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-29) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (13-16) to (25-29) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-18) to (28-32) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (13-18) to (28-32) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (11-15) to (23-26) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (11-15) to (23-26) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-16) to (25-29) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (13-16) to (25-29) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (13-18) to (28-32) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-20) to (32-37) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (16-20) to (32-37) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-42) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (18-24) to (37-42) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (21-27) to (42-49) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (21-27) to (42-49) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-11) to (17-20) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1573130764] = { "Adds (8-11) to (17-20) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-12) to (19-22) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1573130764] = { "Adds (9-12) to (19-22) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (21-24) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1573130764] = { "Adds (10-13) to (21-24) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-26) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1573130764] = { "Adds (11-15) to (23-26) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-29) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1573130764] = { "Adds (13-16) to (25-29) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-18) to (28-32) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1573130764] = { "Adds (13-18) to (28-32) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (11-15) to (23-26) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1573130764] = { "Adds (11-15) to (23-26) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-16) to (25-29) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1573130764] = { "Adds (13-16) to (25-29) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1573130764] = { "Adds (13-18) to (28-32) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-20) to (32-37) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1573130764] = { "Adds (16-20) to (32-37) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-42) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1573130764] = { "Adds (18-24) to (37-42) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (21-27) to (42-49) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1573130764] = { "Adds (21-27) to (42-49) Fire Damage to Attacks" }, } }, ["AddedColdDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (6-7) to (11-13) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (6-7) to (11-13) Cold Damage to Attacks" }, } }, ["AddedColdDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (6-8) to (12-15) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (6-8) to (12-15) Cold Damage to Attacks" }, } }, ["AddedColdDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (7-9) to (13-16) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (7-9) to (13-16) Cold Damage to Attacks" }, } }, ["AddedColdDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (7-10) to (15-18) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (7-10) to (15-18) Cold Damage to Attacks" }, } }, ["AddedColdDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (8-11) to (17-19) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (8-11) to (17-19) Cold Damage to Attacks" }, } }, ["AddedColdDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (9-12) to (18-22) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (9-12) to (18-22) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-10) to (15-18) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (7-10) to (15-18) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-11) to (17-19) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (8-11) to (17-19) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-12) to (18-22) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (9-12) to (18-22) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (10-13) to (20-24) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (22-26) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (11-15) to (22-26) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (12-16) to (24-29) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (12-16) to (24-29) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (10-13) to (20-24) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (11-15) to (22-26) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (11-15) to (22-26) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-16) to (24-29) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (12-16) to (24-29) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (14-18) to (28-33) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (14-18) to (28-33) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-21) to (32-38) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (16-21) to (32-38) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-44) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (18-24) to (37-44) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-10) to (15-18) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4067062424] = { "Adds (7-10) to (15-18) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-11) to (17-19) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4067062424] = { "Adds (8-11) to (17-19) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-12) to (18-22) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4067062424] = { "Adds (9-12) to (18-22) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4067062424] = { "Adds (10-13) to (20-24) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (22-26) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4067062424] = { "Adds (11-15) to (22-26) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (12-16) to (24-29) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4067062424] = { "Adds (12-16) to (24-29) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4067062424] = { "Adds (10-13) to (20-24) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (11-15) to (22-26) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4067062424] = { "Adds (11-15) to (22-26) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-16) to (24-29) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4067062424] = { "Adds (12-16) to (24-29) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (14-18) to (28-33) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4067062424] = { "Adds (14-18) to (28-33) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-21) to (32-38) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4067062424] = { "Adds (16-21) to (32-38) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-44) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4067062424] = { "Adds (18-24) to (37-44) Cold Damage to Attacks" }, } }, ["AddedLightningDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (1-2) to (22-24) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (22-24) Lightning Damage to Attacks" }, } }, ["AddedLightningDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (1-3) to (24-26) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (24-26) Lightning Damage to Attacks" }, } }, ["AddedLightningDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (1-3) to (27-28) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (27-28) Lightning Damage to Attacks" }, } }, ["AddedLightningDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (1-3) to (29-32) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (29-32) Lightning Damage to Attacks" }, } }, ["AddedLightningDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (2-4) to (32-35) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (32-35) Lightning Damage to Attacks" }, } }, ["AddedLightningDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (2-4) to (36-38) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (36-38) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (1-3) to (29-32) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (29-32) Lightning Damage to Attacks" }, [4074358700] = { "" }, } }, - ["AddedLightningDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (32-35) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (32-35) Lightning Damage to Attacks" }, [4074358700] = { "" }, } }, - ["AddedLightningDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (36-38) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (36-38) Lightning Damage to Attacks" }, [4074358700] = { "" }, } }, - ["AddedLightningDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (39-42) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (39-42) Lightning Damage to Attacks" }, [4074358700] = { "" }, } }, - ["AddedLightningDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (43-47) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (43-47) Lightning Damage to Attacks" }, [4074358700] = { "" }, } }, - ["AddedLightningDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (48-51) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-5) to (48-51) Lightning Damage to Attacks" }, [4074358700] = { "" }, } }, - ["AddedLightningDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-4) to (39-42) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (39-42) Lightning Damage to Attacks" }, [3283106665] = { "" }, } }, - ["AddedLightningDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-4) to (43-47) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (43-47) Lightning Damage to Attacks" }, [3283106665] = { "" }, } }, - ["AddedLightningDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-5) to (48-51) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-5) to (48-51) Lightning Damage to Attacks" }, [3283106665] = { "" }, } }, - ["AddedLightningDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-6) to (55-59) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-6) to (55-59) Lightning Damage to Attacks" }, [3283106665] = { "" }, } }, - ["AddedLightningDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-6) to (63-68) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (3-6) to (63-68) Lightning Damage to Attacks" }, [3283106665] = { "" }, } }, - ["AddedLightningDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (3-8) to (72-78) Lightning Damage to Attacks" }, [3283106665] = { "" }, } }, + ["AddedLightningDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (1-3) to (29-32) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (29-32) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (32-35) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (32-35) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (36-38) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (36-38) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (39-42) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (39-42) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (43-47) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (43-47) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (48-51) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-5) to (48-51) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-4) to (39-42) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (39-42) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-4) to (43-47) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (43-47) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-5) to (48-51) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-5) to (48-51) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-6) to (55-59) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-6) to (55-59) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-6) to (63-68) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (3-6) to (63-68) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (3-8) to (72-78) Lightning Damage to Attacks" }, } }, ["AddedChaosDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (5-6) to (10-11) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (5-6) to (10-11) Chaos Damage to Attacks" }, } }, ["AddedChaosDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (5-7) to (11-12) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (5-7) to (11-12) Chaos Damage to Attacks" }, } }, ["AddedChaosDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (6-7) to (12-14) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (6-7) to (12-14) Chaos Damage to Attacks" }, } }, ["AddedChaosDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (6-9) to (13-15) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (6-9) to (13-15) Chaos Damage to Attacks" }, } }, ["AddedChaosDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (7-9) to (14-17) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (7-9) to (14-17) Chaos Damage to Attacks" }, } }, ["AddedChaosDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (8-10) to (16-18) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (8-10) to (16-18) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-9) to (13-15) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (6-9) to (13-15) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-9) to (14-17) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (7-9) to (14-17) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-10) to (16-18) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (8-10) to (16-18) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-11) to (17-20) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (9-11) to (17-20) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (19-22) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (10-13) to (19-22) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-14) to (21-24) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (10-14) to (21-24) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (9-11) to (17-20) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (9-11) to (17-20) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-13) to (19-22) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (10-13) to (19-22) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-14) to (21-24) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (10-14) to (21-24) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-15) to (24-28) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (12-15) to (24-28) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (13-18) to (28-32) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-20) to (32-37) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (16-20) to (32-37) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-9) to (13-15) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [674553446] = { "Adds (6-9) to (13-15) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-9) to (14-17) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [674553446] = { "Adds (7-9) to (14-17) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-10) to (16-18) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [674553446] = { "Adds (8-10) to (16-18) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-11) to (17-20) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [674553446] = { "Adds (9-11) to (17-20) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (19-22) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [674553446] = { "Adds (10-13) to (19-22) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-14) to (21-24) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [674553446] = { "Adds (10-14) to (21-24) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (9-11) to (17-20) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [674553446] = { "Adds (9-11) to (17-20) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-13) to (19-22) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [674553446] = { "Adds (10-13) to (19-22) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-14) to (21-24) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [674553446] = { "Adds (10-14) to (21-24) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-15) to (24-28) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [674553446] = { "Adds (12-15) to (24-28) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [674553446] = { "Adds (13-18) to (28-32) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-20) to (32-37) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [674553446] = { "Adds (16-20) to (32-37) Chaos Damage to Attacks" }, } }, ["FireDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(5-7)% to Fire Damage over Time Multiplier" }, } }, ["FireDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(8-10)% to Fire Damage over Time Multiplier" }, } }, ["FireDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(11-13)% to Fire Damage over Time Multiplier" }, } }, ["FireDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(14-16)% to Fire Damage over Time Multiplier" }, } }, ["FireDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(17-18)% to Fire Damage over Time Multiplier" }, } }, ["FireDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(19-20)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(14-16)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(17-19)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(20-22)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(23-25)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(26-27)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(28-29)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(23-25)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(26-28)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(29-31)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(32-34)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(35-36)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(37-38)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(14-16)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(17-19)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(20-22)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(23-25)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(26-27)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(28-29)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(23-25)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(26-28)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(29-31)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(32-34)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(35-36)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(37-38)% to Fire Damage over Time Multiplier" }, } }, ["ColdDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(5-7)% to Cold Damage over Time Multiplier" }, } }, ["ColdDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(8-10)% to Cold Damage over Time Multiplier" }, } }, ["ColdDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(11-13)% to Cold Damage over Time Multiplier" }, } }, ["ColdDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(14-16)% to Cold Damage over Time Multiplier" }, } }, ["ColdDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(17-18)% to Cold Damage over Time Multiplier" }, } }, ["ColdDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(19-20)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(14-16)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(17-19)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(20-22)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(23-25)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(26-27)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(28-29)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(23-25)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(26-28)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(29-31)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(32-34)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(35-36)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(37-38)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(14-16)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(17-19)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(20-22)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(23-25)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(26-27)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(28-29)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(23-25)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(26-28)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(29-31)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(32-34)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(35-36)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(37-38)% to Cold Damage over Time Multiplier" }, } }, ["PhysicalDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(5-7)% to Physical Damage over Time Multiplier" }, } }, ["PhysicalDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(8-10)% to Physical Damage over Time Multiplier" }, } }, ["PhysicalDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(11-13)% to Physical Damage over Time Multiplier" }, } }, ["PhysicalDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(14-16)% to Physical Damage over Time Multiplier" }, } }, ["PhysicalDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(17-18)% to Physical Damage over Time Multiplier" }, } }, ["PhysicalDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(19-20)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(14-16)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(17-19)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(20-22)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(23-25)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(26-27)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(28-29)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(23-25)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(26-28)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(29-31)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(32-34)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(35-36)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(37-38)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(14-16)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(17-19)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(20-22)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(23-25)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(26-27)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(28-29)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(23-25)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(26-28)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(29-31)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(32-34)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(35-36)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(37-38)% to Physical Damage over Time Multiplier" }, } }, ["ChaosDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(5-7)% to Chaos Damage over Time Multiplier" }, } }, ["ChaosDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(8-10)% to Chaos Damage over Time Multiplier" }, } }, ["ChaosDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(11-13)% to Chaos Damage over Time Multiplier" }, } }, ["ChaosDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(14-16)% to Chaos Damage over Time Multiplier" }, } }, ["ChaosDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(17-18)% to Chaos Damage over Time Multiplier" }, } }, ["ChaosDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(19-20)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(14-16)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(17-19)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(20-22)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(23-25)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(26-27)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(28-29)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(23-25)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(26-28)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(29-31)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(32-34)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(35-36)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(37-38)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(14-16)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(17-19)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(20-22)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(23-25)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(26-27)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(28-29)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(23-25)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(26-28)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(29-31)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(32-34)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(35-36)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(37-38)% to Chaos Damage over Time Multiplier" }, } }, ["HeraldBonusAshEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Ash has (15-17)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (15-17)% increased Buff Effect" }, } }, ["HeraldBonusAshEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Ash has (18-20)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (18-20)% increased Buff Effect" }, } }, ["HeraldBonusAshEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Ash has (21-23)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (21-23)% increased Buff Effect" }, } }, ["HeraldBonusAshEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Ash has (24-26)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (24-26)% increased Buff Effect" }, } }, ["HeraldBonusAshEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Ash has (27-28)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (27-28)% increased Buff Effect" }, } }, ["HeraldBonusAshEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Ash has (29-30)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (29-30)% increased Buff Effect" }, } }, - ["HeraldBonusAshEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (24-26)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (24-26)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusAshEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (27-29)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (27-29)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusAshEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (30-32)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (30-32)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusAshEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (33-35)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (33-35)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusAshEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (36-37)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (36-37)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusAshEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (38-39)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (38-39)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (33-35)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (33-35)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (36-38)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (36-38)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (39-41)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (39-41)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (42-44)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (42-44)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (45-46)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (45-46)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (47-48)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (47-48)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["HeraldBonusAshEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (24-26)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (24-26)% increased Buff Effect" }, } }, + ["HeraldBonusAshEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (27-29)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (27-29)% increased Buff Effect" }, } }, + ["HeraldBonusAshEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (30-32)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (30-32)% increased Buff Effect" }, } }, + ["HeraldBonusAshEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (33-35)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (33-35)% increased Buff Effect" }, } }, + ["HeraldBonusAshEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (36-37)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (36-37)% increased Buff Effect" }, } }, + ["HeraldBonusAshEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (38-39)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (38-39)% increased Buff Effect" }, } }, + ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (33-35)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (33-35)% increased Buff Effect" }, } }, + ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (36-38)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (36-38)% increased Buff Effect" }, } }, + ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (39-41)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (39-41)% increased Buff Effect" }, } }, + ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (42-44)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (42-44)% increased Buff Effect" }, } }, + ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (45-46)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (45-46)% increased Buff Effect" }, } }, + ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (47-48)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (47-48)% increased Buff Effect" }, } }, ["HeraldBonusIceEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Ice has (15-17)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (15-17)% increased Buff Effect" }, } }, ["HeraldBonusIceEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Ice has (18-20)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (18-20)% increased Buff Effect" }, } }, ["HeraldBonusIceEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Ice has (21-23)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (21-23)% increased Buff Effect" }, } }, ["HeraldBonusIceEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Ice has (24-26)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (24-26)% increased Buff Effect" }, } }, ["HeraldBonusIceEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Ice has (27-28)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (27-28)% increased Buff Effect" }, } }, ["HeraldBonusIceEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Ice has (29-30)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (29-30)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (24-26)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (24-26)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (27-29)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (27-29)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (30-32)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (30-32)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (33-35)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (33-35)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (36-37)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (36-37)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (38-39)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (38-39)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (33-35)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (33-35)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (36-38)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (36-38)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (39-41)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (39-41)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (42-44)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (42-44)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (45-46)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (45-46)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (47-48)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (47-48)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (24-26)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (24-26)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (27-29)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (27-29)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (30-32)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (30-32)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (33-35)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (33-35)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (36-37)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (36-37)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (38-39)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (38-39)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (33-35)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (33-35)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (36-38)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (36-38)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (39-41)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (39-41)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (42-44)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (42-44)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (45-46)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (45-46)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (47-48)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (47-48)% increased Buff Effect" }, } }, ["HeraldBonusThunderEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Thunder has (15-17)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (15-17)% increased Buff Effect" }, } }, ["HeraldBonusThunderEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Thunder has (18-20)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (18-20)% increased Buff Effect" }, } }, ["HeraldBonusThunderEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Thunder has (21-23)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (21-23)% increased Buff Effect" }, } }, ["HeraldBonusThunderEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Thunder has (24-26)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (24-26)% increased Buff Effect" }, } }, ["HeraldBonusThunderEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Thunder has (27-28)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (27-28)% increased Buff Effect" }, } }, ["HeraldBonusThunderEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Thunder has (29-30)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (29-30)% increased Buff Effect" }, } }, - ["HeraldBonusThunderEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (24-26)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (24-26)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusThunderEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (27-29)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (27-29)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusThunderEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (30-32)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (30-32)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusThunderEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (33-35)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (33-35)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusThunderEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (36-37)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (36-37)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusThunderEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (38-39)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (38-39)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (33-35)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (33-35)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (36-38)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (36-38)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (39-41)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (39-41)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (42-44)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (42-44)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (45-46)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (45-46)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (47-48)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (47-48)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["HeraldBonusThunderEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (24-26)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (24-26)% increased Buff Effect" }, } }, + ["HeraldBonusThunderEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (27-29)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (27-29)% increased Buff Effect" }, } }, + ["HeraldBonusThunderEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (30-32)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (30-32)% increased Buff Effect" }, } }, + ["HeraldBonusThunderEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (33-35)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (33-35)% increased Buff Effect" }, } }, + ["HeraldBonusThunderEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (36-37)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (36-37)% increased Buff Effect" }, } }, + ["HeraldBonusThunderEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (38-39)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (38-39)% increased Buff Effect" }, } }, + ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (33-35)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (33-35)% increased Buff Effect" }, } }, + ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (36-38)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (36-38)% increased Buff Effect" }, } }, + ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (39-41)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (39-41)% increased Buff Effect" }, } }, + ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (42-44)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (42-44)% increased Buff Effect" }, } }, + ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (45-46)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (45-46)% increased Buff Effect" }, } }, + ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (47-48)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (47-48)% increased Buff Effect" }, } }, ["HeraldBonusPurityEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Purity has (15-17)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (15-17)% increased Buff Effect" }, } }, ["HeraldBonusPurityEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Purity has (18-20)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (18-20)% increased Buff Effect" }, } }, ["HeraldBonusPurityEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Purity has (21-23)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (21-23)% increased Buff Effect" }, } }, ["HeraldBonusPurityEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Purity has (24-26)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (24-26)% increased Buff Effect" }, } }, ["HeraldBonusPurityEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Purity has (27-28)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (27-28)% increased Buff Effect" }, } }, ["HeraldBonusPurityEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Purity has (29-30)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (29-30)% increased Buff Effect" }, } }, - ["HeraldBonusPurityEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (24-26)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (24-26)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusPurityEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (27-29)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (27-29)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusPurityEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (30-32)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (30-32)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusPurityEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (33-35)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (33-35)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusPurityEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (36-37)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (36-37)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusPurityEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (38-39)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (38-39)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (33-35)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (33-35)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (36-38)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (36-38)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (39-41)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (39-41)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (42-44)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (42-44)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (45-46)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (45-46)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (47-48)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (47-48)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["HeraldBonusPurityEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (24-26)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (24-26)% increased Buff Effect" }, } }, + ["HeraldBonusPurityEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (27-29)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (27-29)% increased Buff Effect" }, } }, + ["HeraldBonusPurityEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (30-32)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (30-32)% increased Buff Effect" }, } }, + ["HeraldBonusPurityEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (33-35)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (33-35)% increased Buff Effect" }, } }, + ["HeraldBonusPurityEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (36-37)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (36-37)% increased Buff Effect" }, } }, + ["HeraldBonusPurityEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (38-39)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (38-39)% increased Buff Effect" }, } }, + ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (33-35)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (33-35)% increased Buff Effect" }, } }, + ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (36-38)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (36-38)% increased Buff Effect" }, } }, + ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (39-41)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (39-41)% increased Buff Effect" }, } }, + ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (42-44)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (42-44)% increased Buff Effect" }, } }, + ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (45-46)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (45-46)% increased Buff Effect" }, } }, + ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (47-48)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (47-48)% increased Buff Effect" }, } }, ["HeraldBonusAgonyEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Agony has (15-17)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (15-17)% increased Buff Effect" }, } }, ["HeraldBonusAgonyEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Agony has (18-20)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (18-20)% increased Buff Effect" }, } }, ["HeraldBonusAgonyEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Agony has (21-23)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (21-23)% increased Buff Effect" }, } }, ["HeraldBonusAgonyEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Agony has (24-26)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (24-26)% increased Buff Effect" }, } }, ["HeraldBonusAgonyEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Agony has (27-28)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (27-28)% increased Buff Effect" }, } }, ["HeraldBonusAgonyEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Agony has (29-30)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (29-30)% increased Buff Effect" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (24-26)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (24-26)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (27-29)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (27-29)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (30-32)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (30-32)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (33-35)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (33-35)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (36-37)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (36-37)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (38-39)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (38-39)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (33-35)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (33-35)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (36-38)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (36-38)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (39-41)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (39-41)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (42-44)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (42-44)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (45-46)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (45-46)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (47-48)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (47-48)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (24-26)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (24-26)% increased Buff Effect" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (27-29)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (27-29)% increased Buff Effect" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (30-32)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (30-32)% increased Buff Effect" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (33-35)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (33-35)% increased Buff Effect" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (36-37)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (36-37)% increased Buff Effect" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (38-39)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (38-39)% increased Buff Effect" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (33-35)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (33-35)% increased Buff Effect" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (36-38)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (36-38)% increased Buff Effect" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (39-41)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (39-41)% increased Buff Effect" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (42-44)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (42-44)% increased Buff Effect" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (45-46)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (45-46)% increased Buff Effect" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (47-48)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (47-48)% increased Buff Effect" }, } }, ["IgniteProliferationEldritchImplicit1"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.2 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.2 metres" }, } }, ["IgniteProliferationEldritchImplicit2"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.3 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.3 metres" }, } }, ["IgniteProliferationEldritchImplicit3"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.4 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.4 metres" }, } }, ["IgniteProliferationEldritchImplicit4"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.5 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.5 metres" }, } }, ["IgniteProliferationEldritchImplicit5"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.6 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.6 metres" }, } }, ["IgniteProliferationEldritchImplicit6"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.7 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.7 metres" }, } }, - ["IgniteProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.5 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.5 metres" }, [4074358700] = { "" }, } }, - ["IgniteProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.6 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.6 metres" }, [4074358700] = { "" }, } }, - ["IgniteProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.7 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.7 metres" }, [4074358700] = { "" }, } }, - ["IgniteProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.8 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.8 metres" }, [4074358700] = { "" }, } }, - ["IgniteProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.9 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.9 metres" }, [4074358700] = { "" }, } }, - ["IgniteProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 2 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2 metres" }, [4074358700] = { "" }, } }, - ["IgniteProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 1.8 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.8 metres" }, [3283106665] = { "" }, } }, - ["IgniteProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 1.9 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.9 metres" }, [3283106665] = { "" }, } }, - ["IgniteProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2 metres" }, [3283106665] = { "" }, } }, - ["IgniteProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.1 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2.1 metres" }, [3283106665] = { "" }, } }, - ["IgniteProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.2 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2.2 metres" }, [3283106665] = { "" }, } }, - ["IgniteProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.3 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2.3 metres" }, [3283106665] = { "" }, } }, + ["IgniteProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.5 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.5 metres" }, } }, + ["IgniteProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.6 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.6 metres" }, } }, + ["IgniteProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.7 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.7 metres" }, } }, + ["IgniteProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.8 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.8 metres" }, } }, + ["IgniteProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.9 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.9 metres" }, } }, + ["IgniteProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 2 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2 metres" }, } }, + ["IgniteProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 1.8 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.8 metres" }, } }, + ["IgniteProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 1.9 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.9 metres" }, } }, + ["IgniteProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2 metres" }, } }, + ["IgniteProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.1 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2.1 metres" }, } }, + ["IgniteProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.2 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2.2 metres" }, } }, + ["IgniteProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.3 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2.3 metres" }, } }, ["FreezeProliferationEldritchImplicit1"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.2 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.2 metres" }, } }, ["FreezeProliferationEldritchImplicit2"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.3 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.3 metres" }, } }, ["FreezeProliferationEldritchImplicit3"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.4 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.4 metres" }, } }, ["FreezeProliferationEldritchImplicit4"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.5 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.5 metres" }, } }, ["FreezeProliferationEldritchImplicit5"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.6 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.6 metres" }, } }, ["FreezeProliferationEldritchImplicit6"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.7 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.7 metres" }, } }, - ["FreezeProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.5 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.5 metres" }, } }, - ["FreezeProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.6 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.6 metres" }, } }, - ["FreezeProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.7 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.7 metres" }, } }, - ["FreezeProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.8 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.8 metres" }, } }, - ["FreezeProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.9 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.9 metres" }, } }, - ["FreezeProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 2 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 2 metres" }, } }, - ["FreezeProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 1.8 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.8 metres" }, } }, - ["FreezeProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 1.9 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.9 metres" }, } }, - ["FreezeProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 2 metres" }, } }, - ["FreezeProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.1 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 2.1 metres" }, } }, - ["FreezeProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.2 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 2.2 metres" }, } }, - ["FreezeProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.3 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 2.3 metres" }, } }, + ["FreezeProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.5 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.5 metres" }, } }, + ["FreezeProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.6 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.6 metres" }, } }, + ["FreezeProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.7 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.7 metres" }, } }, + ["FreezeProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.8 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.8 metres" }, } }, + ["FreezeProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.9 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.9 metres" }, } }, + ["FreezeProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 2 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 2 metres" }, } }, + ["FreezeProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 1.8 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.8 metres" }, } }, + ["FreezeProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 1.9 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.9 metres" }, } }, + ["FreezeProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 2 metres" }, } }, + ["FreezeProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.1 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 2.1 metres" }, } }, + ["FreezeProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.2 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 2.2 metres" }, } }, + ["FreezeProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.3 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 2.3 metres" }, } }, ["ShockProliferationEldritchImplicit1"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.2 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.2 metres" }, } }, ["ShockProliferationEldritchImplicit2"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.3 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.3 metres" }, } }, ["ShockProliferationEldritchImplicit3"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.4 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.4 metres" }, } }, ["ShockProliferationEldritchImplicit4"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.5 metres" }, } }, ["ShockProliferationEldritchImplicit5"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.6 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.6 metres" }, } }, ["ShockProliferationEldritchImplicit6"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.7 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.7 metres" }, } }, - ["ShockProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.5 metres" }, [4074358700] = { "" }, } }, - ["ShockProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.6 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.6 metres" }, [4074358700] = { "" }, } }, - ["ShockProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.7 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.7 metres" }, [4074358700] = { "" }, } }, - ["ShockProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.8 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.8 metres" }, [4074358700] = { "" }, } }, - ["ShockProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.9 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.9 metres" }, [4074358700] = { "" }, } }, - ["ShockProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 2 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2 metres" }, [4074358700] = { "" }, } }, - ["ShockProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 1.8 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.8 metres" }, [3283106665] = { "" }, } }, - ["ShockProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 1.9 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.9 metres" }, [3283106665] = { "" }, } }, - ["ShockProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2 metres" }, [3283106665] = { "" }, } }, - ["ShockProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.1 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2.1 metres" }, [3283106665] = { "" }, } }, - ["ShockProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.2 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2.2 metres" }, [3283106665] = { "" }, } }, - ["ShockProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.3 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2.3 metres" }, [3283106665] = { "" }, } }, + ["ShockProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.5 metres" }, } }, + ["ShockProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.6 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.6 metres" }, } }, + ["ShockProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.7 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.7 metres" }, } }, + ["ShockProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.8 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.8 metres" }, } }, + ["ShockProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.9 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.9 metres" }, } }, + ["ShockProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 2 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2 metres" }, } }, + ["ShockProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 1.8 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.8 metres" }, } }, + ["ShockProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 1.9 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.9 metres" }, } }, + ["ShockProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2 metres" }, } }, + ["ShockProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.1 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2.1 metres" }, } }, + ["ShockProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.2 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2.2 metres" }, } }, + ["ShockProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.3 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2.3 metres" }, } }, ["StunThresholdReductionEldritchImplicit1"] = { type = "Exarch", affix = "", "(6-7)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(6-7)% reduced Enemy Stun Threshold" }, } }, ["StunThresholdReductionEldritchImplicit2"] = { type = "Exarch", affix = "", "(8-9)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(8-9)% reduced Enemy Stun Threshold" }, } }, ["StunThresholdReductionEldritchImplicit3"] = { type = "Exarch", affix = "", "(10-11)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(10-11)% reduced Enemy Stun Threshold" }, } }, ["StunThresholdReductionEldritchImplicit4"] = { type = "Exarch", affix = "", "(12-13)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(12-13)% reduced Enemy Stun Threshold" }, } }, ["StunThresholdReductionEldritchImplicit5"] = { type = "Exarch", affix = "", "(14-15)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(14-15)% reduced Enemy Stun Threshold" }, } }, ["StunThresholdReductionEldritchImplicit6"] = { type = "Exarch", affix = "", "(16-17)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(16-17)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (12-13)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(12-13)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(14-15)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(16-17)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(18-19)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(20-21)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(22-23)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(18-19)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(20-21)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(22-23)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(24-25)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(26-27)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(28-29)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (12-13)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(12-13)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(14-15)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(16-17)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(18-19)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(20-21)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(22-23)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(18-19)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(20-21)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(22-23)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(24-25)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(26-27)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(28-29)% reduced Enemy Stun Threshold" }, } }, ["MinionDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Minions deal (14-16)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (14-16)% increased Damage" }, } }, ["MinionDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Minions deal (17-19)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (17-19)% increased Damage" }, } }, ["MinionDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Minions deal (20-22)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-22)% increased Damage" }, } }, ["MinionDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Minions deal (23-25)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (23-25)% increased Damage" }, } }, ["MinionDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Minions deal (26-27)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (26-27)% increased Damage" }, } }, ["MinionDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Minions deal (28-29)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (28-29)% increased Damage" }, } }, - ["MinionDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (26-28)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (26-28)% increased Damage" }, } }, - ["MinionDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (29-31)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (29-31)% increased Damage" }, } }, - ["MinionDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (32-34)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (32-34)% increased Damage" }, } }, - ["MinionDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (35-37)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (35-37)% increased Damage" }, } }, - ["MinionDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (38-39)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (38-39)% increased Damage" }, } }, - ["MinionDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (40-41)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (40-41)% increased Damage" }, } }, - ["MinionDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (38-40)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (38-40)% increased Damage" }, } }, - ["MinionDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (41-43)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (41-43)% increased Damage" }, } }, - ["MinionDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (44-46)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (44-46)% increased Damage" }, } }, - ["MinionDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (47-49)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (47-49)% increased Damage" }, } }, - ["MinionDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (50-51)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (50-51)% increased Damage" }, } }, - ["MinionDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (52-53)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (52-53)% increased Damage" }, } }, + ["MinionDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (26-28)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (26-28)% increased Damage" }, } }, + ["MinionDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (29-31)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (29-31)% increased Damage" }, } }, + ["MinionDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (32-34)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (32-34)% increased Damage" }, } }, + ["MinionDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (35-37)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (35-37)% increased Damage" }, } }, + ["MinionDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (38-39)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (38-39)% increased Damage" }, } }, + ["MinionDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (40-41)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (40-41)% increased Damage" }, } }, + ["MinionDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (38-40)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (38-40)% increased Damage" }, } }, + ["MinionDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (41-43)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (41-43)% increased Damage" }, } }, + ["MinionDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (44-46)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (44-46)% increased Damage" }, } }, + ["MinionDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (47-49)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (47-49)% increased Damage" }, } }, + ["MinionDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (50-51)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (50-51)% increased Damage" }, } }, + ["MinionDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (52-53)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (52-53)% increased Damage" }, } }, ["TrapThrowSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "8% increased Trap Throwing Speed" }, } }, ["TrapThrowSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "9% increased Trap Throwing Speed" }, } }, ["TrapThrowSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "10% increased Trap Throwing Speed" }, } }, ["TrapThrowSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "11% increased Trap Throwing Speed" }, } }, ["TrapThrowSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "12% increased Trap Throwing Speed" }, } }, ["TrapThrowSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "13% increased Trap Throwing Speed" }, } }, - ["TrapThrowSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "12% increased Trap Throwing Speed" }, [4074358700] = { "" }, } }, - ["TrapThrowSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "13% increased Trap Throwing Speed" }, [4074358700] = { "" }, } }, - ["TrapThrowSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "14% increased Trap Throwing Speed" }, [4074358700] = { "" }, } }, - ["TrapThrowSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "15% increased Trap Throwing Speed" }, [4074358700] = { "" }, } }, - ["TrapThrowSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "16% increased Trap Throwing Speed" }, [4074358700] = { "" }, } }, - ["TrapThrowSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "17% increased Trap Throwing Speed" }, [4074358700] = { "" }, } }, - ["TrapThrowSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "16% increased Trap Throwing Speed" }, [3283106665] = { "" }, } }, - ["TrapThrowSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "17% increased Trap Throwing Speed" }, [3283106665] = { "" }, } }, - ["TrapThrowSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "18% increased Trap Throwing Speed" }, [3283106665] = { "" }, } }, - ["TrapThrowSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "19% increased Trap Throwing Speed" }, [3283106665] = { "" }, } }, - ["TrapThrowSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "20% increased Trap Throwing Speed" }, [3283106665] = { "" }, } }, - ["TrapThrowSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "21% increased Trap Throwing Speed" }, [3283106665] = { "" }, } }, + ["TrapThrowSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "12% increased Trap Throwing Speed" }, } }, + ["TrapThrowSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "13% increased Trap Throwing Speed" }, } }, + ["TrapThrowSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "14% increased Trap Throwing Speed" }, } }, + ["TrapThrowSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "15% increased Trap Throwing Speed" }, } }, + ["TrapThrowSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "16% increased Trap Throwing Speed" }, } }, + ["TrapThrowSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "17% increased Trap Throwing Speed" }, } }, + ["TrapThrowSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "16% increased Trap Throwing Speed" }, } }, + ["TrapThrowSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "17% increased Trap Throwing Speed" }, } }, + ["TrapThrowSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "18% increased Trap Throwing Speed" }, } }, + ["TrapThrowSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "19% increased Trap Throwing Speed" }, } }, + ["TrapThrowSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "20% increased Trap Throwing Speed" }, } }, + ["TrapThrowSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "21% increased Trap Throwing Speed" }, } }, ["MineLayingSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "8% increased Mine Throwing Speed" }, } }, ["MineLayingSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "9% increased Mine Throwing Speed" }, } }, ["MineLayingSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "10% increased Mine Throwing Speed" }, } }, ["MineLayingSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "11% increased Mine Throwing Speed" }, } }, ["MineLayingSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "12% increased Mine Throwing Speed" }, } }, ["MineLayingSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "13% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "12% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "13% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "14% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "15% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "16% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "17% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "16% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "17% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "18% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "19% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "20% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "21% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "12% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "13% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "14% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "15% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "16% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "17% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "16% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "17% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "18% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "19% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "20% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "21% increased Mine Throwing Speed" }, } }, ["ExtinguishOnHitEldritchImplicit1"] = { type = "Exarch", affix = "", "15% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "15% chance to Extinguish Enemies on Hit" }, } }, ["ExtinguishOnHitEldritchImplicit2"] = { type = "Exarch", affix = "", "20% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "20% chance to Extinguish Enemies on Hit" }, } }, ["ExtinguishOnHitEldritchImplicit3"] = { type = "Exarch", affix = "", "25% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "25% chance to Extinguish Enemies on Hit" }, } }, ["ExtinguishOnHitEldritchImplicit4"] = { type = "Exarch", affix = "", "30% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "30% chance to Extinguish Enemies on Hit" }, } }, ["ExtinguishOnHitEldritchImplicit5"] = { type = "Exarch", affix = "", "35% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "35% chance to Extinguish Enemies on Hit" }, } }, ["ExtinguishOnHitEldritchImplicit6"] = { type = "Exarch", affix = "", "40% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "40% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "45% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "50% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "55% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "60% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "65% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "70% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "75% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "80% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "85% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "90% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "95% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 100% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "100% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [49183689] = { "45% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [49183689] = { "50% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [49183689] = { "55% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [49183689] = { "60% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [49183689] = { "65% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [49183689] = { "70% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [49183689] = { "75% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [49183689] = { "80% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [49183689] = { "85% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [49183689] = { "90% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [49183689] = { "95% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 100% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [49183689] = { "100% chance to Extinguish Enemies on Hit" }, } }, ["MaximumColdResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, ["MaximumColdResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, ["MaximumColdResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, ["MaximumColdResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, ["MaximumColdResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, ["MaximumColdResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, - ["MaximumColdResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, - ["MaximumColdResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, - ["MaximumColdResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, - ["MaximumColdResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, - ["MaximumColdResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, - ["MaximumColdResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, - ["MaximumColdResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, - ["MaximumColdResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, - ["MaximumColdResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, - ["MaximumColdResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, - ["MaximumColdResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, - ["MaximumColdResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, + ["MaximumColdResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, } }, ["DamagePerFrenzyChargeEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "4% increased Damage per Frenzy Charge" }, } }, ["DamagePerFrenzyChargeEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "4% increased Damage per Frenzy Charge" }, } }, ["DamagePerFrenzyChargeEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "5% increased Damage per Frenzy Charge" }, } }, ["DamagePerFrenzyChargeEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "5% increased Damage per Frenzy Charge" }, } }, ["DamagePerFrenzyChargeEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "6% increased Damage per Frenzy Charge" }, } }, ["DamagePerFrenzyChargeEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "6% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "5% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "5% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "6% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "6% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "7% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "7% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "6% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "6% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "7% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "7% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "8% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "8% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "5% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "5% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "6% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "6% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "7% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "7% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "6% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "6% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "7% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "7% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "8% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "8% increased Damage per Frenzy Charge" }, } }, ["StrikeSkillsAdditionalTargetEldritchImplicit1"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } }, ["StrikeSkillsAdditionalTargetEldritchImplicit2"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } }, ["StrikeSkillsAdditionalTargetEldritchImplicit3"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } }, ["StrikeSkillsAdditionalTargetEldritchImplicit4"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } }, ["StrikeSkillsAdditionalTargetEldritchImplicit5"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } }, ["StrikeSkillsAdditionalTargetEldritchImplicit6"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 4 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 4 additional nearby Enemies" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 4 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 4 additional nearby Enemies" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 4 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 4 additional nearby Enemies" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 4 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 4 additional nearby Enemies" }, } }, ["RageOnHitImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, ["RageOnHitImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, ["RageOnHitImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, ["RageOnHitImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, ["RageOnHitImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, ["RageOnHitImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, - ["RageOnHitImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } }, - ["RageOnHitImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } }, - ["RageOnHitImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } }, - ["RageOnHitImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } }, - ["RageOnHitImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } }, - ["RageOnHitImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } }, - ["RageOnHitImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } }, - ["RageOnHitImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } }, - ["RageOnHitImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } }, - ["RageOnHitImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } }, - ["RageOnHitImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } }, - ["RageOnHitImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } }, + ["RageOnHitImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, + ["RageOnHitImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, + ["RageOnHitImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, + ["RageOnHitImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, + ["RageOnHitImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, + ["RageOnHitImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, + ["RageOnHitImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, + ["RageOnHitImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, + ["RageOnHitImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, + ["RageOnHitImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, + ["RageOnHitImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, + ["RageOnHitImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, ["RageOnAttackHitEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 1 Rage on Attack Hit" }, } }, ["RageOnAttackHitEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 1 Rage on Attack Hit" }, } }, ["RageOnAttackHitEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 1 Rage on Attack Hit" }, } }, ["RageOnAttackHitEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 1 Rage on Attack Hit" }, } }, ["RageOnAttackHitEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain 2 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 2 Rage on Attack Hit" }, } }, ["RageOnAttackHitEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain 2 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 2 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 2 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 2 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 2 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 2 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 4 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 4 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 4 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 4 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 2 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 2 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 2 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 2 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 3 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 3 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [2676601655] = { "Gain 3 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [2676601655] = { "Gain 3 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, tradeHashes = { [2676601655] = { "Gain 3 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, tradeHashes = { [2676601655] = { "Gain 3 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 4 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, tradeHashes = { [2676601655] = { "Gain 4 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 4 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, tradeHashes = { [2676601655] = { "Gain 4 Rage on Attack Hit" }, } }, ["ChanceToIntimidateOnHitEldritchImplicit1"] = { type = "Exarch", affix = "", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "15% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, ["ChanceToIntimidateOnHitEldritchImplicit2"] = { type = "Exarch", affix = "", "20% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "20% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, ["ChanceToIntimidateOnHitEldritchImplicit3"] = { type = "Exarch", affix = "", "25% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "25% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, ["ChanceToIntimidateOnHitEldritchImplicit4"] = { type = "Exarch", affix = "", "30% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "30% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, ["ChanceToIntimidateOnHitEldritchImplicit5"] = { type = "Exarch", affix = "", "35% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "35% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, ["ChanceToIntimidateOnHitEldritchImplicit6"] = { type = "Exarch", affix = "", "40% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "40% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [78985352] = { "45% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "50% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "55% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "60% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "65% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "70% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [78985352] = { "75% chance to Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [78985352] = { "80% chance to Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [78985352] = { "85% chance to Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [78985352] = { "90% chance to Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [78985352] = { "95% chance to Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [78985352] = { "Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [78985352] = { "45% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "50% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "55% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "60% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "65% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "70% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [78985352] = { "75% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [78985352] = { "80% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [78985352] = { "85% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [78985352] = { "90% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [78985352] = { "95% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [78985352] = { "Intimidate Enemies for 4 seconds on Hit" }, } }, ["ChanceToUnnerveOnHitEldritchImplicit1"] = { type = "Exarch", affix = "", "15% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "15% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, ["ChanceToUnnerveOnHitEldritchImplicit2"] = { type = "Exarch", affix = "", "20% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "20% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, ["ChanceToUnnerveOnHitEldritchImplicit3"] = { type = "Exarch", affix = "", "25% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "25% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, ["ChanceToUnnerveOnHitEldritchImplicit4"] = { type = "Exarch", affix = "", "30% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "30% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, ["ChanceToUnnerveOnHitEldritchImplicit5"] = { type = "Exarch", affix = "", "35% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "35% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, ["ChanceToUnnerveOnHitEldritchImplicit6"] = { type = "Exarch", affix = "", "40% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "40% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [763611529] = { "45% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "50% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "55% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "60% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "65% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "70% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [763611529] = { "75% chance to Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [763611529] = { "80% chance to Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [763611529] = { "85% chance to Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [763611529] = { "90% chance to Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [763611529] = { "95% chance to Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [763611529] = { "Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [763611529] = { "45% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "50% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "55% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "60% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "65% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "70% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [763611529] = { "75% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [763611529] = { "80% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [763611529] = { "85% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [763611529] = { "90% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [763611529] = { "95% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [763611529] = { "Unnerve Enemies for 4 seconds on Hit" }, } }, ["ChanceToSuppressSpellsEldritchImplicit1"] = { type = "Eater", affix = "", "+5% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+5% chance to Suppress Spell Damage" }, } }, ["ChanceToSuppressSpellsEldritchImplicit2"] = { type = "Eater", affix = "", "+6% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+6% chance to Suppress Spell Damage" }, } }, ["ChanceToSuppressSpellsEldritchImplicit3"] = { type = "Eater", affix = "", "+7% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+7% chance to Suppress Spell Damage" }, } }, ["ChanceToSuppressSpellsEldritchImplicit4"] = { type = "Eater", affix = "", "+8% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+8% chance to Suppress Spell Damage" }, } }, ["ChanceToSuppressSpellsEldritchImplicit5"] = { type = "Eater", affix = "", "+9% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+9% chance to Suppress Spell Damage" }, } }, ["ChanceToSuppressSpellsEldritchImplicit6"] = { type = "Eater", affix = "", "+10% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+10% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +7% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+7% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } }, - ["ChanceToSuppressSpellsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +8% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+8% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } }, - ["ChanceToSuppressSpellsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +9% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+9% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } }, - ["ChanceToSuppressSpellsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +10% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+10% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } }, - ["ChanceToSuppressSpellsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +11% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+11% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } }, - ["ChanceToSuppressSpellsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +12% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+12% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } }, - ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +10% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+10% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } }, - ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +11% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+11% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } }, - ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +12% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+12% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } }, - ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +13% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+13% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } }, - ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +14% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+14% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } }, - ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +15% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+15% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } }, + ["ChanceToSuppressSpellsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +7% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+7% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +8% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+8% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +9% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+9% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +10% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+10% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +11% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+11% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +12% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+12% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +10% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+10% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +11% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+11% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +12% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+12% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +13% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+13% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +14% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+14% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +15% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+15% chance to Suppress Spell Damage" }, } }, ["EvasionRatingHelmetBootsEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(33-35)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, ["EvasionRatingHelmetBootsEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(36-38)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, ["EvasionRatingHelmetBootsEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(39-41)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, ["EvasionRatingHelmetBootsEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(42-44)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, ["EvasionRatingHelmetBootsEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(45-47)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, ["EvasionRatingHelmetBootsEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(48-50)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(42-44)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(45-47)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(48-50)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(51-53)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(54-57)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(58-61)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(51-53)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(54-56)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(57-59)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(60-62)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(63-66)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(67-70)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(42-44)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(45-47)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(48-50)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(51-53)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(54-57)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(58-61)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(51-53)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(54-56)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(57-59)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(60-62)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(63-66)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(67-70)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, ["FireExposureEffectOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -11% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -11% to Fire Resistance" }, } }, ["FireExposureEffectOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -12% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -12% to Fire Resistance" }, } }, ["FireExposureEffectOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -13% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -13% to Fire Resistance" }, } }, ["FireExposureEffectOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -14% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -14% to Fire Resistance" }, } }, ["FireExposureEffectOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -15% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -15% to Fire Resistance" }, } }, ["FireExposureEffectOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -16% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -16% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -14% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -14% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -15% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -15% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -16% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -16% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -17% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -17% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -18% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -18% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -19% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -19% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -17% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -17% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -18% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -18% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -19% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -19% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -20% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -20% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -21% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -21% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -22% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -22% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -14% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -14% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -15% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -15% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -16% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -16% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -17% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -17% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -18% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -18% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -19% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -19% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -17% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -17% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -18% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -18% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -19% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -19% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -20% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -20% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -21% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -21% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -22% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -22% to Fire Resistance" }, } }, ["ColdExposureEffectOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -11% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -11% to Cold Resistance" }, } }, ["ColdExposureEffectOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -12% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -12% to Cold Resistance" }, } }, ["ColdExposureEffectOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -13% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -13% to Cold Resistance" }, } }, ["ColdExposureEffectOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -14% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -14% to Cold Resistance" }, } }, ["ColdExposureEffectOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -15% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -15% to Cold Resistance" }, } }, ["ColdExposureEffectOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -16% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -16% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -14% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -14% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -15% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -15% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -16% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -16% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -17% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -17% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -18% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -18% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -19% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -19% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -17% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -17% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -18% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -18% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -19% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -19% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -20% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -20% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -21% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -21% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -22% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -22% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -14% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -14% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -15% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -15% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -16% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -16% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -17% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -17% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -18% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -18% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -19% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -19% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -17% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -17% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -18% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -18% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -19% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -19% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -20% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -20% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -21% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -21% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -22% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -22% to Cold Resistance" }, } }, ["LightningExposureEffectOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -11% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -11% to Lightning Resistance" }, } }, ["LightningExposureEffectOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -12% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -12% to Lightning Resistance" }, } }, ["LightningExposureEffectOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -13% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -13% to Lightning Resistance" }, } }, ["LightningExposureEffectOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance" }, } }, ["LightningExposureEffectOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance" }, } }, ["LightningExposureEffectOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance" }, } }, - ["LightningExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance" }, [4074358700] = { "" }, } }, - ["LightningExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance" }, [4074358700] = { "" }, } }, - ["LightningExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance" }, [4074358700] = { "" }, } }, - ["LightningExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance" }, [4074358700] = { "" }, } }, - ["LightningExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance" }, [4074358700] = { "" }, } }, - ["LightningExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance" }, [4074358700] = { "" }, } }, - ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance" }, [3283106665] = { "" }, } }, - ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance" }, [3283106665] = { "" }, } }, - ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance" }, [3283106665] = { "" }, } }, - ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -20% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -20% to Lightning Resistance" }, [3283106665] = { "" }, } }, - ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -21% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -21% to Lightning Resistance" }, [3283106665] = { "" }, } }, - ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -22% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -22% to Lightning Resistance" }, [3283106665] = { "" }, } }, + ["LightningExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance" }, } }, + ["LightningExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance" }, } }, + ["LightningExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance" }, } }, + ["LightningExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance" }, } }, + ["LightningExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance" }, } }, + ["LightningExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance" }, } }, + ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance" }, } }, + ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance" }, } }, + ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance" }, } }, + ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -20% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -20% to Lightning Resistance" }, } }, + ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -21% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -21% to Lightning Resistance" }, } }, + ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -22% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -22% to Lightning Resistance" }, } }, ["ArmourPenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Hits have (30-34)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (30-34)% chance to ignore Enemy Physical Damage Reduction" }, } }, ["ArmourPenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Hits have (35-38)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (35-38)% chance to ignore Enemy Physical Damage Reduction" }, } }, ["ArmourPenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Hits have (39-42)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (39-42)% chance to ignore Enemy Physical Damage Reduction" }, } }, ["ArmourPenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction" }, } }, ["ArmourPenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction" }, } }, ["ArmourPenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Hits have (49-50)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (49-50)% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["ArmourPenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } }, - ["ArmourPenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } }, - ["ArmourPenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (49-52)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (49-52)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } }, - ["ArmourPenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } }, - ["ArmourPenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } }, - ["ArmourPenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } }, - ["ArmourPenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } }, - ["ArmourPenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } }, - ["ArmourPenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } }, - ["ArmourPenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (64-68)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (64-68)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } }, - ["ArmourPenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (69-73)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (69-73)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } }, - ["ArmourPenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (74-78)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (74-78)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } }, + ["ArmourPenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["ArmourPenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["ArmourPenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (49-52)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (49-52)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["ArmourPenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["ArmourPenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["ArmourPenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["ArmourPenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["ArmourPenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["ArmourPenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["ArmourPenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (64-68)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (64-68)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["ArmourPenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (69-73)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (69-73)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["ArmourPenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (74-78)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (74-78)% chance to ignore Enemy Physical Damage Reduction" }, } }, ["WitherExpireSpeedEldritchImplicit1"] = { type = "Eater", affix = "", "Withered you Inflict expires (10-12)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (10-12)% slower" }, } }, ["WitherExpireSpeedEldritchImplicit2"] = { type = "Eater", affix = "", "Withered you Inflict expires (13-15)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (13-15)% slower" }, } }, ["WitherExpireSpeedEldritchImplicit3"] = { type = "Eater", affix = "", "Withered you Inflict expires (16-18)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (16-18)% slower" }, } }, ["WitherExpireSpeedEldritchImplicit4"] = { type = "Eater", affix = "", "Withered you Inflict expires (19-20)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (19-20)% slower" }, } }, ["WitherExpireSpeedEldritchImplicit5"] = { type = "Eater", affix = "", "Withered you Inflict expires (21-22)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (21-22)% slower" }, } }, ["WitherExpireSpeedEldritchImplicit6"] = { type = "Eater", affix = "", "Withered you Inflict expires (23-24)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (23-24)% slower" }, } }, - ["WitherExpireSpeedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (19-21)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (19-21)% slower" }, [4074358700] = { "" }, } }, - ["WitherExpireSpeedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (22-24)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (22-24)% slower" }, [4074358700] = { "" }, } }, - ["WitherExpireSpeedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (25-27)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (25-27)% slower" }, [4074358700] = { "" }, } }, - ["WitherExpireSpeedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (28-29)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (28-29)% slower" }, [4074358700] = { "" }, } }, - ["WitherExpireSpeedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (30-31)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (30-31)% slower" }, [4074358700] = { "" }, } }, - ["WitherExpireSpeedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (32-33)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (32-33)% slower" }, [4074358700] = { "" }, } }, - ["WitherExpireSpeedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (28-30)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (28-30)% slower" }, [3283106665] = { "" }, } }, - ["WitherExpireSpeedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (31-33)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (31-33)% slower" }, [3283106665] = { "" }, } }, - ["WitherExpireSpeedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (34-36)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (34-36)% slower" }, [3283106665] = { "" }, } }, - ["WitherExpireSpeedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (37-39)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (37-39)% slower" }, [3283106665] = { "" }, } }, - ["WitherExpireSpeedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (40-42)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (40-42)% slower" }, [3283106665] = { "" }, } }, - ["WitherExpireSpeedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (43-45)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (43-45)% slower" }, [3283106665] = { "" }, } }, + ["WitherExpireSpeedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (19-21)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (19-21)% slower" }, } }, + ["WitherExpireSpeedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (22-24)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (22-24)% slower" }, } }, + ["WitherExpireSpeedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (25-27)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (25-27)% slower" }, } }, + ["WitherExpireSpeedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (28-29)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (28-29)% slower" }, } }, + ["WitherExpireSpeedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (30-31)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (30-31)% slower" }, } }, + ["WitherExpireSpeedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (32-33)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (32-33)% slower" }, } }, + ["WitherExpireSpeedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (28-30)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (28-30)% slower" }, } }, + ["WitherExpireSpeedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (31-33)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (31-33)% slower" }, } }, + ["WitherExpireSpeedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (34-36)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (34-36)% slower" }, } }, + ["WitherExpireSpeedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (37-39)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (37-39)% slower" }, } }, + ["WitherExpireSpeedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (40-42)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (40-42)% slower" }, } }, + ["WitherExpireSpeedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (43-45)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (43-45)% slower" }, } }, ["ConvertPhysicalToFireEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "10% of Physical Damage Converted to Fire Damage" }, } }, ["ConvertPhysicalToFireEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "15% of Physical Damage Converted to Fire Damage" }, } }, ["ConvertPhysicalToFireEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "20% of Physical Damage Converted to Fire Damage" }, } }, ["ConvertPhysicalToFireEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "25% of Physical Damage Converted to Fire Damage" }, } }, ["ConvertPhysicalToFireEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "30% of Physical Damage Converted to Fire Damage" }, } }, ["ConvertPhysicalToFireEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "35% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "25% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } }, - ["ConvertPhysicalToFireEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "30% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } }, - ["ConvertPhysicalToFireEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "35% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } }, - ["ConvertPhysicalToFireEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "40% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } }, - ["ConvertPhysicalToFireEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "45% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } }, - ["ConvertPhysicalToFireEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "50% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } }, - ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "40% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } }, - ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "45% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } }, - ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "50% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } }, - ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "55% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } }, - ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "60% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } }, - ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "65% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } }, + ["ConvertPhysicalToFireEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "25% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "30% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "35% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "40% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "45% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "50% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "40% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "45% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "50% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "55% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "60% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "65% of Physical Damage Converted to Fire Damage" }, } }, ["ConvertPhysicalToColdEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "10% of Physical Damage Converted to Cold Damage" }, } }, ["ConvertPhysicalToColdEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "15% of Physical Damage Converted to Cold Damage" }, } }, ["ConvertPhysicalToColdEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "20% of Physical Damage Converted to Cold Damage" }, } }, ["ConvertPhysicalToColdEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, } }, ["ConvertPhysicalToColdEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "30% of Physical Damage Converted to Cold Damage" }, } }, ["ConvertPhysicalToColdEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "35% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } }, - ["ConvertPhysicalToColdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "30% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } }, - ["ConvertPhysicalToColdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "35% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } }, - ["ConvertPhysicalToColdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "40% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } }, - ["ConvertPhysicalToColdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "45% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } }, - ["ConvertPhysicalToColdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "50% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } }, - ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "40% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } }, - ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "45% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } }, - ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "50% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } }, - ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "55% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } }, - ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "60% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } }, - ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "65% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } }, + ["ConvertPhysicalToColdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToColdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "30% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToColdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "35% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToColdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "40% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToColdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "45% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToColdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "50% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "40% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "45% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "50% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "55% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "60% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "65% of Physical Damage Converted to Cold Damage" }, } }, ["ConvertPhysicalToLightningEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "10% of Physical Damage Converted to Lightning Damage" }, } }, ["ConvertPhysicalToLightningEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "15% of Physical Damage Converted to Lightning Damage" }, } }, ["ConvertPhysicalToLightningEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "20% of Physical Damage Converted to Lightning Damage" }, } }, ["ConvertPhysicalToLightningEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "25% of Physical Damage Converted to Lightning Damage" }, } }, ["ConvertPhysicalToLightningEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "30% of Physical Damage Converted to Lightning Damage" }, } }, ["ConvertPhysicalToLightningEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "35% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "25% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "30% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "35% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "40% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "45% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "40% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "45% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "55% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "60% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "65% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3240769289] = { "25% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3240769289] = { "30% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3240769289] = { "35% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3240769289] = { "40% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3240769289] = { "45% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3240769289] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3240769289] = { "40% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3240769289] = { "45% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3240769289] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3240769289] = { "55% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3240769289] = { "60% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3240769289] = { "65% of Physical Damage Converted to Lightning Damage" }, } }, ["ConvertPhysicalToChaosEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "10% of Physical Damage Converted to Chaos Damage" }, } }, ["ConvertPhysicalToChaosEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "15% of Physical Damage Converted to Chaos Damage" }, } }, ["ConvertPhysicalToChaosEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "20% of Physical Damage Converted to Chaos Damage" }, } }, ["ConvertPhysicalToChaosEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, ["ConvertPhysicalToChaosEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "30% of Physical Damage Converted to Chaos Damage" }, } }, ["ConvertPhysicalToChaosEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "35% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "30% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "35% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "40% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "45% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "50% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "40% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "45% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "50% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "55% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "60% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "65% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [490098963] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [490098963] = { "30% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [490098963] = { "35% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [490098963] = { "40% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [490098963] = { "45% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [490098963] = { "50% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [490098963] = { "40% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [490098963] = { "45% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [490098963] = { "50% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [490098963] = { "55% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [490098963] = { "60% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [490098963] = { "65% of Physical Damage Converted to Chaos Damage" }, } }, ["FireDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.2% of Fire Damage Leeched as Life" }, } }, ["FireDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.3% of Fire Damage Leeched as Life" }, } }, ["FireDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.4% of Fire Damage Leeched as Life" }, } }, ["FireDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.5% of Fire Damage Leeched as Life" }, } }, ["FireDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.6% of Fire Damage Leeched as Life" }, } }, ["FireDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.7% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.4% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.5% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.6% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.7% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.8% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.9% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "0.6% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "0.7% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "0.8% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "0.9% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "1% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "1.1% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.4% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.5% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.6% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.7% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.8% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.9% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.6% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.7% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.8% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.9% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "1% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "1.1% of Fire Damage Leeched as Life" }, } }, ["ColdDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.2% of Cold Damage Leeched as Life" }, } }, ["ColdDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.3% of Cold Damage Leeched as Life" }, } }, ["ColdDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.4% of Cold Damage Leeched as Life" }, } }, ["ColdDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.5% of Cold Damage Leeched as Life" }, } }, ["ColdDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.6% of Cold Damage Leeched as Life" }, } }, ["ColdDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.7% of Cold Damage Leeched as Life" }, } }, - ["ColdDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.4% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["ColdDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.5% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["ColdDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.6% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["ColdDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.7% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["ColdDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.8% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["ColdDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.9% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.6% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.7% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.8% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.9% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "1% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "1.1% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } }, + ["ColdDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.4% of Cold Damage Leeched as Life" }, } }, + ["ColdDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.5% of Cold Damage Leeched as Life" }, } }, + ["ColdDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.6% of Cold Damage Leeched as Life" }, } }, + ["ColdDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.7% of Cold Damage Leeched as Life" }, } }, + ["ColdDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.8% of Cold Damage Leeched as Life" }, } }, + ["ColdDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.9% of Cold Damage Leeched as Life" }, } }, + ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.6% of Cold Damage Leeched as Life" }, } }, + ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.7% of Cold Damage Leeched as Life" }, } }, + ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.8% of Cold Damage Leeched as Life" }, } }, + ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.9% of Cold Damage Leeched as Life" }, } }, + ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "1% of Cold Damage Leeched as Life" }, } }, + ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "1.1% of Cold Damage Leeched as Life" }, } }, ["LightningDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.2% of Lightning Damage Leeched as Life" }, } }, ["LightningDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.3% of Lightning Damage Leeched as Life" }, } }, ["LightningDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.4% of Lightning Damage Leeched as Life" }, } }, ["LightningDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.5% of Lightning Damage Leeched as Life" }, } }, ["LightningDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.6% of Lightning Damage Leeched as Life" }, } }, ["LightningDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.7% of Lightning Damage Leeched as Life" }, } }, - ["LightningDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.4% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["LightningDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.5% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["LightningDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.6% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["LightningDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.7% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["LightningDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.8% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["LightningDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.9% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.6% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.7% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.8% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.9% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "1% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "1.1% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } }, + ["LightningDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.4% of Lightning Damage Leeched as Life" }, } }, + ["LightningDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.5% of Lightning Damage Leeched as Life" }, } }, + ["LightningDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.6% of Lightning Damage Leeched as Life" }, } }, + ["LightningDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.7% of Lightning Damage Leeched as Life" }, } }, + ["LightningDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.8% of Lightning Damage Leeched as Life" }, } }, + ["LightningDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.9% of Lightning Damage Leeched as Life" }, } }, + ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.6% of Lightning Damage Leeched as Life" }, } }, + ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.7% of Lightning Damage Leeched as Life" }, } }, + ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.8% of Lightning Damage Leeched as Life" }, } }, + ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.9% of Lightning Damage Leeched as Life" }, } }, + ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "1% of Lightning Damage Leeched as Life" }, } }, + ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "1.1% of Lightning Damage Leeched as Life" }, } }, ["PhysicalDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.2% of Physical Damage Leeched as Life" }, } }, ["PhysicalDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.3% of Physical Damage Leeched as Life" }, } }, ["PhysicalDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.4% of Physical Damage Leeched as Life" }, } }, ["PhysicalDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.5% of Physical Damage Leeched as Life" }, } }, ["PhysicalDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.6% of Physical Damage Leeched as Life" }, } }, ["PhysicalDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.7% of Physical Damage Leeched as Life" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.4% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.5% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.6% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.7% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.8% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.9% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.6% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.7% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.8% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.9% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "1% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "1.1% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.4% of Physical Damage Leeched as Life" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.5% of Physical Damage Leeched as Life" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.6% of Physical Damage Leeched as Life" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.7% of Physical Damage Leeched as Life" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.8% of Physical Damage Leeched as Life" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.9% of Physical Damage Leeched as Life" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.6% of Physical Damage Leeched as Life" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.7% of Physical Damage Leeched as Life" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.8% of Physical Damage Leeched as Life" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.9% of Physical Damage Leeched as Life" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "1% of Physical Damage Leeched as Life" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "1.1% of Physical Damage Leeched as Life" }, } }, ["ChaosDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.2% of Chaos Damage Leeched as Life" }, } }, ["ChaosDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.3% of Chaos Damage Leeched as Life" }, } }, ["ChaosDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.4% of Chaos Damage Leeched as Life" }, } }, ["ChaosDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.5% of Chaos Damage Leeched as Life" }, } }, ["ChaosDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.6% of Chaos Damage Leeched as Life" }, } }, ["ChaosDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.7% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.4% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.5% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.6% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.7% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.8% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.9% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "0.6% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "0.7% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "0.8% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "0.9% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "1% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "1.1% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.4% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.5% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.6% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.7% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.8% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.9% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.6% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.7% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.8% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.9% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "1% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "1.1% of Chaos Damage Leeched as Life" }, } }, ["DamagePer100STREldritchImplicit1"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "3% increased Damage per 100 Strength" }, } }, ["DamagePer100STREldritchImplicit2"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "3% increased Damage per 100 Strength" }, } }, ["DamagePer100STREldritchImplicit3"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "3% increased Damage per 100 Strength" }, } }, ["DamagePer100STREldritchImplicit4"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "3% increased Damage per 100 Strength" }, } }, ["DamagePer100STREldritchImplicit5"] = { type = "Eater", affix = "", "4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "4% increased Damage per 100 Strength" }, } }, ["DamagePer100STREldritchImplicit6"] = { type = "Eater", affix = "", "4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "4% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "4% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "4% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "4% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "4% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "6% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "6% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [4274080377] = { "4% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4274080377] = { "4% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4274080377] = { "4% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4274080377] = { "4% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4274080377] = { "5% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4274080377] = { "5% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [4274080377] = { "5% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [4274080377] = { "5% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [4274080377] = { "5% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [4274080377] = { "5% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [4274080377] = { "6% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [4274080377] = { "6% increased Damage per 100 Strength" }, } }, ["DamagePer100DEXEldritchImplicit1"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "3% increased Damage per 100 Dexterity" }, } }, ["DamagePer100DEXEldritchImplicit2"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "3% increased Damage per 100 Dexterity" }, } }, ["DamagePer100DEXEldritchImplicit3"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "3% increased Damage per 100 Dexterity" }, } }, ["DamagePer100DEXEldritchImplicit4"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "3% increased Damage per 100 Dexterity" }, } }, ["DamagePer100DEXEldritchImplicit5"] = { type = "Eater", affix = "", "4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "4% increased Damage per 100 Dexterity" }, } }, ["DamagePer100DEXEldritchImplicit6"] = { type = "Eater", affix = "", "4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "4% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "4% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "4% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "4% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "4% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "6% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "6% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [342670903] = { "4% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [342670903] = { "4% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [342670903] = { "4% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [342670903] = { "4% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [342670903] = { "5% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [342670903] = { "5% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [342670903] = { "5% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [342670903] = { "5% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [342670903] = { "5% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [342670903] = { "5% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [342670903] = { "6% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [342670903] = { "6% increased Damage per 100 Dexterity" }, } }, ["DamagePer100INTEldritchImplicit1"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "3% increased Damage per 100 Intelligence" }, } }, ["DamagePer100INTEldritchImplicit2"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "3% increased Damage per 100 Intelligence" }, } }, ["DamagePer100INTEldritchImplicit3"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "3% increased Damage per 100 Intelligence" }, } }, ["DamagePer100INTEldritchImplicit4"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "3% increased Damage per 100 Intelligence" }, } }, ["DamagePer100INTEldritchImplicit5"] = { type = "Eater", affix = "", "4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, } }, ["DamagePer100INTEldritchImplicit6"] = { type = "Eater", affix = "", "4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, } }, - ["DamagePer100INTEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } }, - ["DamagePer100INTEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } }, - ["DamagePer100INTEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } }, - ["DamagePer100INTEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } }, - ["DamagePer100INTEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } }, - ["DamagePer100INTEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } }, - ["DamagePer100INTEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } }, - ["DamagePer100INTEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } }, - ["DamagePer100INTEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } }, - ["DamagePer100INTEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } }, - ["DamagePer100INTEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "6% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } }, - ["DamagePer100INTEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "6% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } }, + ["DamagePer100INTEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, } }, + ["DamagePer100INTEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, } }, + ["DamagePer100INTEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, } }, + ["DamagePer100INTEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, } }, + ["DamagePer100INTEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, } }, + ["DamagePer100INTEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, } }, + ["DamagePer100INTEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, } }, + ["DamagePer100INTEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, } }, + ["DamagePer100INTEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, } }, + ["DamagePer100INTEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, } }, + ["DamagePer100INTEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "6% increased Damage per 100 Intelligence" }, } }, + ["DamagePer100INTEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "6% increased Damage per 100 Intelligence" }, } }, ["BlindEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(6-7)% increased Blind Effect" }, } }, ["BlindEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(8-9)% increased Blind Effect" }, } }, ["BlindEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(10-11)% increased Blind Effect" }, } }, ["BlindEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(12-13)% increased Blind Effect" }, } }, ["BlindEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(14-15)% increased Blind Effect" }, } }, ["BlindEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(16-17)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(12-13)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(14-15)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(16-17)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(18-19)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(20-21)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(22-23)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(18-19)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(20-21)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(22-23)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(24-25)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(26-27)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(28-29)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(12-13)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(14-15)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(16-17)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(18-19)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(20-21)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(22-23)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(18-19)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(20-21)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(22-23)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(24-25)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(26-27)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(28-29)% increased Blind Effect" }, } }, ["ExertedAttackDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Exerted Attacks deal (20-22)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (20-22)% increased Damage" }, } }, ["ExertedAttackDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Exerted Attacks deal (23-25)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (23-25)% increased Damage" }, } }, ["ExertedAttackDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Exerted Attacks deal (26-28)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (26-28)% increased Damage" }, } }, ["ExertedAttackDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Exerted Attacks deal (29-31)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (29-31)% increased Damage" }, } }, ["ExertedAttackDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Exerted Attacks deal (32-33)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (32-33)% increased Damage" }, } }, ["ExertedAttackDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Exerted Attacks deal (34-35)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (34-35)% increased Damage" }, } }, - ["ExertedAttackDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (26-28)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (26-28)% increased Damage" }, [4074358700] = { "" }, } }, - ["ExertedAttackDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (29-31)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (29-31)% increased Damage" }, [4074358700] = { "" }, } }, - ["ExertedAttackDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (32-34)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (32-34)% increased Damage" }, [4074358700] = { "" }, } }, - ["ExertedAttackDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (35-37)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (35-37)% increased Damage" }, [4074358700] = { "" }, } }, - ["ExertedAttackDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (38-39)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (38-39)% increased Damage" }, [4074358700] = { "" }, } }, - ["ExertedAttackDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (40-41)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (40-41)% increased Damage" }, [4074358700] = { "" }, } }, - ["ExertedAttackDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (32-34)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (32-34)% increased Damage" }, [3283106665] = { "" }, } }, - ["ExertedAttackDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (35-37)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (35-37)% increased Damage" }, [3283106665] = { "" }, } }, - ["ExertedAttackDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (38-40)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (38-40)% increased Damage" }, [3283106665] = { "" }, } }, - ["ExertedAttackDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (41-43)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (41-43)% increased Damage" }, [3283106665] = { "" }, } }, - ["ExertedAttackDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (44-45)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (44-45)% increased Damage" }, [3283106665] = { "" }, } }, - ["ExertedAttackDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (46-47)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (46-47)% increased Damage" }, [3283106665] = { "" }, } }, + ["ExertedAttackDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (26-28)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (26-28)% increased Damage" }, } }, + ["ExertedAttackDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (29-31)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (29-31)% increased Damage" }, } }, + ["ExertedAttackDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (32-34)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (32-34)% increased Damage" }, } }, + ["ExertedAttackDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (35-37)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (35-37)% increased Damage" }, } }, + ["ExertedAttackDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (38-39)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (38-39)% increased Damage" }, } }, + ["ExertedAttackDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (40-41)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (40-41)% increased Damage" }, } }, + ["ExertedAttackDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (32-34)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (32-34)% increased Damage" }, } }, + ["ExertedAttackDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (35-37)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (35-37)% increased Damage" }, } }, + ["ExertedAttackDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (38-40)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (38-40)% increased Damage" }, } }, + ["ExertedAttackDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (41-43)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (41-43)% increased Damage" }, } }, + ["ExertedAttackDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (44-45)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (44-45)% increased Damage" }, } }, + ["ExertedAttackDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (46-47)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (46-47)% increased Damage" }, } }, ["GlobalMaimOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks have 15% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 15% chance to Maim on Hit" }, } }, ["GlobalMaimOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks have 20% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 20% chance to Maim on Hit" }, } }, ["GlobalMaimOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks have 25% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 25% chance to Maim on Hit" }, } }, ["GlobalMaimOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks have 30% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 30% chance to Maim on Hit" }, } }, ["GlobalMaimOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks have 35% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 35% chance to Maim on Hit" }, } }, ["GlobalMaimOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks have 40% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 40% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 45% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 45% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 50% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 50% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 55% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 55% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 60% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 60% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 65% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 65% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 70% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 70% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 75% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks have 75% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 80% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks have 80% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 85% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks have 85% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 90% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks have 90% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 95% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks have 95% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks always Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks always Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 45% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 45% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 50% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 50% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 55% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 55% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 60% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 60% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 65% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 65% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 70% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 70% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 75% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 75% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 80% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 80% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 85% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 85% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 90% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 90% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 95% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 95% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks always Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks always Maim on Hit" }, } }, ["SpellsHinderOnHitChanceEldritchImplicit1"] = { type = "Eater", affix = "", "15% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "15% chance to Hinder Enemies on Hit with Spells" }, } }, ["SpellsHinderOnHitChanceEldritchImplicit2"] = { type = "Eater", affix = "", "20% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "20% chance to Hinder Enemies on Hit with Spells" }, } }, ["SpellsHinderOnHitChanceEldritchImplicit3"] = { type = "Eater", affix = "", "25% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "25% chance to Hinder Enemies on Hit with Spells" }, } }, ["SpellsHinderOnHitChanceEldritchImplicit4"] = { type = "Eater", affix = "", "30% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "30% chance to Hinder Enemies on Hit with Spells" }, } }, ["SpellsHinderOnHitChanceEldritchImplicit5"] = { type = "Eater", affix = "", "35% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "35% chance to Hinder Enemies on Hit with Spells" }, } }, ["SpellsHinderOnHitChanceEldritchImplicit6"] = { type = "Eater", affix = "", "40% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "40% chance to Hinder Enemies on Hit with Spells" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "45% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "50% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "55% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "60% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "65% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "70% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "75% chance to Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "80% chance to Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "85% chance to Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "90% chance to Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "95% chance to Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "45% chance to Hinder Enemies on Hit with Spells" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "50% chance to Hinder Enemies on Hit with Spells" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "55% chance to Hinder Enemies on Hit with Spells" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "60% chance to Hinder Enemies on Hit with Spells" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "65% chance to Hinder Enemies on Hit with Spells" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "70% chance to Hinder Enemies on Hit with Spells" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "75% chance to Hinder Enemies on Hit with Spells" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "80% chance to Hinder Enemies on Hit with Spells" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "85% chance to Hinder Enemies on Hit with Spells" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "90% chance to Hinder Enemies on Hit with Spells" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "95% chance to Hinder Enemies on Hit with Spells" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "Hinder Enemies on Hit with Spells" }, } }, ["IncreasedAccuracyPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(9-10)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(9-10)% increased Global Accuracy Rating" }, } }, ["IncreasedAccuracyPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(11-12)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(11-12)% increased Global Accuracy Rating" }, } }, ["IncreasedAccuracyPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(13-14)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(13-14)% increased Global Accuracy Rating" }, } }, ["IncreasedAccuracyPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(15-16)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(15-16)% increased Global Accuracy Rating" }, } }, ["IncreasedAccuracyPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(17-18)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(17-18)% increased Global Accuracy Rating" }, } }, ["IncreasedAccuracyPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(19-20)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(19-20)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (13-14)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(13-14)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (15-16)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(15-16)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(17-18)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(19-20)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(21-22)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(23-24)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (17-18)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(17-18)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(19-20)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(21-22)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(23-24)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(25-26)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(27-28)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (13-14)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(13-14)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (15-16)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(15-16)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(17-18)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(19-20)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(21-22)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(23-24)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (17-18)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(17-18)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(19-20)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(21-22)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(23-24)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(25-26)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(27-28)% increased Global Accuracy Rating" }, } }, ["MarkEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(6-7)% increased Effect of your Marks" }, } }, ["MarkEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(8-9)% increased Effect of your Marks" }, } }, ["MarkEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(10-11)% increased Effect of your Marks" }, } }, ["MarkEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(12-13)% increased Effect of your Marks" }, } }, ["MarkEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(14-15)% increased Effect of your Marks" }, } }, ["MarkEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(16-17)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(12-13)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(14-15)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(16-17)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(18-19)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(20-21)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(22-23)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(18-19)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(20-21)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(22-23)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(24-25)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(26-27)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(28-29)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [803185500] = { "(12-13)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [803185500] = { "(14-15)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [803185500] = { "(16-17)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [803185500] = { "(18-19)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [803185500] = { "(20-21)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [803185500] = { "(22-23)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [803185500] = { "(18-19)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [803185500] = { "(20-21)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, tradeHashes = { [803185500] = { "(22-23)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, tradeHashes = { [803185500] = { "(24-25)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, tradeHashes = { [803185500] = { "(26-27)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, tradeHashes = { [803185500] = { "(28-29)% increased Effect of your Marks" }, } }, ["FlatAccuracyPerFrenzyChargeEldritchImplicit1"] = { type = "Eater", affix = "", "+(43-45) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(43-45) to Accuracy Rating per Frenzy Charge" }, } }, ["FlatAccuracyPerFrenzyChargeEldritchImplicit2"] = { type = "Eater", affix = "", "+(46-48) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(46-48) to Accuracy Rating per Frenzy Charge" }, } }, ["FlatAccuracyPerFrenzyChargeEldritchImplicit3"] = { type = "Eater", affix = "", "+(49-51) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(49-51) to Accuracy Rating per Frenzy Charge" }, } }, ["FlatAccuracyPerFrenzyChargeEldritchImplicit4"] = { type = "Eater", affix = "", "+(52-54) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(52-54) to Accuracy Rating per Frenzy Charge" }, } }, ["FlatAccuracyPerFrenzyChargeEldritchImplicit5"] = { type = "Eater", affix = "", "+(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(55-57) to Accuracy Rating per Frenzy Charge" }, } }, ["FlatAccuracyPerFrenzyChargeEldritchImplicit6"] = { type = "Eater", affix = "", "+(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(58-60) to Accuracy Rating per Frenzy Charge" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(49-51) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(49-51) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(52-54) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(52-54) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(55-57) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(58-60) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(61-63) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(61-63) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(64-66) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(64-66) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(55-57) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(58-60) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(61-63) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(61-63) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(64-66) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(64-66) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(67-69) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(67-69) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(70-72) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(70-72) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(49-51) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(49-51) to Accuracy Rating per Frenzy Charge" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(52-54) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(52-54) to Accuracy Rating per Frenzy Charge" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(55-57) to Accuracy Rating per Frenzy Charge" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(58-60) to Accuracy Rating per Frenzy Charge" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(61-63) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(61-63) to Accuracy Rating per Frenzy Charge" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(64-66) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(64-66) to Accuracy Rating per Frenzy Charge" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(55-57) to Accuracy Rating per Frenzy Charge" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(58-60) to Accuracy Rating per Frenzy Charge" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(61-63) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(61-63) to Accuracy Rating per Frenzy Charge" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(64-66) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(64-66) to Accuracy Rating per Frenzy Charge" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(67-69) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(67-69) to Accuracy Rating per Frenzy Charge" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(70-72) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(70-72) to Accuracy Rating per Frenzy Charge" }, } }, ["AdditionalPierceEldritchImplicit1"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, ["AdditionalPierceEldritchImplicit2"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, ["AdditionalPierceEldritchImplicit3"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, ["AdditionalPierceEldritchImplicit4"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, ["AdditionalPierceEldritchImplicit5"] = { type = "Eater", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, ["AdditionalPierceEldritchImplicit6"] = { type = "Eater", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, - ["AdditionalPierceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, - ["AdditionalPierceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, - ["AdditionalPierceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, - ["AdditionalPierceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, - ["AdditionalPierceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } }, - ["AdditionalPierceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } }, - ["AdditionalPierceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } }, - ["AdditionalPierceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } }, - ["AdditionalPierceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } }, - ["AdditionalPierceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } }, - ["AdditionalPierceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 4 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 4 additional Targets" }, } }, - ["AdditionalPierceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 4 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 4 additional Targets" }, } }, + ["AdditionalPierceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, + ["AdditionalPierceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, + ["AdditionalPierceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, + ["AdditionalPierceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, + ["AdditionalPierceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } }, + ["AdditionalPierceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } }, + ["AdditionalPierceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } }, + ["AdditionalPierceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } }, + ["AdditionalPierceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } }, + ["AdditionalPierceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } }, + ["AdditionalPierceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 4 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 4 additional Targets" }, } }, + ["AdditionalPierceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 4 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 4 additional Targets" }, } }, ["PoisonOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "5% chance to Poison on Hit" }, } }, ["PoisonOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "10% chance to Poison on Hit" }, } }, ["PoisonOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "15% chance to Poison on Hit" }, } }, ["PoisonOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "20% chance to Poison on Hit" }, } }, ["PoisonOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "25% chance to Poison on Hit" }, } }, ["PoisonOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "30% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "15% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "20% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "25% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "30% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "35% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "40% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "25% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "30% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "35% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "40% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "45% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "50% chance to Poison on Hit" }, } }, - ["ChanceToBleedEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks have 5% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 5% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks have 10% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 10% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks have 15% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 15% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks have 20% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 20% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks have 30% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 30% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 15% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 15% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 20% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 20% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 25% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 30% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 30% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 35% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 35% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 40% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 40% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 25% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 30% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 30% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 35% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 35% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 40% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 40% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 45% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 45% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 50% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 50% chance to cause Bleeding" }, } }, + ["PoisonOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "15% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "20% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "25% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "30% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "35% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "40% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "25% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "30% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "35% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "40% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "45% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "50% chance to Poison on Hit" }, } }, + ["ChanceToBleedEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks have 5% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have 5% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks have 10% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have 10% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks have 15% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have 15% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks have 20% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have 20% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have 25% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks have 30% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have 30% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 15% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have 15% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 20% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have 20% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 25% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have 25% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 30% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have 30% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 35% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have 35% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 40% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have 40% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 25% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have 25% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 30% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have 30% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 35% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have 35% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 40% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have 40% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 45% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have 45% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 50% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have 50% chance to cause Bleeding" }, } }, ["ChanceToAggravateBleedEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "5% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, ["ChanceToAggravateBleedEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "10% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, ["ChanceToAggravateBleedEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "15% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, ["ChanceToAggravateBleedEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "20% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, ["ChanceToAggravateBleedEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "25% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, ["ChanceToAggravateBleedEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "30% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "15% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "20% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "25% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "30% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "35% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "40% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "25% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "30% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "35% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "40% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "45% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "50% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "15% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "20% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "25% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "30% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "35% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "40% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "25% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "30% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "35% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "40% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "45% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "50% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, ["AttackImpaleChanceEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "5% chance to Impale Enemies on Hit with Attacks" }, } }, ["AttackImpaleChanceEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "10% chance to Impale Enemies on Hit with Attacks" }, } }, ["AttackImpaleChanceEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "15% chance to Impale Enemies on Hit with Attacks" }, } }, ["AttackImpaleChanceEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "20% chance to Impale Enemies on Hit with Attacks" }, } }, ["AttackImpaleChanceEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "25% chance to Impale Enemies on Hit with Attacks" }, } }, ["AttackImpaleChanceEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "30% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "15% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "20% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "25% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "30% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "35% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "40% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "25% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "30% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "35% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "40% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "45% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "50% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3739863694] = { "15% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [3739863694] = { "20% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [3739863694] = { "25% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [3739863694] = { "30% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [3739863694] = { "35% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [3739863694] = { "40% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3739863694] = { "25% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3739863694] = { "30% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, tradeHashes = { [3739863694] = { "35% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, tradeHashes = { [3739863694] = { "40% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, tradeHashes = { [3739863694] = { "45% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, tradeHashes = { [3739863694] = { "50% chance to Impale Enemies on Hit with Attacks" }, } }, ["IncreasedCastSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "8% increased Cast Speed" }, } }, ["IncreasedCastSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "9% increased Cast Speed" }, } }, ["IncreasedCastSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% increased Cast Speed" }, } }, ["IncreasedCastSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "11% increased Cast Speed" }, } }, ["IncreasedCastSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "12% increased Cast Speed" }, } }, ["IncreasedCastSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "13% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "12% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "13% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "14% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "15% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "16% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "17% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "16% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "17% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "18% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "19% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "20% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "21% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "12% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "13% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "14% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "15% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "16% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "17% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "16% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "17% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "18% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "19% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "20% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "21% increased Cast Speed" }, } }, ["SpellCriticalStrikeChanceEldritchImplicit1"] = { type = "Exarch", affix = "", "(28-30)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(28-30)% increased Spell Critical Strike Chance" }, } }, ["SpellCriticalStrikeChanceEldritchImplicit2"] = { type = "Exarch", affix = "", "(31-33)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(31-33)% increased Spell Critical Strike Chance" }, } }, ["SpellCriticalStrikeChanceEldritchImplicit3"] = { type = "Exarch", affix = "", "(34-36)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(34-36)% increased Spell Critical Strike Chance" }, } }, ["SpellCriticalStrikeChanceEldritchImplicit4"] = { type = "Exarch", affix = "", "(37-39)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(37-39)% increased Spell Critical Strike Chance" }, } }, ["SpellCriticalStrikeChanceEldritchImplicit5"] = { type = "Exarch", affix = "", "(40-42)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(40-42)% increased Spell Critical Strike Chance" }, } }, ["SpellCriticalStrikeChanceEldritchImplicit6"] = { type = "Exarch", affix = "", "(43-45)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(43-45)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(40-42)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(43-45)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(46-48)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(49-51)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(52-54)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(55-57)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(52-54)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(55-57)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(58-60)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(61-63)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(64-66)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(67-69)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(40-42)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(43-45)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(46-48)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(49-51)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(52-54)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(55-57)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(52-54)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(55-57)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(58-60)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(61-63)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(64-66)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(67-69)% increased Spell Critical Strike Chance" }, } }, ["SpellAddedFireDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (10-13) to (20-23) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (10-13) to (20-23) Fire Damage to Spells" }, } }, ["SpellAddedFireDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (10-14) to (21-25) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (10-14) to (21-25) Fire Damage to Spells" }, } }, ["SpellAddedFireDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (11-15) to (24-27) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (11-15) to (24-27) Fire Damage to Spells" }, } }, ["SpellAddedFireDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (13-16) to (26-30) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-16) to (26-30) Fire Damage to Spells" }, } }, ["SpellAddedFireDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (14-18) to (29-33) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (14-18) to (29-33) Fire Damage to Spells" }, } }, ["SpellAddedFireDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (15-20) to (32-36) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (15-20) to (32-36) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (26-30) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-16) to (26-30) Fire Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedFireDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (29-33) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (14-18) to (29-33) Fire Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedFireDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (32-36) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (15-20) to (32-36) Fire Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedFireDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (17-22) to (34-40) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (17-22) to (34-40) Fire Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedFireDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (19-24) to (38-43) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (19-24) to (38-43) Fire Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedFireDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-27) to (41-48) Fire Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedFireDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (17-22) to (34-40) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (17-22) to (34-40) Fire Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedFireDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (19-24) to (38-43) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (19-24) to (38-43) Fire Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedFireDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-27) to (41-48) Fire Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedFireDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (23-31) to (47-55) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (23-31) to (47-55) Fire Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedFireDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (27-35) to (54-63) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (27-35) to (54-63) Fire Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedFireDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (31-40) to (63-72) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (31-40) to (63-72) Fire Damage to Spells" }, [3283106665] = { "" }, } }, + ["SpellAddedFireDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (26-30) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-16) to (26-30) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (29-33) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (14-18) to (29-33) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (32-36) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (15-20) to (32-36) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (17-22) to (34-40) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (17-22) to (34-40) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (19-24) to (38-43) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (19-24) to (38-43) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-27) to (41-48) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (17-22) to (34-40) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (17-22) to (34-40) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (19-24) to (38-43) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (19-24) to (38-43) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-27) to (41-48) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (23-31) to (47-55) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (23-31) to (47-55) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (27-35) to (54-63) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (27-35) to (54-63) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (31-40) to (63-72) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (31-40) to (63-72) Fire Damage to Spells" }, } }, ["SpellAddedColdDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (9-11) to (17-20) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (9-11) to (17-20) Cold Damage to Spells" }, } }, ["SpellAddedColdDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (10-12) to (19-22) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (10-12) to (19-22) Cold Damage to Spells" }, } }, ["SpellAddedColdDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (10-14) to (21-24) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (10-14) to (21-24) Cold Damage to Spells" }, } }, ["SpellAddedColdDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (11-15) to (23-27) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (11-15) to (23-27) Cold Damage to Spells" }, } }, ["SpellAddedColdDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (13-16) to (25-30) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (13-16) to (25-30) Cold Damage to Spells" }, } }, ["SpellAddedColdDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (14-18) to (28-32) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (14-18) to (28-32) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-27) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (11-15) to (23-27) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-30) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (13-16) to (25-30) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (28-32) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (14-18) to (28-32) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (30-36) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (15-20) to (30-36) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (17-21) to (34-39) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (17-21) to (34-39) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (18-24) to (37-43) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (18-24) to (37-43) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-20) to (30-36) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (15-20) to (30-36) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (17-21) to (34-39) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (17-21) to (34-39) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-43) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (18-24) to (37-43) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (21-27) to (42-50) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (21-27) to (42-50) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (24-32) to (48-57) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (24-32) to (48-57) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (28-36) to (56-65) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (28-36) to (56-65) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-27) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (11-15) to (23-27) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-30) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (13-16) to (25-30) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (28-32) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (14-18) to (28-32) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (30-36) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (15-20) to (30-36) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (17-21) to (34-39) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (17-21) to (34-39) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (18-24) to (37-43) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (18-24) to (37-43) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-20) to (30-36) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (15-20) to (30-36) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (17-21) to (34-39) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (17-21) to (34-39) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-43) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (18-24) to (37-43) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (21-27) to (42-50) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (21-27) to (42-50) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (24-32) to (48-57) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (24-32) to (48-57) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (28-36) to (56-65) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (28-36) to (56-65) Cold Damage to Spells" }, } }, ["SpellAddedLightningDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (2-4) to (34-36) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-4) to (34-36) Lightning Damage to Spells" }, } }, ["SpellAddedLightningDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (2-4) to (37-40) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-4) to (37-40) Lightning Damage to Spells" }, } }, ["SpellAddedLightningDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (2-4) to (41-44) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-4) to (41-44) Lightning Damage to Spells" }, } }, ["SpellAddedLightningDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (2-5) to (45-48) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (45-48) Lightning Damage to Spells" }, } }, ["SpellAddedLightningDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (2-5) to (50-53) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (50-53) Lightning Damage to Spells" }, } }, ["SpellAddedLightningDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (2-6) to (54-59) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (54-59) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (45-48) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (45-48) Lightning Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedLightningDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (50-53) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (50-53) Lightning Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedLightningDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-6) to (54-59) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (54-59) Lightning Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedLightningDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-6) to (60-64) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-6) to (60-64) Lightning Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedLightningDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-7) to (66-70) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-7) to (66-70) Lightning Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedLightningDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-8) to (72-78) Lightning Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-6) to (60-64) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-6) to (60-64) Lightning Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-7) to (66-70) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-7) to (66-70) Lightning Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-8) to (72-78) Lightning Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (4-8) to (83-90) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-8) to (83-90) Lightning Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (4-10) to (96-103) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-10) to (96-103) Lightning Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (5-11) to (110-119) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-11) to (110-119) Lightning Damage to Spells" }, [3283106665] = { "" }, } }, + ["SpellAddedLightningDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (45-48) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (45-48) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (50-53) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (50-53) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-6) to (54-59) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (54-59) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-6) to (60-64) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-6) to (60-64) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-7) to (66-70) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-7) to (66-70) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-8) to (72-78) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-6) to (60-64) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-6) to (60-64) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-7) to (66-70) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-7) to (66-70) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-8) to (72-78) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (4-8) to (83-90) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-8) to (83-90) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (4-10) to (96-103) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-10) to (96-103) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (5-11) to (110-119) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-11) to (110-119) Lightning Damage to Spells" }, } }, ["SpellAddedPhysicalDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (8-10) to (15-18) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (8-10) to (15-18) Physical Damage to Spells" }, } }, ["SpellAddedPhysicalDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (8-11) to (17-20) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (8-11) to (17-20) Physical Damage to Spells" }, } }, ["SpellAddedPhysicalDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (9-12) to (19-22) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (9-12) to (19-22) Physical Damage to Spells" }, } }, ["SpellAddedPhysicalDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (10-13) to (21-24) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (10-13) to (21-24) Physical Damage to Spells" }, } }, ["SpellAddedPhysicalDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (11-15) to (23-26) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (11-15) to (23-26) Physical Damage to Spells" }, } }, ["SpellAddedPhysicalDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (13-16) to (25-29) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (13-16) to (25-29) Physical Damage to Spells" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (21-24) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (10-13) to (21-24) Physical Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-26) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (11-15) to (23-26) Physical Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-29) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (13-16) to (25-29) Physical Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-18) to (28-32) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (13-18) to (28-32) Physical Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-19) to (31-35) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (15-19) to (31-35) Physical Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (16-22) to (33-39) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (16-22) to (33-39) Physical Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (13-18) to (28-32) Physical Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-19) to (31-35) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (15-19) to (31-35) Physical Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-22) to (33-39) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (16-22) to (33-39) Physical Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (19-25) to (39-44) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (19-25) to (39-44) Physical Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (22-28) to (45-51) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (22-28) to (45-51) Physical Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (25-33) to (51-59) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (25-33) to (51-59) Physical Damage to Spells" }, [3283106665] = { "" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (21-24) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (10-13) to (21-24) Physical Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-26) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (11-15) to (23-26) Physical Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-29) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (13-16) to (25-29) Physical Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-18) to (28-32) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (13-18) to (28-32) Physical Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-19) to (31-35) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (15-19) to (31-35) Physical Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (16-22) to (33-39) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (16-22) to (33-39) Physical Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (13-18) to (28-32) Physical Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-19) to (31-35) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (15-19) to (31-35) Physical Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-22) to (33-39) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (16-22) to (33-39) Physical Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (19-25) to (39-44) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (19-25) to (39-44) Physical Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (22-28) to (45-51) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (22-28) to (45-51) Physical Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (25-33) to (51-59) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (25-33) to (51-59) Physical Damage to Spells" }, } }, ["SpellAddedChaosDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (7-10) to (15-17) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (7-10) to (15-17) Chaos Damage to Spells" }, } }, ["SpellAddedChaosDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (8-10) to (16-19) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (8-10) to (16-19) Chaos Damage to Spells" }, } }, ["SpellAddedChaosDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (9-11) to (18-20) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (9-11) to (18-20) Chaos Damage to Spells" }, } }, ["SpellAddedChaosDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (10-13) to (20-23) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (10-13) to (20-23) Chaos Damage to Spells" }, } }, ["SpellAddedChaosDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (10-14) to (21-25) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (10-14) to (21-25) Chaos Damage to Spells" }, } }, ["SpellAddedChaosDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (11-15) to (24-27) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (11-15) to (24-27) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (20-23) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (10-13) to (20-23) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-14) to (21-25) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (10-14) to (21-25) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (24-27) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (11-15) to (24-27) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (26-30) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (13-16) to (26-30) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (29-33) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (14-18) to (29-33) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (32-36) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (15-20) to (32-36) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-16) to (26-30) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (13-16) to (26-30) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (14-18) to (29-33) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (14-18) to (29-33) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-20) to (32-36) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (15-20) to (32-36) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-23) to (36-41) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (18-23) to (36-41) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (20-27) to (41-48) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (20-27) to (41-48) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (23-31) to (47-55) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (23-31) to (47-55) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (20-23) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (10-13) to (20-23) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-14) to (21-25) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (10-14) to (21-25) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (24-27) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (11-15) to (24-27) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (26-30) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (13-16) to (26-30) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (29-33) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (14-18) to (29-33) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (32-36) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (15-20) to (32-36) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-16) to (26-30) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (13-16) to (26-30) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (14-18) to (29-33) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (14-18) to (29-33) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-20) to (32-36) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (15-20) to (32-36) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-23) to (36-41) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (18-23) to (36-41) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (20-27) to (41-48) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (20-27) to (41-48) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (23-31) to (47-55) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (23-31) to (47-55) Chaos Damage to Spells" }, } }, ["FireDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(7-8)% of Fire Damage taken Recouped as Life" }, } }, ["FireDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(9-10)% of Fire Damage taken Recouped as Life" }, } }, ["FireDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(11-12)% of Fire Damage taken Recouped as Life" }, } }, ["FireDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(13-14)% of Fire Damage taken Recouped as Life" }, } }, ["FireDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(15-16)% of Fire Damage taken Recouped as Life" }, } }, ["FireDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(17-18)% of Fire Damage taken Recouped as Life" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(13-14)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(15-16)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(17-18)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(19-20)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(21-22)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(23-24)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(19-20)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(21-22)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(23-24)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(25-26)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(27-28)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(29-30)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(13-14)% of Fire Damage taken Recouped as Life" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(15-16)% of Fire Damage taken Recouped as Life" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(17-18)% of Fire Damage taken Recouped as Life" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(19-20)% of Fire Damage taken Recouped as Life" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(21-22)% of Fire Damage taken Recouped as Life" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(23-24)% of Fire Damage taken Recouped as Life" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(19-20)% of Fire Damage taken Recouped as Life" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(21-22)% of Fire Damage taken Recouped as Life" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(23-24)% of Fire Damage taken Recouped as Life" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(25-26)% of Fire Damage taken Recouped as Life" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(27-28)% of Fire Damage taken Recouped as Life" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(29-30)% of Fire Damage taken Recouped as Life" }, } }, ["ColdDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(7-8)% of Cold Damage taken Recouped as Life" }, } }, ["ColdDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(9-10)% of Cold Damage taken Recouped as Life" }, } }, ["ColdDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(11-12)% of Cold Damage taken Recouped as Life" }, } }, ["ColdDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(13-14)% of Cold Damage taken Recouped as Life" }, } }, ["ColdDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(15-16)% of Cold Damage taken Recouped as Life" }, } }, ["ColdDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(17-18)% of Cold Damage taken Recouped as Life" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(13-14)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(15-16)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(17-18)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(19-20)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(21-22)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(23-24)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(19-20)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(21-22)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(23-24)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(25-26)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(27-28)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(29-30)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(13-14)% of Cold Damage taken Recouped as Life" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(15-16)% of Cold Damage taken Recouped as Life" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(17-18)% of Cold Damage taken Recouped as Life" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(19-20)% of Cold Damage taken Recouped as Life" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(21-22)% of Cold Damage taken Recouped as Life" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(23-24)% of Cold Damage taken Recouped as Life" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(19-20)% of Cold Damage taken Recouped as Life" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(21-22)% of Cold Damage taken Recouped as Life" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(23-24)% of Cold Damage taken Recouped as Life" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(25-26)% of Cold Damage taken Recouped as Life" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(27-28)% of Cold Damage taken Recouped as Life" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(29-30)% of Cold Damage taken Recouped as Life" }, } }, ["LightningDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(7-8)% of Lightning Damage taken Recouped as Life" }, } }, ["LightningDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(9-10)% of Lightning Damage taken Recouped as Life" }, } }, ["LightningDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(11-12)% of Lightning Damage taken Recouped as Life" }, } }, ["LightningDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(13-14)% of Lightning Damage taken Recouped as Life" }, } }, ["LightningDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(15-16)% of Lightning Damage taken Recouped as Life" }, } }, ["LightningDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(17-18)% of Lightning Damage taken Recouped as Life" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(13-14)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(15-16)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(17-18)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(19-20)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(21-22)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(23-24)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(19-20)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(21-22)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(23-24)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(25-26)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(27-28)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(29-30)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(13-14)% of Lightning Damage taken Recouped as Life" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(15-16)% of Lightning Damage taken Recouped as Life" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(17-18)% of Lightning Damage taken Recouped as Life" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(19-20)% of Lightning Damage taken Recouped as Life" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(21-22)% of Lightning Damage taken Recouped as Life" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(23-24)% of Lightning Damage taken Recouped as Life" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(19-20)% of Lightning Damage taken Recouped as Life" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(21-22)% of Lightning Damage taken Recouped as Life" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(23-24)% of Lightning Damage taken Recouped as Life" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(25-26)% of Lightning Damage taken Recouped as Life" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(27-28)% of Lightning Damage taken Recouped as Life" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(29-30)% of Lightning Damage taken Recouped as Life" }, } }, ["PhysicalDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(7-8)% of Physical Damage taken Recouped as Life" }, } }, ["PhysicalDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(9-10)% of Physical Damage taken Recouped as Life" }, } }, ["PhysicalDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(11-12)% of Physical Damage taken Recouped as Life" }, } }, ["PhysicalDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(13-14)% of Physical Damage taken Recouped as Life" }, } }, ["PhysicalDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(15-16)% of Physical Damage taken Recouped as Life" }, } }, ["PhysicalDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(17-18)% of Physical Damage taken Recouped as Life" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(13-14)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(15-16)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(17-18)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(19-20)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(21-22)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(23-24)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(19-20)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(21-22)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(23-24)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(25-26)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(27-28)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(29-30)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(13-14)% of Physical Damage taken Recouped as Life" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(15-16)% of Physical Damage taken Recouped as Life" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(17-18)% of Physical Damage taken Recouped as Life" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(19-20)% of Physical Damage taken Recouped as Life" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(21-22)% of Physical Damage taken Recouped as Life" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(23-24)% of Physical Damage taken Recouped as Life" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(19-20)% of Physical Damage taken Recouped as Life" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(21-22)% of Physical Damage taken Recouped as Life" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(23-24)% of Physical Damage taken Recouped as Life" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(25-26)% of Physical Damage taken Recouped as Life" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(27-28)% of Physical Damage taken Recouped as Life" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(29-30)% of Physical Damage taken Recouped as Life" }, } }, ["CurseEffectFlammabilityEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "10% increased Flammability Curse Effect" }, } }, ["CurseEffectFlammabilityEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "11% increased Flammability Curse Effect" }, } }, ["CurseEffectFlammabilityEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "12% increased Flammability Curse Effect" }, } }, ["CurseEffectFlammabilityEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "13% increased Flammability Curse Effect" }, } }, ["CurseEffectFlammabilityEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "14% increased Flammability Curse Effect" }, } }, ["CurseEffectFlammabilityEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "15% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "14% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "15% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "16% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "17% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "18% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "19% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "18% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "19% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "20% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "21% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "22% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "23% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [282417259] = { "14% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [282417259] = { "15% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [282417259] = { "16% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [282417259] = { "17% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [282417259] = { "18% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [282417259] = { "19% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [282417259] = { "18% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [282417259] = { "19% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [282417259] = { "20% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [282417259] = { "21% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [282417259] = { "22% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [282417259] = { "23% increased Flammability Curse Effect" }, } }, ["CurseEffectFrostbiteEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "10% increased Frostbite Curse Effect" }, } }, ["CurseEffectFrostbiteEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "11% increased Frostbite Curse Effect" }, } }, ["CurseEffectFrostbiteEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "12% increased Frostbite Curse Effect" }, } }, ["CurseEffectFrostbiteEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "13% increased Frostbite Curse Effect" }, } }, ["CurseEffectFrostbiteEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "14% increased Frostbite Curse Effect" }, } }, ["CurseEffectFrostbiteEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "15% increased Frostbite Curse Effect" }, } }, - ["CurseEffectFrostbiteEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "14% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectFrostbiteEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "15% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectFrostbiteEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "16% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectFrostbiteEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "17% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectFrostbiteEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "18% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectFrostbiteEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "19% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "18% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "19% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "20% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "21% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "22% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "23% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectFrostbiteEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "14% increased Frostbite Curse Effect" }, } }, + ["CurseEffectFrostbiteEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "15% increased Frostbite Curse Effect" }, } }, + ["CurseEffectFrostbiteEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "16% increased Frostbite Curse Effect" }, } }, + ["CurseEffectFrostbiteEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "17% increased Frostbite Curse Effect" }, } }, + ["CurseEffectFrostbiteEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "18% increased Frostbite Curse Effect" }, } }, + ["CurseEffectFrostbiteEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "19% increased Frostbite Curse Effect" }, } }, + ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "18% increased Frostbite Curse Effect" }, } }, + ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "19% increased Frostbite Curse Effect" }, } }, + ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "20% increased Frostbite Curse Effect" }, } }, + ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "21% increased Frostbite Curse Effect" }, } }, + ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "22% increased Frostbite Curse Effect" }, } }, + ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "23% increased Frostbite Curse Effect" }, } }, ["CurseEffectConductivityEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "10% increased Conductivity Curse Effect" }, } }, ["CurseEffectConductivityEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "11% increased Conductivity Curse Effect" }, } }, ["CurseEffectConductivityEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "12% increased Conductivity Curse Effect" }, } }, ["CurseEffectConductivityEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "13% increased Conductivity Curse Effect" }, } }, ["CurseEffectConductivityEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "14% increased Conductivity Curse Effect" }, } }, ["CurseEffectConductivityEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "15% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "14% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "15% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "16% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "17% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "18% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "19% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "18% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "19% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "20% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "21% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "22% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "23% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3395908304] = { "14% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3395908304] = { "15% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3395908304] = { "16% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3395908304] = { "17% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3395908304] = { "18% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3395908304] = { "19% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3395908304] = { "18% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3395908304] = { "19% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3395908304] = { "20% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3395908304] = { "21% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3395908304] = { "22% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3395908304] = { "23% increased Conductivity Curse Effect" }, } }, ["CurseEffectVulnerabilityEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "10% increased Vulnerability Curse Effect" }, } }, ["CurseEffectVulnerabilityEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "11% increased Vulnerability Curse Effect" }, } }, ["CurseEffectVulnerabilityEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "12% increased Vulnerability Curse Effect" }, } }, ["CurseEffectVulnerabilityEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "13% increased Vulnerability Curse Effect" }, } }, ["CurseEffectVulnerabilityEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "14% increased Vulnerability Curse Effect" }, } }, ["CurseEffectVulnerabilityEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "15% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "14% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "15% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "16% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "17% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "18% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "19% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "18% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "19% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "20% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "21% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "22% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "23% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1065909420] = { "14% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1065909420] = { "15% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1065909420] = { "16% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1065909420] = { "17% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1065909420] = { "18% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1065909420] = { "19% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1065909420] = { "18% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1065909420] = { "19% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1065909420] = { "20% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1065909420] = { "21% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1065909420] = { "22% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1065909420] = { "23% increased Vulnerability Curse Effect" }, } }, ["CurseEffectElementalWeaknessEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "10% increased Elemental Weakness Curse Effect" }, } }, ["CurseEffectElementalWeaknessEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "11% increased Elemental Weakness Curse Effect" }, } }, ["CurseEffectElementalWeaknessEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "12% increased Elemental Weakness Curse Effect" }, } }, ["CurseEffectElementalWeaknessEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "13% increased Elemental Weakness Curse Effect" }, } }, ["CurseEffectElementalWeaknessEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "14% increased Elemental Weakness Curse Effect" }, } }, ["CurseEffectElementalWeaknessEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "15% increased Elemental Weakness Curse Effect" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "14% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "15% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "16% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "17% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "18% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "19% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "18% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "19% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "20% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "21% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "22% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "23% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "14% increased Elemental Weakness Curse Effect" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "15% increased Elemental Weakness Curse Effect" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "16% increased Elemental Weakness Curse Effect" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "17% increased Elemental Weakness Curse Effect" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "18% increased Elemental Weakness Curse Effect" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "19% increased Elemental Weakness Curse Effect" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "18% increased Elemental Weakness Curse Effect" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "19% increased Elemental Weakness Curse Effect" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "20% increased Elemental Weakness Curse Effect" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "21% increased Elemental Weakness Curse Effect" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "22% increased Elemental Weakness Curse Effect" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "23% increased Elemental Weakness Curse Effect" }, } }, ["CurseEffectDespairEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "10% increased Despair Curse Effect" }, } }, ["CurseEffectDespairEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "11% increased Despair Curse Effect" }, } }, ["CurseEffectDespairEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "12% increased Despair Curse Effect" }, } }, ["CurseEffectDespairEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "13% increased Despair Curse Effect" }, } }, ["CurseEffectDespairEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "14% increased Despair Curse Effect" }, } }, ["CurseEffectDespairEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "15% increased Despair Curse Effect" }, } }, - ["CurseEffectDespairEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "14% increased Despair Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectDespairEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "15% increased Despair Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectDespairEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "16% increased Despair Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectDespairEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "17% increased Despair Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectDespairEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "18% increased Despair Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectDespairEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "19% increased Despair Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectDespairEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "18% increased Despair Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectDespairEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "19% increased Despair Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectDespairEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "20% increased Despair Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectDespairEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "21% increased Despair Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectDespairEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "22% increased Despair Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectDespairEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "23% increased Despair Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectDespairEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "14% increased Despair Curse Effect" }, } }, + ["CurseEffectDespairEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "15% increased Despair Curse Effect" }, } }, + ["CurseEffectDespairEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "16% increased Despair Curse Effect" }, } }, + ["CurseEffectDespairEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "17% increased Despair Curse Effect" }, } }, + ["CurseEffectDespairEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "18% increased Despair Curse Effect" }, } }, + ["CurseEffectDespairEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "19% increased Despair Curse Effect" }, } }, + ["CurseEffectDespairEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "18% increased Despair Curse Effect" }, } }, + ["CurseEffectDespairEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "19% increased Despair Curse Effect" }, } }, + ["CurseEffectDespairEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "20% increased Despair Curse Effect" }, } }, + ["CurseEffectDespairEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "21% increased Despair Curse Effect" }, } }, + ["CurseEffectDespairEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "22% increased Despair Curse Effect" }, } }, + ["CurseEffectDespairEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "23% increased Despair Curse Effect" }, } }, ["CurseEffectTemporalChainsEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "10% increased Temporal Chains Curse Effect" }, } }, ["CurseEffectTemporalChainsEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "11% increased Temporal Chains Curse Effect" }, } }, ["CurseEffectTemporalChainsEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "12% increased Temporal Chains Curse Effect" }, } }, ["CurseEffectTemporalChainsEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "13% increased Temporal Chains Curse Effect" }, } }, ["CurseEffectTemporalChainsEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "14% increased Temporal Chains Curse Effect" }, } }, ["CurseEffectTemporalChainsEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "15% increased Temporal Chains Curse Effect" }, } }, - ["CurseEffectTemporalChainsEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "14% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectTemporalChainsEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "15% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectTemporalChainsEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "16% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectTemporalChainsEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "17% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectTemporalChainsEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "18% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectTemporalChainsEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "19% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "18% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "19% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "20% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "21% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "22% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "23% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectTemporalChainsEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "14% increased Temporal Chains Curse Effect" }, } }, + ["CurseEffectTemporalChainsEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "15% increased Temporal Chains Curse Effect" }, } }, + ["CurseEffectTemporalChainsEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "16% increased Temporal Chains Curse Effect" }, } }, + ["CurseEffectTemporalChainsEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "17% increased Temporal Chains Curse Effect" }, } }, + ["CurseEffectTemporalChainsEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "18% increased Temporal Chains Curse Effect" }, } }, + ["CurseEffectTemporalChainsEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "19% increased Temporal Chains Curse Effect" }, } }, + ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "18% increased Temporal Chains Curse Effect" }, } }, + ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "19% increased Temporal Chains Curse Effect" }, } }, + ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "20% increased Temporal Chains Curse Effect" }, } }, + ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "21% increased Temporal Chains Curse Effect" }, } }, + ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "22% increased Temporal Chains Curse Effect" }, } }, + ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "23% increased Temporal Chains Curse Effect" }, } }, ["CurseEffectEnfeebleEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "10% increased Enfeeble Curse Effect" }, } }, ["CurseEffectEnfeebleEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "11% increased Enfeeble Curse Effect" }, } }, ["CurseEffectEnfeebleEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "12% increased Enfeeble Curse Effect" }, } }, ["CurseEffectEnfeebleEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "13% increased Enfeeble Curse Effect" }, } }, ["CurseEffectEnfeebleEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "14% increased Enfeeble Curse Effect" }, } }, ["CurseEffectEnfeebleEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "15% increased Enfeeble Curse Effect" }, } }, - ["CurseEffectEnfeebleEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "14% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectEnfeebleEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "15% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectEnfeebleEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "16% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectEnfeebleEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "17% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectEnfeebleEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "18% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectEnfeebleEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "19% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "18% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "19% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "20% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "21% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "22% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "23% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectEnfeebleEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "14% increased Enfeeble Curse Effect" }, } }, + ["CurseEffectEnfeebleEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "15% increased Enfeeble Curse Effect" }, } }, + ["CurseEffectEnfeebleEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "16% increased Enfeeble Curse Effect" }, } }, + ["CurseEffectEnfeebleEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "17% increased Enfeeble Curse Effect" }, } }, + ["CurseEffectEnfeebleEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "18% increased Enfeeble Curse Effect" }, } }, + ["CurseEffectEnfeebleEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "19% increased Enfeeble Curse Effect" }, } }, + ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "18% increased Enfeeble Curse Effect" }, } }, + ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "19% increased Enfeeble Curse Effect" }, } }, + ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "20% increased Enfeeble Curse Effect" }, } }, + ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "21% increased Enfeeble Curse Effect" }, } }, + ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "22% increased Enfeeble Curse Effect" }, } }, + ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "23% increased Enfeeble Curse Effect" }, } }, ["CurseEffectPunishmentEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "10% increased Punishment Curse Effect" }, } }, ["CurseEffectPunishmentEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "11% increased Punishment Curse Effect" }, } }, ["CurseEffectPunishmentEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "12% increased Punishment Curse Effect" }, } }, ["CurseEffectPunishmentEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "13% increased Punishment Curse Effect" }, } }, ["CurseEffectPunishmentEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "14% increased Punishment Curse Effect" }, } }, ["CurseEffectPunishmentEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "15% increased Punishment Curse Effect" }, } }, - ["CurseEffectPunishmentEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "14% increased Punishment Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectPunishmentEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "15% increased Punishment Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectPunishmentEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "16% increased Punishment Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectPunishmentEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "17% increased Punishment Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectPunishmentEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "18% increased Punishment Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectPunishmentEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "19% increased Punishment Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectPunishmentEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "18% increased Punishment Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectPunishmentEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "19% increased Punishment Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectPunishmentEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "20% increased Punishment Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectPunishmentEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "21% increased Punishment Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectPunishmentEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "22% increased Punishment Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectPunishmentEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "23% increased Punishment Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectPunishmentEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "14% increased Punishment Curse Effect" }, } }, + ["CurseEffectPunishmentEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "15% increased Punishment Curse Effect" }, } }, + ["CurseEffectPunishmentEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "16% increased Punishment Curse Effect" }, } }, + ["CurseEffectPunishmentEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "17% increased Punishment Curse Effect" }, } }, + ["CurseEffectPunishmentEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "18% increased Punishment Curse Effect" }, } }, + ["CurseEffectPunishmentEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "19% increased Punishment Curse Effect" }, } }, + ["CurseEffectPunishmentEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "18% increased Punishment Curse Effect" }, } }, + ["CurseEffectPunishmentEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "19% increased Punishment Curse Effect" }, } }, + ["CurseEffectPunishmentEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "20% increased Punishment Curse Effect" }, } }, + ["CurseEffectPunishmentEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "21% increased Punishment Curse Effect" }, } }, + ["CurseEffectPunishmentEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "22% increased Punishment Curse Effect" }, } }, + ["CurseEffectPunishmentEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "23% increased Punishment Curse Effect" }, } }, ["ReducedAttackManaCostEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-20)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(19-20)% reduced Mana Cost of Attacks" }, } }, ["ReducedAttackManaCostEldritchImplicit2"] = { type = "Exarch", affix = "", "(21-22)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(21-22)% reduced Mana Cost of Attacks" }, } }, ["ReducedAttackManaCostEldritchImplicit3"] = { type = "Exarch", affix = "", "(23-24)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(23-24)% reduced Mana Cost of Attacks" }, } }, ["ReducedAttackManaCostEldritchImplicit4"] = { type = "Exarch", affix = "", "(25-26)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(25-26)% reduced Mana Cost of Attacks" }, } }, ["ReducedAttackManaCostEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(27-28)% reduced Mana Cost of Attacks" }, } }, ["ReducedAttackManaCostEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(29-30)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(25-26)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(27-28)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(29-30)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-32)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(31-32)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(33-34)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(35-36)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(31-32)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(33-34)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(35-36)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(37-38)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(39-40)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(41-42)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2859471749] = { "(25-26)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2859471749] = { "(27-28)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2859471749] = { "(29-30)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-32)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2859471749] = { "(31-32)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2859471749] = { "(33-34)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2859471749] = { "(35-36)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2859471749] = { "(31-32)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2859471749] = { "(33-34)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2859471749] = { "(35-36)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2859471749] = { "(37-38)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2859471749] = { "(39-40)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2859471749] = { "(41-42)% reduced Mana Cost of Attacks" }, } }, ["MaximumLightningResistanceImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, ["MaximumLightningResistanceImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, ["MaximumLightningResistanceImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, ["MaximumLightningResistanceImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, ["MaximumLightningResistanceImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, ["MaximumLightningResistanceImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, } }, ["IncreasedDamagePerPowerChargeEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "4% increased Damage per Power Charge" }, } }, ["IncreasedDamagePerPowerChargeEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "4% increased Damage per Power Charge" }, } }, ["IncreasedDamagePerPowerChargeEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "5% increased Damage per Power Charge" }, } }, ["IncreasedDamagePerPowerChargeEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "5% increased Damage per Power Charge" }, } }, ["IncreasedDamagePerPowerChargeEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "6% increased Damage per Power Charge" }, } }, ["IncreasedDamagePerPowerChargeEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "6% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "5% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "5% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "6% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "6% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "7% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "7% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "6% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "6% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "7% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "7% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "8% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "8% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "5% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "5% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "6% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "6% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "7% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "7% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "6% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "6% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "7% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "7% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "8% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "8% increased Damage per Power Charge" }, } }, ["MinionLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "Minions have (14-16)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (14-16)% increased maximum Life" }, } }, ["MinionLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "Minions have (17-19)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (17-19)% increased maximum Life" }, } }, ["MinionLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "Minions have (20-22)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-22)% increased maximum Life" }, } }, ["MinionLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "Minions have (23-25)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (23-25)% increased maximum Life" }, } }, ["MinionLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "Minions have (26-27)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (26-27)% increased maximum Life" }, } }, ["MinionLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "Minions have (28-29)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (28-29)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (20-22)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (20-22)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (23-25)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (23-25)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (26-28)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (26-28)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (29-31)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (29-31)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (32-33)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (32-33)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (34-35)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (34-35)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (26-28)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (26-28)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (29-31)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (29-31)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (32-34)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (32-34)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (35-37)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (35-37)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (38-39)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (38-39)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (40-41)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (40-41)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (20-22)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-22)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (23-25)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (23-25)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (26-28)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (26-28)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (29-31)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (29-31)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (32-33)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (32-33)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (34-35)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (34-35)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (26-28)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (26-28)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (29-31)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (29-31)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (32-34)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (32-34)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (35-37)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (35-37)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (38-39)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (38-39)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (40-41)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (40-41)% increased maximum Life" }, } }, ["MinionRunSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "Minions have (11-12)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (11-12)% increased Movement Speed" }, } }, ["MinionRunSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "Minions have (13-14)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (13-14)% increased Movement Speed" }, } }, ["MinionRunSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "Minions have (15-16)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (15-16)% increased Movement Speed" }, } }, ["MinionRunSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "Minions have (17-18)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (17-18)% increased Movement Speed" }, } }, ["MinionRunSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "Minions have (19-20)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (19-20)% increased Movement Speed" }, } }, ["MinionRunSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "Minions have (21-22)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (21-22)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (13-15)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (13-15)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (16-18)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (16-18)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (19-21)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (19-21)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (22-24)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (22-24)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (25-26)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (25-26)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (27-28)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (27-28)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (19-21)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (19-21)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (22-24)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (22-24)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (25-27)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (25-27)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (28-30)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (28-30)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (31-32)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (31-32)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (33-34)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (33-34)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (13-15)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (13-15)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (16-18)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (16-18)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (19-21)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (19-21)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (22-24)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (22-24)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (25-26)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (25-26)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (27-28)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (27-28)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (19-21)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (19-21)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (22-24)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (22-24)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (25-27)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (25-27)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (28-30)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (28-30)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (31-32)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (31-32)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (33-34)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (33-34)% increased Movement Speed" }, } }, ["AreaOfEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(7-8)% increased Area of Effect" }, } }, ["AreaOfEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(9-10)% increased Area of Effect" }, } }, ["AreaOfEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(11-12)% increased Area of Effect" }, } }, ["AreaOfEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(13-14)% increased Area of Effect" }, } }, ["AreaOfEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(15-16)% increased Area of Effect" }, } }, ["AreaOfEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(17-18)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(13-14)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(15-16)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(17-18)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(19-20)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(21-22)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(23-24)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(19-20)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(21-22)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(23-24)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(25-26)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(27-28)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(29-30)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(13-14)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(15-16)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(17-18)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(19-20)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(21-22)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(23-24)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(19-20)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(21-22)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(23-24)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(25-26)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(27-28)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(29-30)% increased Area of Effect" }, } }, ["EnergyShieldRegenerationEldritchImplicit1"] = { type = "Eater", affix = "", "21% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "21% increased Energy Shield Recharge Rate" }, } }, ["EnergyShieldRegenerationEldritchImplicit2"] = { type = "Eater", affix = "", "22% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "22% increased Energy Shield Recharge Rate" }, } }, ["EnergyShieldRegenerationEldritchImplicit3"] = { type = "Eater", affix = "", "23% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "23% increased Energy Shield Recharge Rate" }, } }, ["EnergyShieldRegenerationEldritchImplicit4"] = { type = "Eater", affix = "", "24% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "24% increased Energy Shield Recharge Rate" }, } }, ["EnergyShieldRegenerationEldritchImplicit5"] = { type = "Eater", affix = "", "25% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "25% increased Energy Shield Recharge Rate" }, } }, ["EnergyShieldRegenerationEldritchImplicit6"] = { type = "Eater", affix = "", "26% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "26% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRegenerationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 24% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "24% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } }, - ["EnergyShieldRegenerationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "25% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } }, - ["EnergyShieldRegenerationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 26% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "26% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } }, - ["EnergyShieldRegenerationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 27% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "27% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } }, - ["EnergyShieldRegenerationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 28% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "28% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } }, - ["EnergyShieldRegenerationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 29% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "29% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } }, - ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 27% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "27% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } }, - ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 28% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "28% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } }, - ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 29% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "29% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } }, - ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "30% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } }, - ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 31% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "31% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } }, - ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 32% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "32% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } }, + ["EnergyShieldRegenerationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 24% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "24% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRegenerationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "25% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRegenerationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 26% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "26% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRegenerationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 27% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "27% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRegenerationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 28% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "28% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRegenerationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 29% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "29% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 27% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "27% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 28% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "28% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 29% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "29% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "30% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 31% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "31% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 32% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "32% increased Energy Shield Recharge Rate" }, } }, ["EnergyShieldFromGlovesBootsEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(33-35)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, ["EnergyShieldFromGlovesBootsEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(36-38)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, ["EnergyShieldFromGlovesBootsEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(39-41)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, ["EnergyShieldFromGlovesBootsEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, ["EnergyShieldFromGlovesBootsEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, ["EnergyShieldFromGlovesBootsEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(54-57)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(58-61)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(54-56)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(57-59)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(60-62)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(63-66)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(67-70)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(54-57)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(58-61)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(54-56)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(57-59)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(60-62)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(63-66)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(67-70)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, ["FireResistancePenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Damage Penetrates 4% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } }, ["FireResistancePenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Damage Penetrates 4% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } }, ["FireResistancePenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Damage Penetrates 5% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 5% Fire Resistance" }, } }, ["FireResistancePenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Damage Penetrates 5% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 5% Fire Resistance" }, } }, ["FireResistancePenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Damage Penetrates 6% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } }, ["FireResistancePenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Damage Penetrates 6% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 9% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 9% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 10% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 10% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 9% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 9% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 10% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 10% Fire Resistance" }, } }, ["ColdResistancePenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Damage Penetrates 4% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, } }, ["ColdResistancePenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Damage Penetrates 4% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, } }, ["ColdResistancePenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Damage Penetrates 5% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 5% Cold Resistance" }, } }, ["ColdResistancePenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Damage Penetrates 5% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 5% Cold Resistance" }, } }, ["ColdResistancePenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Damage Penetrates 6% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } }, ["ColdResistancePenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Damage Penetrates 6% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 9% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 9% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 10% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 10% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 9% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 9% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 10% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 10% Cold Resistance" }, } }, ["LightningResistancePenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Damage Penetrates 4% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } }, ["LightningResistancePenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Damage Penetrates 4% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } }, ["LightningResistancePenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 5% Lightning Resistance" }, } }, ["LightningResistancePenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 5% Lightning Resistance" }, } }, ["LightningResistancePenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } }, ["LightningResistancePenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 9% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 9% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 10% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 10% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 9% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 9% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 10% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 10% Lightning Resistance" }, } }, ["IncreasedAilmentDurationEldritchImplicit1"] = { type = "Eater", affix = "", "(13-14)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(13-14)% increased Duration of Ailments on Enemies" }, } }, ["IncreasedAilmentDurationEldritchImplicit2"] = { type = "Eater", affix = "", "(15-16)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(15-16)% increased Duration of Ailments on Enemies" }, } }, ["IncreasedAilmentDurationEldritchImplicit3"] = { type = "Eater", affix = "", "(17-18)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(17-18)% increased Duration of Ailments on Enemies" }, } }, ["IncreasedAilmentDurationEldritchImplicit4"] = { type = "Eater", affix = "", "(19-20)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(19-20)% increased Duration of Ailments on Enemies" }, } }, ["IncreasedAilmentDurationEldritchImplicit5"] = { type = "Eater", affix = "", "(21-22)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(21-22)% increased Duration of Ailments on Enemies" }, } }, ["IncreasedAilmentDurationEldritchImplicit6"] = { type = "Eater", affix = "", "(23-24)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(23-24)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(19-20)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(21-22)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(23-24)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(25-26)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(27-28)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(29-30)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(25-26)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(27-28)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(29-30)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(31-32)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(33-34)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(35-36)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(19-20)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(21-22)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(23-24)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(25-26)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(27-28)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(29-30)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(25-26)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(27-28)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(29-30)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(31-32)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(33-34)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(35-36)% increased Duration of Ailments on Enemies" }, } }, ["IncreasedAilmentEffectOnEnemiesEldritchImplicit1"] = { type = "Eater", affix = "", "(14-16)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(14-16)% increased Effect of Non-Damaging Ailments" }, } }, ["IncreasedAilmentEffectOnEnemiesEldritchImplicit2"] = { type = "Eater", affix = "", "(17-19)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(17-19)% increased Effect of Non-Damaging Ailments" }, } }, ["IncreasedAilmentEffectOnEnemiesEldritchImplicit3"] = { type = "Eater", affix = "", "(20-22)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(20-22)% increased Effect of Non-Damaging Ailments" }, } }, ["IncreasedAilmentEffectOnEnemiesEldritchImplicit4"] = { type = "Eater", affix = "", "(23-25)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(23-25)% increased Effect of Non-Damaging Ailments" }, } }, ["IncreasedAilmentEffectOnEnemiesEldritchImplicit5"] = { type = "Eater", affix = "", "(26-27)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(26-27)% increased Effect of Non-Damaging Ailments" }, } }, ["IncreasedAilmentEffectOnEnemiesEldritchImplicit6"] = { type = "Eater", affix = "", "(28-29)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(28-29)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-22)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(20-22)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-25)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(23-25)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(26-28)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(29-31)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-33)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(32-33)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (34-35)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(34-35)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-28)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(26-28)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-31)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(29-31)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (32-34)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(32-34)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-37)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(35-37)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-39)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(38-39)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (40-41)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(40-41)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-22)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(20-22)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-25)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(23-25)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(26-28)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(29-31)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-33)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(32-33)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (34-35)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(34-35)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-28)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(26-28)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-31)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(29-31)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (32-34)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(32-34)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-37)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(35-37)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-39)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(38-39)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (40-41)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(40-41)% increased Effect of Non-Damaging Ailments" }, } }, ["PhysicalDamageTakenAsFireUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "6% of Physical Damage from Hits taken as Fire Damage" }, } }, ["PhysicalDamageTakenAsFireUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "6% of Physical Damage from Hits taken as Fire Damage" }, } }, ["PhysicalDamageTakenAsFireUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "7% of Physical Damage from Hits taken as Fire Damage" }, } }, ["PhysicalDamageTakenAsFireUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "7% of Physical Damage from Hits taken as Fire Damage" }, } }, ["PhysicalDamageTakenAsFireUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "8% of Physical Damage from Hits taken as Fire Damage" }, } }, ["PhysicalDamageTakenAsFireUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "8% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "8% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "8% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "9% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "9% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "11% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "11% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "12% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "12% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "8% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "8% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "9% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "9% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "11% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "11% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "12% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "12% of Physical Damage from Hits taken as Fire Damage" }, } }, ["PhysicalDamageTakenAsColdUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "6% of Physical Damage from Hits taken as Cold Damage" }, } }, ["PhysicalDamageTakenAsColdUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "6% of Physical Damage from Hits taken as Cold Damage" }, } }, ["PhysicalDamageTakenAsColdUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "7% of Physical Damage from Hits taken as Cold Damage" }, } }, ["PhysicalDamageTakenAsColdUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "7% of Physical Damage from Hits taken as Cold Damage" }, } }, ["PhysicalDamageTakenAsColdUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "8% of Physical Damage from Hits taken as Cold Damage" }, } }, ["PhysicalDamageTakenAsColdUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "8% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "8% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "8% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "9% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "9% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "11% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "11% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "12% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "12% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "8% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "8% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "9% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "9% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "11% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "11% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "12% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "12% of Physical Damage from Hits taken as Cold Damage" }, } }, ["PhysicalDamageTakenAsLightningUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "6% of Physical Damage from Hits taken as Lightning Damage" }, } }, ["PhysicalDamageTakenAsLightningUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "6% of Physical Damage from Hits taken as Lightning Damage" }, } }, ["PhysicalDamageTakenAsLightningUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "7% of Physical Damage from Hits taken as Lightning Damage" }, } }, ["PhysicalDamageTakenAsLightningUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "7% of Physical Damage from Hits taken as Lightning Damage" }, } }, ["PhysicalDamageTakenAsLightningUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "8% of Physical Damage from Hits taken as Lightning Damage" }, } }, ["PhysicalDamageTakenAsLightningUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "8% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "8% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "8% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "9% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "9% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "11% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "11% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "12% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "12% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "8% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "8% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "9% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "9% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "11% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "11% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "12% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "12% of Physical Damage from Hits taken as Lightning Damage" }, } }, ["PhysicalDamageTakenAsChaosUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "6% of Physical Damage from Hits taken as Chaos Damage" }, } }, ["PhysicalDamageTakenAsChaosUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "6% of Physical Damage from Hits taken as Chaos Damage" }, } }, ["PhysicalDamageTakenAsChaosUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "7% of Physical Damage from Hits taken as Chaos Damage" }, } }, ["PhysicalDamageTakenAsChaosUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "7% of Physical Damage from Hits taken as Chaos Damage" }, } }, ["PhysicalDamageTakenAsChaosUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "8% of Physical Damage from Hits taken as Chaos Damage" }, } }, ["PhysicalDamageTakenAsChaosUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "8% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "8% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "8% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "9% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "9% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "11% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "11% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "12% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "12% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "8% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "8% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "9% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "9% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "11% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "11% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "12% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "12% of Physical Damage from Hits taken as Chaos Damage" }, } }, ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } }, ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } }, ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "11% of Physical Damage from Hits taken as Fire Damage" }, } }, ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "11% of Physical Damage from Hits taken as Fire Damage" }, } }, ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "12% of Physical Damage from Hits taken as Fire Damage" }, } }, ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "12% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "14% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "14% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "15% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "15% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "16% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "16% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "18% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "18% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "19% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "19% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "20% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "20% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "14% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "14% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "15% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "15% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "16% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "16% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "18% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "18% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "19% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "19% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "20% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "20% of Physical Damage from Hits taken as Fire Damage" }, } }, ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } }, ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } }, ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "11% of Physical Damage from Hits taken as Cold Damage" }, } }, ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "11% of Physical Damage from Hits taken as Cold Damage" }, } }, ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "12% of Physical Damage from Hits taken as Cold Damage" }, } }, ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "12% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "14% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "14% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "15% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "15% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "16% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "16% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "18% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "18% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "19% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "19% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "20% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "20% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "14% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "14% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "15% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "15% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "16% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "16% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "18% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "18% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "19% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "19% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "20% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "20% of Physical Damage from Hits taken as Cold Damage" }, } }, ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, } }, ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, } }, ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "11% of Physical Damage from Hits taken as Lightning Damage" }, } }, ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "11% of Physical Damage from Hits taken as Lightning Damage" }, } }, ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "12% of Physical Damage from Hits taken as Lightning Damage" }, } }, ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "12% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "14% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "14% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "15% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "15% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "16% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "16% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "18% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "18% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "19% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "19% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "20% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "20% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "14% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "14% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "15% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "15% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "16% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "16% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "18% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "18% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "19% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "19% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "20% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "20% of Physical Damage from Hits taken as Lightning Damage" }, } }, ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, } }, ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, } }, ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "11% of Physical Damage from Hits taken as Chaos Damage" }, } }, ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "11% of Physical Damage from Hits taken as Chaos Damage" }, } }, ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "12% of Physical Damage from Hits taken as Chaos Damage" }, } }, ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "12% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "14% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "14% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "15% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "15% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "16% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "16% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "18% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "18% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "19% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "19% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "20% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "20% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "14% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "14% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "15% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "15% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "16% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "16% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "18% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "18% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "19% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "19% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "20% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "20% of Physical Damage from Hits taken as Chaos Damage" }, } }, ["ManaReservationEfficiencyEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "7% increased Mana Reservation Efficiency of Skills" }, } }, ["ManaReservationEfficiencyEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "8% increased Mana Reservation Efficiency of Skills" }, } }, ["ManaReservationEfficiencyEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "9% increased Mana Reservation Efficiency of Skills" }, } }, ["ManaReservationEfficiencyEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, ["ManaReservationEfficiencyEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "11% increased Mana Reservation Efficiency of Skills" }, } }, ["ManaReservationEfficiencyEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "12% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "11% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "12% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "13% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "14% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "15% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "13% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "14% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "15% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "16% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "17% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "18% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "11% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "12% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "13% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "14% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "15% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "13% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "14% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "15% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "16% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "17% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "18% increased Mana Reservation Efficiency of Skills" }, } }, ["ChanceToIgniteEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "5% chance to Ignite" }, } }, ["ChanceToIgniteEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "10% chance to Ignite" }, } }, ["ChanceToIgniteEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "15% chance to Ignite" }, } }, ["ChanceToIgniteEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "20% chance to Ignite" }, } }, ["ChanceToIgniteEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "25% chance to Ignite" }, } }, ["ChanceToIgniteEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "30% chance to Ignite" }, } }, - ["ChanceToIgniteEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "15% chance to Ignite" }, [4074358700] = { "" }, } }, - ["ChanceToIgniteEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "20% chance to Ignite" }, [4074358700] = { "" }, } }, - ["ChanceToIgniteEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "25% chance to Ignite" }, [4074358700] = { "" }, } }, - ["ChanceToIgniteEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "30% chance to Ignite" }, [4074358700] = { "" }, } }, - ["ChanceToIgniteEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "35% chance to Ignite" }, [4074358700] = { "" }, } }, - ["ChanceToIgniteEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "40% chance to Ignite" }, [4074358700] = { "" }, } }, - ["ChanceToIgniteEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "25% chance to Ignite" }, [3283106665] = { "" }, } }, - ["ChanceToIgniteEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "30% chance to Ignite" }, [3283106665] = { "" }, } }, - ["ChanceToIgniteEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "35% chance to Ignite" }, [3283106665] = { "" }, } }, - ["ChanceToIgniteEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "40% chance to Ignite" }, [3283106665] = { "" }, } }, - ["ChanceToIgniteEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "45% chance to Ignite" }, [3283106665] = { "" }, } }, - ["ChanceToIgniteEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "50% chance to Ignite" }, [3283106665] = { "" }, } }, - ["ChanceToFreezeEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "5% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "10% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "15% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "20% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "25% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "30% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "15% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "20% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "25% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "30% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "35% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "40% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "25% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "30% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "35% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "40% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "45% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "50% chance to Freeze" }, } }, + ["ChanceToIgniteEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "15% chance to Ignite" }, } }, + ["ChanceToIgniteEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "20% chance to Ignite" }, } }, + ["ChanceToIgniteEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "25% chance to Ignite" }, } }, + ["ChanceToIgniteEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "30% chance to Ignite" }, } }, + ["ChanceToIgniteEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "35% chance to Ignite" }, } }, + ["ChanceToIgniteEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "40% chance to Ignite" }, } }, + ["ChanceToIgniteEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "25% chance to Ignite" }, } }, + ["ChanceToIgniteEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "30% chance to Ignite" }, } }, + ["ChanceToIgniteEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "35% chance to Ignite" }, } }, + ["ChanceToIgniteEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "40% chance to Ignite" }, } }, + ["ChanceToIgniteEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "45% chance to Ignite" }, } }, + ["ChanceToIgniteEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "50% chance to Ignite" }, } }, + ["ChanceToFreezeEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "5% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "10% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "15% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "20% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "25% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "30% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "15% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "20% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "25% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "30% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "35% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "40% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "25% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "30% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "35% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "40% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "45% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "50% chance to Freeze" }, } }, ["ChanceToShockEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "5% chance to Shock" }, } }, ["ChanceToShockEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "10% chance to Shock" }, } }, ["ChanceToShockEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "15% chance to Shock" }, } }, ["ChanceToShockEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "20% chance to Shock" }, } }, ["ChanceToShockEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "25% chance to Shock" }, } }, ["ChanceToShockEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "30% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "15% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "20% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "25% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "30% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "35% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "40% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "25% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "30% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "35% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "40% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "45% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "50% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "15% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "20% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "25% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "30% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "35% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "40% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "25% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "30% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "35% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "40% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "45% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "50% chance to Shock" }, } }, ["ReducedIgniteDurationOnSelfEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(33-35)% reduced Ignite Duration on you" }, } }, ["ReducedIgniteDurationOnSelfEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(36-38)% reduced Ignite Duration on you" }, } }, ["ReducedIgniteDurationOnSelfEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(39-41)% reduced Ignite Duration on you" }, } }, ["ReducedIgniteDurationOnSelfEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(42-44)% reduced Ignite Duration on you" }, } }, ["ReducedIgniteDurationOnSelfEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(45-47)% reduced Ignite Duration on you" }, } }, ["ReducedIgniteDurationOnSelfEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(48-50)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(42-44)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(45-47)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(48-50)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(51-53)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(54-57)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(58-61)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(51-53)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(54-56)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(57-59)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(60-62)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(63-66)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(67-70)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(42-44)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(45-47)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(48-50)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(51-53)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(54-57)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(58-61)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(51-53)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(54-56)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(57-59)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(60-62)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(63-66)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(67-70)% reduced Ignite Duration on you" }, } }, ["ReducedFreezeDurationEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(33-35)% reduced Freeze Duration on you" }, } }, ["ReducedFreezeDurationEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(36-38)% reduced Freeze Duration on you" }, } }, ["ReducedFreezeDurationEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(39-41)% reduced Freeze Duration on you" }, } }, ["ReducedFreezeDurationEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(42-44)% reduced Freeze Duration on you" }, } }, ["ReducedFreezeDurationEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(45-47)% reduced Freeze Duration on you" }, } }, ["ReducedFreezeDurationEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(48-50)% reduced Freeze Duration on you" }, } }, - ["ReducedFreezeDurationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(42-44)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } }, - ["ReducedFreezeDurationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(45-47)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } }, - ["ReducedFreezeDurationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(48-50)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } }, - ["ReducedFreezeDurationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(51-53)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } }, - ["ReducedFreezeDurationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(54-57)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } }, - ["ReducedFreezeDurationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(58-61)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } }, - ["ReducedFreezeDurationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(51-53)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } }, - ["ReducedFreezeDurationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(54-56)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } }, - ["ReducedFreezeDurationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(57-59)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } }, - ["ReducedFreezeDurationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(60-62)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } }, - ["ReducedFreezeDurationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(63-66)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } }, - ["ReducedFreezeDurationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(67-70)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } }, + ["ReducedFreezeDurationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(42-44)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDurationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(45-47)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDurationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(48-50)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDurationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(51-53)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDurationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(54-57)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDurationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(58-61)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDurationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(51-53)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDurationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(54-56)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDurationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(57-59)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDurationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(60-62)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDurationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(63-66)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDurationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(67-70)% reduced Freeze Duration on you" }, } }, ["ReducedShockEffectOnSelfEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(33-35)% reduced Effect of Shock on you" }, } }, ["ReducedShockEffectOnSelfEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(36-38)% reduced Effect of Shock on you" }, } }, ["ReducedShockEffectOnSelfEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(39-41)% reduced Effect of Shock on you" }, } }, ["ReducedShockEffectOnSelfEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(42-44)% reduced Effect of Shock on you" }, } }, ["ReducedShockEffectOnSelfEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(45-47)% reduced Effect of Shock on you" }, } }, ["ReducedShockEffectOnSelfEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(48-50)% reduced Effect of Shock on you" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(42-44)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(45-47)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(48-50)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(51-53)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(54-57)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(58-61)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(51-53)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(54-56)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(57-59)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(60-62)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(63-66)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(67-70)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(42-44)% reduced Effect of Shock on you" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(45-47)% reduced Effect of Shock on you" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(48-50)% reduced Effect of Shock on you" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(51-53)% reduced Effect of Shock on you" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(54-57)% reduced Effect of Shock on you" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(58-61)% reduced Effect of Shock on you" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(51-53)% reduced Effect of Shock on you" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(54-56)% reduced Effect of Shock on you" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(57-59)% reduced Effect of Shock on you" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(60-62)% reduced Effect of Shock on you" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(63-66)% reduced Effect of Shock on you" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(67-70)% reduced Effect of Shock on you" }, } }, ["ManaRegenerationEldritchImplicit1"] = { type = "Eater", affix = "", "(19-21)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(19-21)% increased Mana Regeneration Rate" }, } }, ["ManaRegenerationEldritchImplicit2"] = { type = "Eater", affix = "", "(22-24)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(22-24)% increased Mana Regeneration Rate" }, } }, ["ManaRegenerationEldritchImplicit3"] = { type = "Eater", affix = "", "(25-27)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(25-27)% increased Mana Regeneration Rate" }, } }, ["ManaRegenerationEldritchImplicit4"] = { type = "Eater", affix = "", "(28-30)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(28-30)% increased Mana Regeneration Rate" }, } }, ["ManaRegenerationEldritchImplicit5"] = { type = "Eater", affix = "", "(31-33)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(31-33)% increased Mana Regeneration Rate" }, } }, ["ManaRegenerationEldritchImplicit6"] = { type = "Eater", affix = "", "(34-36)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(34-36)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(31-33)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(34-36)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(37-39)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(40-42)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(43-45)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(46-48)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(43-45)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(46-48)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(49-51)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(52-54)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(55-57)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(58-60)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(31-33)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(34-36)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(37-39)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-42)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(43-45)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(46-48)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(43-45)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(46-48)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(49-51)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(52-54)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(55-57)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(58-60)% increased Mana Regeneration Rate" }, } }, ["EnemyLifeRegenerationRateEldritchImplicit1"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (65-67)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (65-67)% reduced Life Regeneration rate" }, } }, ["EnemyLifeRegenerationRateEldritchImplicit2"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (68-70)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (68-70)% reduced Life Regeneration rate" }, } }, ["EnemyLifeRegenerationRateEldritchImplicit3"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (71-73)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (71-73)% reduced Life Regeneration rate" }, } }, ["EnemyLifeRegenerationRateEldritchImplicit4"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate" }, } }, ["EnemyLifeRegenerationRateEldritchImplicit5"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate" }, } }, ["EnemyLifeRegenerationRateEldritchImplicit6"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (92-94)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (92-94)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (95-97)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (95-97)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (98-100)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (98-100)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (92-94)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (92-94)% reduced Life Regeneration rate" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (95-97)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (95-97)% reduced Life Regeneration rate" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (98-100)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (98-100)% reduced Life Regeneration rate" }, } }, ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit1"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "5% increased Mana Regeneration Rate per Power Charge" }, } }, ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit2"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "5% increased Mana Regeneration Rate per Power Charge" }, } }, ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit3"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "5% increased Mana Regeneration Rate per Power Charge" }, } }, ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit4"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "5% increased Mana Regeneration Rate per Power Charge" }, } }, ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit5"] = { type = "Eater", affix = "", "6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, } }, ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit6"] = { type = "Eater", affix = "", "6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "8% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "8% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "8% increased Mana Regeneration Rate per Power Charge" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "8% increased Mana Regeneration Rate per Power Charge" }, } }, ["AttackDamageEldritchImplicit1"] = { type = "Eater", affix = "", "(14-16)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(14-16)% increased Attack Damage" }, } }, ["AttackDamageEldritchImplicit2"] = { type = "Eater", affix = "", "(17-19)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(17-19)% increased Attack Damage" }, } }, ["AttackDamageEldritchImplicit3"] = { type = "Eater", affix = "", "(20-22)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(20-22)% increased Attack Damage" }, } }, ["AttackDamageEldritchImplicit4"] = { type = "Eater", affix = "", "(23-25)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(23-25)% increased Attack Damage" }, } }, ["AttackDamageEldritchImplicit5"] = { type = "Eater", affix = "", "(26-27)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(26-27)% increased Attack Damage" }, } }, ["AttackDamageEldritchImplicit6"] = { type = "Eater", affix = "", "(28-29)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(28-29)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(26-28)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(29-31)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-34)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(32-34)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (35-37)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(35-37)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (38-39)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(38-39)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-41)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(40-41)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-40)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(38-40)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-43)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(41-43)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (44-46)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(44-46)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (47-49)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(47-49)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (50-51)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(50-51)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-53)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(52-53)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(26-28)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(29-31)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-34)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(32-34)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (35-37)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(35-37)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (38-39)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(38-39)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-41)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(40-41)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-40)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(38-40)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-43)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(41-43)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (44-46)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(44-46)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (47-49)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(47-49)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (50-51)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(50-51)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-53)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(52-53)% increased Attack Damage" }, } }, ["SpellDamageEldritchImplicit1"] = { type = "Eater", affix = "", "(14-16)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(14-16)% increased Spell Damage" }, } }, ["SpellDamageEldritchImplicit2"] = { type = "Eater", affix = "", "(17-19)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(17-19)% increased Spell Damage" }, } }, ["SpellDamageEldritchImplicit3"] = { type = "Eater", affix = "", "(20-22)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-22)% increased Spell Damage" }, } }, ["SpellDamageEldritchImplicit4"] = { type = "Eater", affix = "", "(23-25)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-25)% increased Spell Damage" }, } }, ["SpellDamageEldritchImplicit5"] = { type = "Eater", affix = "", "(26-27)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(26-27)% increased Spell Damage" }, } }, ["SpellDamageEldritchImplicit6"] = { type = "Eater", affix = "", "(28-29)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(28-29)% increased Spell Damage" }, } }, - ["SpellDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(26-28)% increased Spell Damage" }, [4074358700] = { "" }, } }, - ["SpellDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(29-31)% increased Spell Damage" }, [4074358700] = { "" }, } }, - ["SpellDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-34)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(32-34)% increased Spell Damage" }, [4074358700] = { "" }, } }, - ["SpellDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (35-37)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-37)% increased Spell Damage" }, [4074358700] = { "" }, } }, - ["SpellDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (38-39)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(38-39)% increased Spell Damage" }, [4074358700] = { "" }, } }, - ["SpellDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-41)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-41)% increased Spell Damage" }, [4074358700] = { "" }, } }, - ["SpellDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-40)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(38-40)% increased Spell Damage" }, [3283106665] = { "" }, } }, - ["SpellDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-43)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(41-43)% increased Spell Damage" }, [3283106665] = { "" }, } }, - ["SpellDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (44-46)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(44-46)% increased Spell Damage" }, [3283106665] = { "" }, } }, - ["SpellDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (47-49)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(47-49)% increased Spell Damage" }, [3283106665] = { "" }, } }, - ["SpellDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (50-51)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-51)% increased Spell Damage" }, [3283106665] = { "" }, } }, - ["SpellDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-53)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(52-53)% increased Spell Damage" }, [3283106665] = { "" }, } }, + ["SpellDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(26-28)% increased Spell Damage" }, } }, + ["SpellDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(29-31)% increased Spell Damage" }, } }, + ["SpellDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-34)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(32-34)% increased Spell Damage" }, } }, + ["SpellDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (35-37)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-37)% increased Spell Damage" }, } }, + ["SpellDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (38-39)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(38-39)% increased Spell Damage" }, } }, + ["SpellDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-41)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-41)% increased Spell Damage" }, } }, + ["SpellDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-40)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(38-40)% increased Spell Damage" }, } }, + ["SpellDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-43)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(41-43)% increased Spell Damage" }, } }, + ["SpellDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (44-46)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(44-46)% increased Spell Damage" }, } }, + ["SpellDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (47-49)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(47-49)% increased Spell Damage" }, } }, + ["SpellDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (50-51)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-51)% increased Spell Damage" }, } }, + ["SpellDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-53)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(52-53)% increased Spell Damage" }, } }, ["ArcaneSurgeEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(6-7)% increased Effect of Arcane Surge on you" }, } }, ["ArcaneSurgeEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(8-9)% increased Effect of Arcane Surge on you" }, } }, ["ArcaneSurgeEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(10-11)% increased Effect of Arcane Surge on you" }, } }, ["ArcaneSurgeEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(12-13)% increased Effect of Arcane Surge on you" }, } }, ["ArcaneSurgeEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(14-15)% increased Effect of Arcane Surge on you" }, } }, ["ArcaneSurgeEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(16-17)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(12-13)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(14-15)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(16-17)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(18-19)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(20-21)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(22-23)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(18-19)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(20-21)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(22-23)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(24-25)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(26-27)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(28-29)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(12-13)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(14-15)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(16-17)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(18-19)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(20-21)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(22-23)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(18-19)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(20-21)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(22-23)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(24-25)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(26-27)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(28-29)% increased Effect of Arcane Surge on you" }, } }, ["MovementVelocityEldritchImplicit1"] = { type = "Exarch", affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, ["MovementVelocityEldritchImplicit2"] = { type = "Exarch", affix = "", "6% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "6% increased Movement Speed" }, } }, ["MovementVelocityEldritchImplicit3"] = { type = "Exarch", affix = "", "7% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "7% increased Movement Speed" }, } }, ["MovementVelocityEldritchImplicit4"] = { type = "Exarch", affix = "", "8% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "8% increased Movement Speed" }, } }, ["MovementVelocityEldritchImplicit5"] = { type = "Exarch", affix = "", "9% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "9% increased Movement Speed" }, } }, ["MovementVelocityEldritchImplicit6"] = { type = "Exarch", affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 8% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "8% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 9% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "9% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "11% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "12% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "13% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "11% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "12% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "13% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "14% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "16% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 8% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "8% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 9% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "9% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "11% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "12% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "13% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "11% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "12% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "13% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "14% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "16% increased Movement Speed" }, } }, ["ActionSpeedImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "4% increased Action Speed" }, } }, ["ActionSpeedImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "4% increased Action Speed" }, } }, ["ActionSpeedImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "5% increased Action Speed" }, } }, ["ActionSpeedImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "5% increased Action Speed" }, } }, ["ActionSpeedImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "6% increased Action Speed" }, } }, ["ActionSpeedImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "6% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "5% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "5% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "6% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "6% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "7% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "7% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "6% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "6% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "7% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "7% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "8% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "8% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [2878959938] = { "5% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [2878959938] = { "5% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [2878959938] = { "6% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [2878959938] = { "6% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [2878959938] = { "7% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [2878959938] = { "7% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [2878959938] = { "6% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [2878959938] = { "6% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, tradeHashes = { [2878959938] = { "7% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, tradeHashes = { [2878959938] = { "7% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, tradeHashes = { [2878959938] = { "8% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, tradeHashes = { [2878959938] = { "8% increased Action Speed" }, } }, ["ScorchedGroundWhileMovingEldritchImplicit1"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 2 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 2 seconds" }, } }, ["ScorchedGroundWhileMovingEldritchImplicit2"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 3 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 3 seconds" }, } }, ["ScorchedGroundWhileMovingEldritchImplicit3"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 4 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 4 seconds" }, } }, ["ScorchedGroundWhileMovingEldritchImplicit4"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 5 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 5 seconds" }, } }, ["ScorchedGroundWhileMovingEldritchImplicit5"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 6 seconds" }, } }, ["ScorchedGroundWhileMovingEldritchImplicit6"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 7 seconds" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 4 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 4 seconds" }, [4074358700] = { "" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 5 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 5 seconds" }, [4074358700] = { "" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 6 seconds" }, [4074358700] = { "" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 7 seconds" }, [4074358700] = { "" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 8 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 8 seconds" }, [4074358700] = { "" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 9 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 9 seconds" }, [4074358700] = { "" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 6 seconds" }, [3283106665] = { "" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 7 seconds" }, [3283106665] = { "" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 8 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 8 seconds" }, [3283106665] = { "" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 9 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 9 seconds" }, [3283106665] = { "" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 10 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 10 seconds" }, [3283106665] = { "" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 11 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 11 seconds" }, [3283106665] = { "" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 4 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 4 seconds" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 5 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 5 seconds" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 6 seconds" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 7 seconds" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 8 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 8 seconds" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 9 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 9 seconds" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 6 seconds" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 7 seconds" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 8 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 8 seconds" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 9 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 9 seconds" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 10 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 10 seconds" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 11 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 11 seconds" }, } }, ["BrittleGroundWhileMovingEldritchImplicit1"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 2 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 2 seconds" }, } }, ["BrittleGroundWhileMovingEldritchImplicit2"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 3 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 3 seconds" }, } }, ["BrittleGroundWhileMovingEldritchImplicit3"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 4 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 4 seconds" }, } }, ["BrittleGroundWhileMovingEldritchImplicit4"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 5 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 5 seconds" }, } }, ["BrittleGroundWhileMovingEldritchImplicit5"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 6 seconds" }, } }, ["BrittleGroundWhileMovingEldritchImplicit6"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 7 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 4 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 4 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 5 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 5 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 6 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 7 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 8 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 8 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 9 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 9 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 6 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 7 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 8 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 8 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 9 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 9 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 10 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 10 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 11 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 11 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 4 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 4 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 5 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 5 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 6 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 7 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 8 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 8 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 9 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 9 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 6 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 7 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 8 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 8 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 9 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 9 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 10 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 10 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 11 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 11 seconds" }, } }, ["SappedGroundWhileMovingEldritchImplicit1"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 2 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 2 seconds" }, } }, ["SappedGroundWhileMovingEldritchImplicit2"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 3 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 3 seconds" }, } }, ["SappedGroundWhileMovingEldritchImplicit3"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 4 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 4 seconds" }, } }, ["SappedGroundWhileMovingEldritchImplicit4"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 5 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 5 seconds" }, } }, ["SappedGroundWhileMovingEldritchImplicit5"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 6 seconds" }, } }, ["SappedGroundWhileMovingEldritchImplicit6"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 7 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 4 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 4 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 5 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 5 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 6 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 7 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 8 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 8 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 9 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 9 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 6 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 7 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 8 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 8 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 9 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 9 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 10 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 10 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 11 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 11 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 4 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 4 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 5 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 5 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 6 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 7 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 8 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 8 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 9 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 9 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 6 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 7 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 8 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 8 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 9 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 9 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 10 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 10 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 11 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 11 seconds" }, } }, ["FireResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(13-14)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(13-14)% to Fire Resistance" }, } }, ["FireResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(15-16)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-16)% to Fire Resistance" }, } }, ["FireResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(17-18)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(17-18)% to Fire Resistance" }, } }, ["FireResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(19-20)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(19-20)% to Fire Resistance" }, } }, ["FireResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(21-22)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(21-22)% to Fire Resistance" }, } }, ["FireResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(23-24)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(23-24)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(19-20)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(21-22)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(23-24)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(25-26)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(27-28)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(29-30)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(25-26)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(27-28)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(29-30)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(31-32)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(33-34)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(35-36)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(19-20)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(21-22)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(23-24)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(25-26)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(27-28)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(29-30)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(25-26)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(27-28)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(29-30)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(31-32)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(33-34)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(35-36)% to Fire Resistance" }, } }, ["ColdResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(13-14)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(13-14)% to Cold Resistance" }, } }, ["ColdResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(15-16)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-16)% to Cold Resistance" }, } }, ["ColdResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(17-18)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(17-18)% to Cold Resistance" }, } }, ["ColdResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(19-20)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(19-20)% to Cold Resistance" }, } }, ["ColdResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(21-22)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-22)% to Cold Resistance" }, } }, ["ColdResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(23-24)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(23-24)% to Cold Resistance" }, } }, - ["ColdResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(19-20)% to Cold Resistance" }, [4074358700] = { "" }, } }, - ["ColdResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-22)% to Cold Resistance" }, [4074358700] = { "" }, } }, - ["ColdResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(23-24)% to Cold Resistance" }, [4074358700] = { "" }, } }, - ["ColdResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-26)% to Cold Resistance" }, [4074358700] = { "" }, } }, - ["ColdResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(27-28)% to Cold Resistance" }, [4074358700] = { "" }, } }, - ["ColdResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(29-30)% to Cold Resistance" }, [4074358700] = { "" }, } }, - ["ColdResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-26)% to Cold Resistance" }, [3283106665] = { "" }, } }, - ["ColdResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(27-28)% to Cold Resistance" }, [3283106665] = { "" }, } }, - ["ColdResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(29-30)% to Cold Resistance" }, [3283106665] = { "" }, } }, - ["ColdResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(31-32)% to Cold Resistance" }, [3283106665] = { "" }, } }, - ["ColdResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(33-34)% to Cold Resistance" }, [3283106665] = { "" }, } }, - ["ColdResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(35-36)% to Cold Resistance" }, [3283106665] = { "" }, } }, + ["ColdResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(19-20)% to Cold Resistance" }, } }, + ["ColdResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-22)% to Cold Resistance" }, } }, + ["ColdResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(23-24)% to Cold Resistance" }, } }, + ["ColdResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-26)% to Cold Resistance" }, } }, + ["ColdResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(27-28)% to Cold Resistance" }, } }, + ["ColdResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(29-30)% to Cold Resistance" }, } }, + ["ColdResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-26)% to Cold Resistance" }, } }, + ["ColdResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(27-28)% to Cold Resistance" }, } }, + ["ColdResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(29-30)% to Cold Resistance" }, } }, + ["ColdResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(31-32)% to Cold Resistance" }, } }, + ["ColdResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(33-34)% to Cold Resistance" }, } }, + ["ColdResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(35-36)% to Cold Resistance" }, } }, ["LightningResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(13-14)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(13-14)% to Lightning Resistance" }, } }, ["LightningResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(15-16)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-16)% to Lightning Resistance" }, } }, ["LightningResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(17-18)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(17-18)% to Lightning Resistance" }, } }, ["LightningResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(19-20)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(19-20)% to Lightning Resistance" }, } }, ["LightningResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(21-22)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(21-22)% to Lightning Resistance" }, } }, ["LightningResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(23-24)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(23-24)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(19-20)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(21-22)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(23-24)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(25-26)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(27-28)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(29-30)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(25-26)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(27-28)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(29-30)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(31-32)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(33-34)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(35-36)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(19-20)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(21-22)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(23-24)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(25-26)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(27-28)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(29-30)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(25-26)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(27-28)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(29-30)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(31-32)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(33-34)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(35-36)% to Lightning Resistance" }, } }, ["ChaosResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(6-7)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(6-7)% to Chaos Resistance" }, } }, ["ChaosResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-9)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(8-9)% to Chaos Resistance" }, } }, ["ChaosResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(10-11)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(10-11)% to Chaos Resistance" }, } }, ["ChaosResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(12-13)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(12-13)% to Chaos Resistance" }, } }, ["ChaosResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(14-15)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(14-15)% to Chaos Resistance" }, } }, ["ChaosResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(16-17)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(16-17)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(12-13)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(12-13)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-15)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(14-15)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(16-17)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(16-17)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(18-19)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(18-19)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-21)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(20-21)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(22-23)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(22-23)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(18-19)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(18-19)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(20-21)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(20-21)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(22-23)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(22-23)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(24-25)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(24-25)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-27)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(26-27)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(28-29)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(28-29)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(12-13)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(12-13)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-15)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(14-15)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(16-17)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(16-17)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(18-19)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(18-19)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-21)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-21)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(22-23)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(22-23)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(18-19)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(18-19)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(20-21)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-21)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(22-23)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(22-23)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(24-25)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(24-25)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-27)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(26-27)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(28-29)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(28-29)% to Chaos Resistance" }, } }, ["DamagePerEnduranceChargeEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "4% increased Damage per Endurance Charge" }, } }, ["DamagePerEnduranceChargeEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "4% increased Damage per Endurance Charge" }, } }, ["DamagePerEnduranceChargeEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "5% increased Damage per Endurance Charge" }, } }, ["DamagePerEnduranceChargeEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "5% increased Damage per Endurance Charge" }, } }, ["DamagePerEnduranceChargeEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, } }, ["DamagePerEnduranceChargeEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, } }, - ["DamagePerEnduranceChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "5% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } }, - ["DamagePerEnduranceChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "5% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } }, - ["DamagePerEnduranceChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } }, - ["DamagePerEnduranceChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } }, - ["DamagePerEnduranceChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "7% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } }, - ["DamagePerEnduranceChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "7% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } }, - ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } }, - ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } }, - ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "7% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } }, - ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "7% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } }, - ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "8% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } }, - ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "8% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } }, + ["DamagePerEnduranceChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "5% increased Damage per Endurance Charge" }, } }, + ["DamagePerEnduranceChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "5% increased Damage per Endurance Charge" }, } }, + ["DamagePerEnduranceChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, } }, + ["DamagePerEnduranceChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, } }, + ["DamagePerEnduranceChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "7% increased Damage per Endurance Charge" }, } }, + ["DamagePerEnduranceChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "7% increased Damage per Endurance Charge" }, } }, + ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, } }, + ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, } }, + ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "7% increased Damage per Endurance Charge" }, } }, + ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "7% increased Damage per Endurance Charge" }, } }, + ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "8% increased Damage per Endurance Charge" }, } }, + ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "8% increased Damage per Endurance Charge" }, } }, ["MaximumFireResistanceImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, ["MaximumFireResistanceImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, ["MaximumFireResistanceImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, ["MaximumFireResistanceImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, ["MaximumFireResistanceImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, ["MaximumFireResistanceImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, } }, ["SummonTotemCastSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "10% increased Totem Placement speed" }, } }, ["SummonTotemCastSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "11% increased Totem Placement speed" }, } }, ["SummonTotemCastSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "12% increased Totem Placement speed" }, } }, ["SummonTotemCastSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "13% increased Totem Placement speed" }, } }, ["SummonTotemCastSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "14% increased Totem Placement speed" }, } }, ["SummonTotemCastSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "15% increased Totem Placement speed" }, } }, - ["SummonTotemCastSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "14% increased Totem Placement speed" }, [4074358700] = { "" }, } }, - ["SummonTotemCastSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "15% increased Totem Placement speed" }, [4074358700] = { "" }, } }, - ["SummonTotemCastSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "16% increased Totem Placement speed" }, [4074358700] = { "" }, } }, - ["SummonTotemCastSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "17% increased Totem Placement speed" }, [4074358700] = { "" }, } }, - ["SummonTotemCastSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "18% increased Totem Placement speed" }, [4074358700] = { "" }, } }, - ["SummonTotemCastSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "19% increased Totem Placement speed" }, [4074358700] = { "" }, } }, - ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "18% increased Totem Placement speed" }, [3283106665] = { "" }, } }, - ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "19% increased Totem Placement speed" }, [3283106665] = { "" }, } }, - ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "20% increased Totem Placement speed" }, [3283106665] = { "" }, } }, - ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "21% increased Totem Placement speed" }, [3283106665] = { "" }, } }, - ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "22% increased Totem Placement speed" }, [3283106665] = { "" }, } }, - ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "23% increased Totem Placement speed" }, [3283106665] = { "" }, } }, + ["SummonTotemCastSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "14% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "15% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "16% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "17% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "18% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "19% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "18% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "19% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "20% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "21% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "22% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "23% increased Totem Placement speed" }, } }, ["BrandAttachmentRangeEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "10% increased Brand Attachment range" }, } }, ["BrandAttachmentRangeEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "11% increased Brand Attachment range" }, } }, ["BrandAttachmentRangeEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "12% increased Brand Attachment range" }, } }, ["BrandAttachmentRangeEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "13% increased Brand Attachment range" }, } }, ["BrandAttachmentRangeEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "14% increased Brand Attachment range" }, } }, ["BrandAttachmentRangeEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "15% increased Brand Attachment range" }, } }, - ["BrandAttachmentRangeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "14% increased Brand Attachment range" }, [4074358700] = { "" }, } }, - ["BrandAttachmentRangeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "15% increased Brand Attachment range" }, [4074358700] = { "" }, } }, - ["BrandAttachmentRangeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "16% increased Brand Attachment range" }, [4074358700] = { "" }, } }, - ["BrandAttachmentRangeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "17% increased Brand Attachment range" }, [4074358700] = { "" }, } }, - ["BrandAttachmentRangeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "18% increased Brand Attachment range" }, [4074358700] = { "" }, } }, - ["BrandAttachmentRangeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "19% increased Brand Attachment range" }, [4074358700] = { "" }, } }, - ["BrandAttachmentRangeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "18% increased Brand Attachment range" }, [3283106665] = { "" }, } }, - ["BrandAttachmentRangeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "19% increased Brand Attachment range" }, [3283106665] = { "" }, } }, - ["BrandAttachmentRangeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "20% increased Brand Attachment range" }, [3283106665] = { "" }, } }, - ["BrandAttachmentRangeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "21% increased Brand Attachment range" }, [3283106665] = { "" }, } }, - ["BrandAttachmentRangeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "22% increased Brand Attachment range" }, [3283106665] = { "" }, } }, - ["BrandAttachmentRangeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "23% increased Brand Attachment range" }, [3283106665] = { "" }, } }, + ["BrandAttachmentRangeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "14% increased Brand Attachment range" }, } }, + ["BrandAttachmentRangeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "15% increased Brand Attachment range" }, } }, + ["BrandAttachmentRangeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "16% increased Brand Attachment range" }, } }, + ["BrandAttachmentRangeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "17% increased Brand Attachment range" }, } }, + ["BrandAttachmentRangeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "18% increased Brand Attachment range" }, } }, + ["BrandAttachmentRangeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "19% increased Brand Attachment range" }, } }, + ["BrandAttachmentRangeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "18% increased Brand Attachment range" }, } }, + ["BrandAttachmentRangeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "19% increased Brand Attachment range" }, } }, + ["BrandAttachmentRangeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "20% increased Brand Attachment range" }, } }, + ["BrandAttachmentRangeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "21% increased Brand Attachment range" }, } }, + ["BrandAttachmentRangeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "22% increased Brand Attachment range" }, } }, + ["BrandAttachmentRangeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "23% increased Brand Attachment range" }, } }, ["FireGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(31-33)% increased Effect of the Buff granted by your Flame Golems" }, } }, ["FireGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(34-36)% increased Effect of the Buff granted by your Flame Golems" }, } }, ["FireGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(37-39)% increased Effect of the Buff granted by your Flame Golems" }, } }, ["FireGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(40-42)% increased Effect of the Buff granted by your Flame Golems" }, } }, ["FireGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(43-45)% increased Effect of the Buff granted by your Flame Golems" }, } }, ["FireGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(46-48)% increased Effect of the Buff granted by your Flame Golems" }, } }, - ["FireGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(43-45)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } }, - ["FireGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(46-48)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } }, - ["FireGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(49-51)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } }, - ["FireGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(52-54)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } }, - ["FireGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(55-57)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } }, - ["FireGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(58-60)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } }, - ["FireGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(55-57)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } }, - ["FireGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(58-60)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } }, - ["FireGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(61-63)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } }, - ["FireGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(64-66)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } }, - ["FireGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(67-69)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } }, - ["FireGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(70-72)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } }, + ["FireGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(43-45)% increased Effect of the Buff granted by your Flame Golems" }, } }, + ["FireGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(46-48)% increased Effect of the Buff granted by your Flame Golems" }, } }, + ["FireGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(49-51)% increased Effect of the Buff granted by your Flame Golems" }, } }, + ["FireGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(52-54)% increased Effect of the Buff granted by your Flame Golems" }, } }, + ["FireGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(55-57)% increased Effect of the Buff granted by your Flame Golems" }, } }, + ["FireGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(58-60)% increased Effect of the Buff granted by your Flame Golems" }, } }, + ["FireGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(55-57)% increased Effect of the Buff granted by your Flame Golems" }, } }, + ["FireGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(58-60)% increased Effect of the Buff granted by your Flame Golems" }, } }, + ["FireGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(61-63)% increased Effect of the Buff granted by your Flame Golems" }, } }, + ["FireGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(64-66)% increased Effect of the Buff granted by your Flame Golems" }, } }, + ["FireGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(67-69)% increased Effect of the Buff granted by your Flame Golems" }, } }, + ["FireGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(70-72)% increased Effect of the Buff granted by your Flame Golems" }, } }, ["IceGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(31-33)% increased Effect of the Buff granted by your Ice Golems" }, } }, ["IceGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(34-36)% increased Effect of the Buff granted by your Ice Golems" }, } }, ["IceGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(37-39)% increased Effect of the Buff granted by your Ice Golems" }, } }, ["IceGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(40-42)% increased Effect of the Buff granted by your Ice Golems" }, } }, ["IceGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(43-45)% increased Effect of the Buff granted by your Ice Golems" }, } }, ["IceGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(46-48)% increased Effect of the Buff granted by your Ice Golems" }, } }, - ["IceGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(43-45)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } }, - ["IceGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(46-48)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } }, - ["IceGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(49-51)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } }, - ["IceGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(52-54)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } }, - ["IceGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(55-57)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } }, - ["IceGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(58-60)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } }, - ["IceGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(55-57)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } }, - ["IceGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(58-60)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } }, - ["IceGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(61-63)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } }, - ["IceGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(64-66)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } }, - ["IceGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(67-69)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } }, - ["IceGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(70-72)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } }, + ["IceGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(43-45)% increased Effect of the Buff granted by your Ice Golems" }, } }, + ["IceGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(46-48)% increased Effect of the Buff granted by your Ice Golems" }, } }, + ["IceGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(49-51)% increased Effect of the Buff granted by your Ice Golems" }, } }, + ["IceGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(52-54)% increased Effect of the Buff granted by your Ice Golems" }, } }, + ["IceGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(55-57)% increased Effect of the Buff granted by your Ice Golems" }, } }, + ["IceGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(58-60)% increased Effect of the Buff granted by your Ice Golems" }, } }, + ["IceGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(55-57)% increased Effect of the Buff granted by your Ice Golems" }, } }, + ["IceGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(58-60)% increased Effect of the Buff granted by your Ice Golems" }, } }, + ["IceGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(61-63)% increased Effect of the Buff granted by your Ice Golems" }, } }, + ["IceGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(64-66)% increased Effect of the Buff granted by your Ice Golems" }, } }, + ["IceGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(67-69)% increased Effect of the Buff granted by your Ice Golems" }, } }, + ["IceGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(70-72)% increased Effect of the Buff granted by your Ice Golems" }, } }, ["LightningGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(31-33)% increased Effect of the Buff granted by your Lightning Golems" }, } }, ["LightningGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(34-36)% increased Effect of the Buff granted by your Lightning Golems" }, } }, ["LightningGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(37-39)% increased Effect of the Buff granted by your Lightning Golems" }, } }, ["LightningGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(40-42)% increased Effect of the Buff granted by your Lightning Golems" }, } }, ["LightningGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(43-45)% increased Effect of the Buff granted by your Lightning Golems" }, } }, ["LightningGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(46-48)% increased Effect of the Buff granted by your Lightning Golems" }, } }, - ["LightningGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(43-45)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } }, - ["LightningGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(46-48)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } }, - ["LightningGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(49-51)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } }, - ["LightningGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(52-54)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } }, - ["LightningGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(55-57)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } }, - ["LightningGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(58-60)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } }, - ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(55-57)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } }, - ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(58-60)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } }, - ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(61-63)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } }, - ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(64-66)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } }, - ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(67-69)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } }, - ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(70-72)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } }, + ["LightningGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(43-45)% increased Effect of the Buff granted by your Lightning Golems" }, } }, + ["LightningGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(46-48)% increased Effect of the Buff granted by your Lightning Golems" }, } }, + ["LightningGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(49-51)% increased Effect of the Buff granted by your Lightning Golems" }, } }, + ["LightningGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(52-54)% increased Effect of the Buff granted by your Lightning Golems" }, } }, + ["LightningGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(55-57)% increased Effect of the Buff granted by your Lightning Golems" }, } }, + ["LightningGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(58-60)% increased Effect of the Buff granted by your Lightning Golems" }, } }, + ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(55-57)% increased Effect of the Buff granted by your Lightning Golems" }, } }, + ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(58-60)% increased Effect of the Buff granted by your Lightning Golems" }, } }, + ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(61-63)% increased Effect of the Buff granted by your Lightning Golems" }, } }, + ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(64-66)% increased Effect of the Buff granted by your Lightning Golems" }, } }, + ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(67-69)% increased Effect of the Buff granted by your Lightning Golems" }, } }, + ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(70-72)% increased Effect of the Buff granted by your Lightning Golems" }, } }, ["RockGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(31-33)% increased Effect of the Buff granted by your Stone Golems" }, } }, ["RockGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(34-36)% increased Effect of the Buff granted by your Stone Golems" }, } }, ["RockGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(37-39)% increased Effect of the Buff granted by your Stone Golems" }, } }, ["RockGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(40-42)% increased Effect of the Buff granted by your Stone Golems" }, } }, ["RockGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(43-45)% increased Effect of the Buff granted by your Stone Golems" }, } }, ["RockGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(46-48)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(43-45)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(46-48)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(49-51)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(52-54)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(55-57)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(58-60)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(55-57)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(58-60)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(61-63)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(64-66)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(67-69)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(70-72)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(43-45)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(46-48)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(49-51)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(52-54)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(55-57)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(58-60)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(55-57)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(58-60)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(61-63)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(64-66)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(67-69)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(70-72)% increased Effect of the Buff granted by your Stone Golems" }, } }, ["ChaosGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(31-33)% increased Effect of the Buff granted by your Chaos Golems" }, } }, ["ChaosGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(34-36)% increased Effect of the Buff granted by your Chaos Golems" }, } }, ["ChaosGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(37-39)% increased Effect of the Buff granted by your Chaos Golems" }, } }, ["ChaosGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(40-42)% increased Effect of the Buff granted by your Chaos Golems" }, } }, ["ChaosGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(43-45)% increased Effect of the Buff granted by your Chaos Golems" }, } }, ["ChaosGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(46-48)% increased Effect of the Buff granted by your Chaos Golems" }, } }, - ["ChaosGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(43-45)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } }, - ["ChaosGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(46-48)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } }, - ["ChaosGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(49-51)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } }, - ["ChaosGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(52-54)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } }, - ["ChaosGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(55-57)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } }, - ["ChaosGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(58-60)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } }, - ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(55-57)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } }, - ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(58-60)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } }, - ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(61-63)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } }, - ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(64-66)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } }, - ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(67-69)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } }, - ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(70-72)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } }, + ["ChaosGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(43-45)% increased Effect of the Buff granted by your Chaos Golems" }, } }, + ["ChaosGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(46-48)% increased Effect of the Buff granted by your Chaos Golems" }, } }, + ["ChaosGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(49-51)% increased Effect of the Buff granted by your Chaos Golems" }, } }, + ["ChaosGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(52-54)% increased Effect of the Buff granted by your Chaos Golems" }, } }, + ["ChaosGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(55-57)% increased Effect of the Buff granted by your Chaos Golems" }, } }, + ["ChaosGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(58-60)% increased Effect of the Buff granted by your Chaos Golems" }, } }, + ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(55-57)% increased Effect of the Buff granted by your Chaos Golems" }, } }, + ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(58-60)% increased Effect of the Buff granted by your Chaos Golems" }, } }, + ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(61-63)% increased Effect of the Buff granted by your Chaos Golems" }, } }, + ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(64-66)% increased Effect of the Buff granted by your Chaos Golems" }, } }, + ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(67-69)% increased Effect of the Buff granted by your Chaos Golems" }, } }, + ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(70-72)% increased Effect of the Buff granted by your Chaos Golems" }, } }, ["CarrionGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(31-33)% increased Effect of the Buff granted by your Carrion Golems" }, } }, ["CarrionGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(34-36)% increased Effect of the Buff granted by your Carrion Golems" }, } }, ["CarrionGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(37-39)% increased Effect of the Buff granted by your Carrion Golems" }, } }, ["CarrionGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(40-42)% increased Effect of the Buff granted by your Carrion Golems" }, } }, ["CarrionGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(43-45)% increased Effect of the Buff granted by your Carrion Golems" }, } }, ["CarrionGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(46-48)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(43-45)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(46-48)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(49-51)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(52-54)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(55-57)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(58-60)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(55-57)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(58-60)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(61-63)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(64-66)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(67-69)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(70-72)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(43-45)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(46-48)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(49-51)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(52-54)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(55-57)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(58-60)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(55-57)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(58-60)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(61-63)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(64-66)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(67-69)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(70-72)% increased Effect of the Buff granted by your Carrion Golems" }, } }, ["FleshOfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Flesh Offering has (6-7)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (6-7)% increased Effect" }, } }, ["FleshOfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Flesh Offering has (8-9)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (8-9)% increased Effect" }, } }, ["FleshOfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Flesh Offering has (10-11)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (10-11)% increased Effect" }, } }, ["FleshOfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Flesh Offering has (12-13)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (12-13)% increased Effect" }, } }, ["FleshOfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Flesh Offering has (14-15)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (14-15)% increased Effect" }, } }, ["FleshOfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Flesh Offering has (16-17)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (16-17)% increased Effect" }, } }, - ["FleshOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (12-13)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (12-13)% increased Effect" }, [4074358700] = { "" }, } }, - ["FleshOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (14-15)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (14-15)% increased Effect" }, [4074358700] = { "" }, } }, - ["FleshOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (16-17)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (16-17)% increased Effect" }, [4074358700] = { "" }, } }, - ["FleshOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (18-19)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (18-19)% increased Effect" }, [4074358700] = { "" }, } }, - ["FleshOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (20-21)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (20-21)% increased Effect" }, [4074358700] = { "" }, } }, - ["FleshOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (22-23)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (22-23)% increased Effect" }, [4074358700] = { "" }, } }, - ["FleshOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (18-19)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (18-19)% increased Effect" }, [3283106665] = { "" }, } }, - ["FleshOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (20-21)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (20-21)% increased Effect" }, [3283106665] = { "" }, } }, - ["FleshOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (22-23)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (22-23)% increased Effect" }, [3283106665] = { "" }, } }, - ["FleshOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (24-25)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (24-25)% increased Effect" }, [3283106665] = { "" }, } }, - ["FleshOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (26-27)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (26-27)% increased Effect" }, [3283106665] = { "" }, } }, - ["FleshOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (28-29)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (28-29)% increased Effect" }, [3283106665] = { "" }, } }, + ["FleshOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (12-13)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (12-13)% increased Effect" }, } }, + ["FleshOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (14-15)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (14-15)% increased Effect" }, } }, + ["FleshOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (16-17)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (16-17)% increased Effect" }, } }, + ["FleshOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (18-19)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (18-19)% increased Effect" }, } }, + ["FleshOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (20-21)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (20-21)% increased Effect" }, } }, + ["FleshOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (22-23)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (22-23)% increased Effect" }, } }, + ["FleshOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (18-19)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (18-19)% increased Effect" }, } }, + ["FleshOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (20-21)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (20-21)% increased Effect" }, } }, + ["FleshOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (22-23)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (22-23)% increased Effect" }, } }, + ["FleshOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (24-25)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (24-25)% increased Effect" }, } }, + ["FleshOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (26-27)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (26-27)% increased Effect" }, } }, + ["FleshOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (28-29)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (28-29)% increased Effect" }, } }, ["BoneOfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Bone Offering has (6-7)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (6-7)% increased Effect" }, } }, ["BoneOfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Bone Offering has (8-9)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (8-9)% increased Effect" }, } }, ["BoneOfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Bone Offering has (10-11)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (10-11)% increased Effect" }, } }, ["BoneOfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Bone Offering has (12-13)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (12-13)% increased Effect" }, } }, ["BoneOfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Bone Offering has (14-15)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (14-15)% increased Effect" }, } }, ["BoneOfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Bone Offering has (16-17)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (16-17)% increased Effect" }, } }, - ["BoneOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (12-13)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (12-13)% increased Effect" }, [4074358700] = { "" }, } }, - ["BoneOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (14-15)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (14-15)% increased Effect" }, [4074358700] = { "" }, } }, - ["BoneOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (16-17)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (16-17)% increased Effect" }, [4074358700] = { "" }, } }, - ["BoneOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (18-19)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (18-19)% increased Effect" }, [4074358700] = { "" }, } }, - ["BoneOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (20-21)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (20-21)% increased Effect" }, [4074358700] = { "" }, } }, - ["BoneOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (22-23)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (22-23)% increased Effect" }, [4074358700] = { "" }, } }, - ["BoneOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (18-19)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (18-19)% increased Effect" }, [3283106665] = { "" }, } }, - ["BoneOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (20-21)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (20-21)% increased Effect" }, [3283106665] = { "" }, } }, - ["BoneOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (22-23)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (22-23)% increased Effect" }, [3283106665] = { "" }, } }, - ["BoneOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (24-25)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (24-25)% increased Effect" }, [3283106665] = { "" }, } }, - ["BoneOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (26-27)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (26-27)% increased Effect" }, [3283106665] = { "" }, } }, - ["BoneOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (28-29)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (28-29)% increased Effect" }, [3283106665] = { "" }, } }, + ["BoneOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (12-13)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (12-13)% increased Effect" }, } }, + ["BoneOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (14-15)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (14-15)% increased Effect" }, } }, + ["BoneOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (16-17)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (16-17)% increased Effect" }, } }, + ["BoneOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (18-19)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (18-19)% increased Effect" }, } }, + ["BoneOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (20-21)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (20-21)% increased Effect" }, } }, + ["BoneOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (22-23)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (22-23)% increased Effect" }, } }, + ["BoneOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (18-19)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (18-19)% increased Effect" }, } }, + ["BoneOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (20-21)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (20-21)% increased Effect" }, } }, + ["BoneOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (22-23)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (22-23)% increased Effect" }, } }, + ["BoneOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (24-25)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (24-25)% increased Effect" }, } }, + ["BoneOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (26-27)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (26-27)% increased Effect" }, } }, + ["BoneOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (28-29)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (28-29)% increased Effect" }, } }, ["SpiritOfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Spirit Offering has (6-7)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (6-7)% increased Effect" }, } }, ["SpiritOfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Spirit Offering has (8-9)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (8-9)% increased Effect" }, } }, ["SpiritOfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Spirit Offering has (10-11)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (10-11)% increased Effect" }, } }, ["SpiritOfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Spirit Offering has (12-13)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (12-13)% increased Effect" }, } }, ["SpiritOfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Spirit Offering has (14-15)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (14-15)% increased Effect" }, } }, ["SpiritOfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Spirit Offering has (16-17)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (16-17)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (12-13)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (12-13)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (14-15)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (14-15)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (16-17)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (16-17)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (18-19)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (18-19)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (20-21)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (20-21)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (22-23)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (22-23)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (18-19)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (18-19)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (20-21)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (20-21)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (22-23)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (22-23)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (24-25)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (24-25)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (26-27)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (26-27)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (28-29)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (28-29)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (12-13)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (12-13)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (14-15)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (14-15)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (16-17)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (16-17)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (18-19)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (18-19)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (20-21)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (20-21)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (22-23)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (22-23)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (18-19)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (18-19)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (20-21)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (20-21)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (22-23)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (22-23)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (24-25)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (24-25)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (26-27)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (26-27)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (28-29)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (28-29)% increased Effect" }, } }, ["AvoidIgniteEldritchImplicit1"] = { type = "Exarch", affix = "", "(33-35)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(33-35)% chance to Avoid being Ignited" }, } }, ["AvoidIgniteEldritchImplicit2"] = { type = "Exarch", affix = "", "(36-38)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(36-38)% chance to Avoid being Ignited" }, } }, ["AvoidIgniteEldritchImplicit3"] = { type = "Exarch", affix = "", "(39-41)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(39-41)% chance to Avoid being Ignited" }, } }, ["AvoidIgniteEldritchImplicit4"] = { type = "Exarch", affix = "", "(42-44)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(42-44)% chance to Avoid being Ignited" }, } }, ["AvoidIgniteEldritchImplicit5"] = { type = "Exarch", affix = "", "(45-47)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(45-47)% chance to Avoid being Ignited" }, } }, ["AvoidIgniteEldritchImplicit6"] = { type = "Exarch", affix = "", "(48-50)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(48-50)% chance to Avoid being Ignited" }, } }, - ["AvoidIgniteEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(42-44)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } }, - ["AvoidIgniteEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(45-47)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } }, - ["AvoidIgniteEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(48-50)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } }, - ["AvoidIgniteEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(51-53)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } }, - ["AvoidIgniteEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(54-57)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } }, - ["AvoidIgniteEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(58-61)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } }, - ["AvoidIgniteEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(51-53)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } }, - ["AvoidIgniteEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(54-56)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } }, - ["AvoidIgniteEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(57-59)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } }, - ["AvoidIgniteEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(60-62)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } }, - ["AvoidIgniteEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(63-66)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } }, - ["AvoidIgniteEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(67-70)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } }, + ["AvoidIgniteEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(42-44)% chance to Avoid being Ignited" }, } }, + ["AvoidIgniteEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(45-47)% chance to Avoid being Ignited" }, } }, + ["AvoidIgniteEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(48-50)% chance to Avoid being Ignited" }, } }, + ["AvoidIgniteEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(51-53)% chance to Avoid being Ignited" }, } }, + ["AvoidIgniteEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(54-57)% chance to Avoid being Ignited" }, } }, + ["AvoidIgniteEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(58-61)% chance to Avoid being Ignited" }, } }, + ["AvoidIgniteEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(51-53)% chance to Avoid being Ignited" }, } }, + ["AvoidIgniteEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(54-56)% chance to Avoid being Ignited" }, } }, + ["AvoidIgniteEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(57-59)% chance to Avoid being Ignited" }, } }, + ["AvoidIgniteEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(60-62)% chance to Avoid being Ignited" }, } }, + ["AvoidIgniteEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(63-66)% chance to Avoid being Ignited" }, } }, + ["AvoidIgniteEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(67-70)% chance to Avoid being Ignited" }, } }, ["AvoidFreezeEldritchImplicit1"] = { type = "Exarch", affix = "", "(33-35)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(33-35)% chance to Avoid being Frozen" }, } }, ["AvoidFreezeEldritchImplicit2"] = { type = "Exarch", affix = "", "(36-38)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(36-38)% chance to Avoid being Frozen" }, } }, ["AvoidFreezeEldritchImplicit3"] = { type = "Exarch", affix = "", "(39-41)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(39-41)% chance to Avoid being Frozen" }, } }, ["AvoidFreezeEldritchImplicit4"] = { type = "Exarch", affix = "", "(42-44)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(42-44)% chance to Avoid being Frozen" }, } }, ["AvoidFreezeEldritchImplicit5"] = { type = "Exarch", affix = "", "(45-47)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(45-47)% chance to Avoid being Frozen" }, } }, ["AvoidFreezeEldritchImplicit6"] = { type = "Exarch", affix = "", "(48-50)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(48-50)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(42-44)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(45-47)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(48-50)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(51-53)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(54-57)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(58-61)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(51-53)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(54-56)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(57-59)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(60-62)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(63-66)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(67-70)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(42-44)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(45-47)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(48-50)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(51-53)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(54-57)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(58-61)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(51-53)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(54-56)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(57-59)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(60-62)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(63-66)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(67-70)% chance to Avoid being Frozen" }, } }, ["AvoidShockEldritchImplicit1"] = { type = "Exarch", affix = "", "(33-35)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(33-35)% chance to Avoid being Shocked" }, } }, ["AvoidShockEldritchImplicit2"] = { type = "Exarch", affix = "", "(36-38)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(36-38)% chance to Avoid being Shocked" }, } }, ["AvoidShockEldritchImplicit3"] = { type = "Exarch", affix = "", "(39-41)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(39-41)% chance to Avoid being Shocked" }, } }, ["AvoidShockEldritchImplicit4"] = { type = "Exarch", affix = "", "(42-44)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(42-44)% chance to Avoid being Shocked" }, } }, ["AvoidShockEldritchImplicit5"] = { type = "Exarch", affix = "", "(45-47)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(45-47)% chance to Avoid being Shocked" }, } }, ["AvoidShockEldritchImplicit6"] = { type = "Exarch", affix = "", "(48-50)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(48-50)% chance to Avoid being Shocked" }, } }, - ["AvoidShockEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(42-44)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } }, - ["AvoidShockEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(45-47)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } }, - ["AvoidShockEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(48-50)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } }, - ["AvoidShockEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(51-53)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } }, - ["AvoidShockEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(54-57)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } }, - ["AvoidShockEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(58-61)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } }, - ["AvoidShockEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(51-53)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } }, - ["AvoidShockEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(54-56)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } }, - ["AvoidShockEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(57-59)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } }, - ["AvoidShockEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(60-62)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } }, - ["AvoidShockEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(63-66)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } }, - ["AvoidShockEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(67-70)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } }, + ["AvoidShockEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(42-44)% chance to Avoid being Shocked" }, } }, + ["AvoidShockEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(45-47)% chance to Avoid being Shocked" }, } }, + ["AvoidShockEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(48-50)% chance to Avoid being Shocked" }, } }, + ["AvoidShockEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(51-53)% chance to Avoid being Shocked" }, } }, + ["AvoidShockEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(54-57)% chance to Avoid being Shocked" }, } }, + ["AvoidShockEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(58-61)% chance to Avoid being Shocked" }, } }, + ["AvoidShockEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(51-53)% chance to Avoid being Shocked" }, } }, + ["AvoidShockEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(54-56)% chance to Avoid being Shocked" }, } }, + ["AvoidShockEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(57-59)% chance to Avoid being Shocked" }, } }, + ["AvoidShockEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(60-62)% chance to Avoid being Shocked" }, } }, + ["AvoidShockEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(63-66)% chance to Avoid being Shocked" }, } }, + ["AvoidShockEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(67-70)% chance to Avoid being Shocked" }, } }, ["AvoidStunEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(15-17)% chance to Avoid being Stunned" }, } }, ["AvoidStunEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(18-20)% chance to Avoid being Stunned" }, } }, ["AvoidStunEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(21-23)% chance to Avoid being Stunned" }, } }, ["AvoidStunEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(24-26)% chance to Avoid being Stunned" }, } }, ["AvoidStunEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-29)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(27-29)% chance to Avoid being Stunned" }, } }, ["AvoidStunEldritchImplicit6"] = { type = "Exarch", affix = "", "(30-32)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(30-32)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(24-26)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(27-29)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(30-32)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-35)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(33-35)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (36-38)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(36-38)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (39-41)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(39-41)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(33-35)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(36-38)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(39-41)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(42-44)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(45-47)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(48-50)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(24-26)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(27-29)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(30-32)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-35)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(33-35)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (36-38)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(36-38)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (39-41)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(39-41)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(33-35)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(36-38)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(39-41)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(42-44)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(45-47)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(48-50)% chance to Avoid being Stunned" }, } }, ["OnslaughtEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(6-7)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(6-7)% increased Effect of Onslaught on you" }, } }, ["OnslaughtEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(8-9)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(8-9)% increased Effect of Onslaught on you" }, } }, ["OnslaughtEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(10-11)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(10-11)% increased Effect of Onslaught on you" }, } }, ["OnslaughtEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(12-13)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(12-13)% increased Effect of Onslaught on you" }, } }, ["OnslaughtEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(14-15)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(14-15)% increased Effect of Onslaught on you" }, } }, ["OnslaughtEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(16-17)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(16-17)% increased Effect of Onslaught on you" }, } }, - ["OnslaughtEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(12-13)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } }, - ["OnslaughtEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(14-15)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } }, - ["OnslaughtEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(16-17)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } }, - ["OnslaughtEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(18-19)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } }, - ["OnslaughtEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(20-21)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } }, - ["OnslaughtEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(22-23)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } }, - ["OnslaughtEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(18-19)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } }, - ["OnslaughtEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(20-21)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } }, - ["OnslaughtEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(22-23)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } }, - ["OnslaughtEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(24-25)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } }, - ["OnslaughtEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(26-27)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } }, - ["OnslaughtEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(28-29)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } }, + ["OnslaughtEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(12-13)% increased Effect of Onslaught on you" }, } }, + ["OnslaughtEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(14-15)% increased Effect of Onslaught on you" }, } }, + ["OnslaughtEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(16-17)% increased Effect of Onslaught on you" }, } }, + ["OnslaughtEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(18-19)% increased Effect of Onslaught on you" }, } }, + ["OnslaughtEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(20-21)% increased Effect of Onslaught on you" }, } }, + ["OnslaughtEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(22-23)% increased Effect of Onslaught on you" }, } }, + ["OnslaughtEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(18-19)% increased Effect of Onslaught on you" }, } }, + ["OnslaughtEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(20-21)% increased Effect of Onslaught on you" }, } }, + ["OnslaughtEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(22-23)% increased Effect of Onslaught on you" }, } }, + ["OnslaughtEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(24-25)% increased Effect of Onslaught on you" }, } }, + ["OnslaughtEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(26-27)% increased Effect of Onslaught on you" }, } }, + ["OnslaughtEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(28-29)% increased Effect of Onslaught on you" }, } }, ["LifeRegenerationRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "7% increased Life Regeneration rate" }, } }, ["LifeRegenerationRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "8% increased Life Regeneration rate" }, } }, ["LifeRegenerationRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "9% increased Life Regeneration rate" }, } }, ["LifeRegenerationRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "10% increased Life Regeneration rate" }, } }, ["LifeRegenerationRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "11% increased Life Regeneration rate" }, } }, ["LifeRegenerationRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "12% increased Life Regeneration rate" }, } }, - ["LifeRegenerationRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "10% increased Life Regeneration rate" }, [4074358700] = { "" }, } }, - ["LifeRegenerationRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "11% increased Life Regeneration rate" }, [4074358700] = { "" }, } }, - ["LifeRegenerationRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "12% increased Life Regeneration rate" }, [4074358700] = { "" }, } }, - ["LifeRegenerationRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "13% increased Life Regeneration rate" }, [4074358700] = { "" }, } }, - ["LifeRegenerationRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "14% increased Life Regeneration rate" }, [4074358700] = { "" }, } }, - ["LifeRegenerationRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "15% increased Life Regeneration rate" }, [4074358700] = { "" }, } }, - ["LifeRegenerationRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "13% increased Life Regeneration rate" }, [3283106665] = { "" }, } }, - ["LifeRegenerationRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "14% increased Life Regeneration rate" }, [3283106665] = { "" }, } }, - ["LifeRegenerationRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "15% increased Life Regeneration rate" }, [3283106665] = { "" }, } }, - ["LifeRegenerationRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "16% increased Life Regeneration rate" }, [3283106665] = { "" }, } }, - ["LifeRegenerationRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "17% increased Life Regeneration rate" }, [3283106665] = { "" }, } }, - ["LifeRegenerationRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "18% increased Life Regeneration rate" }, [3283106665] = { "" }, } }, + ["LifeRegenerationRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "10% increased Life Regeneration rate" }, } }, + ["LifeRegenerationRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "11% increased Life Regeneration rate" }, } }, + ["LifeRegenerationRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "12% increased Life Regeneration rate" }, } }, + ["LifeRegenerationRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "13% increased Life Regeneration rate" }, } }, + ["LifeRegenerationRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "14% increased Life Regeneration rate" }, } }, + ["LifeRegenerationRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "15% increased Life Regeneration rate" }, } }, + ["LifeRegenerationRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "13% increased Life Regeneration rate" }, } }, + ["LifeRegenerationRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "14% increased Life Regeneration rate" }, } }, + ["LifeRegenerationRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "15% increased Life Regeneration rate" }, } }, + ["LifeRegenerationRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "16% increased Life Regeneration rate" }, } }, + ["LifeRegenerationRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "17% increased Life Regeneration rate" }, } }, + ["LifeRegenerationRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "18% increased Life Regeneration rate" }, } }, ["ArmourFromHelmetGlovesEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(33-35)% increased Armour from Equipped Helmet and Gloves" }, } }, ["ArmourFromHelmetGlovesEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(36-38)% increased Armour from Equipped Helmet and Gloves" }, } }, ["ArmourFromHelmetGlovesEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(39-41)% increased Armour from Equipped Helmet and Gloves" }, } }, ["ArmourFromHelmetGlovesEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(42-44)% increased Armour from Equipped Helmet and Gloves" }, } }, ["ArmourFromHelmetGlovesEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(45-47)% increased Armour from Equipped Helmet and Gloves" }, } }, ["ArmourFromHelmetGlovesEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(48-50)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(42-44)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(45-47)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(48-50)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(51-53)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(54-57)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(58-61)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(51-53)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(54-56)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(57-59)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(60-62)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(63-66)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(67-70)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [791154540] = { "(42-44)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [791154540] = { "(45-47)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [791154540] = { "(48-50)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [791154540] = { "(51-53)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [791154540] = { "(54-57)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [791154540] = { "(58-61)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [791154540] = { "(51-53)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [791154540] = { "(54-56)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [791154540] = { "(57-59)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [791154540] = { "(60-62)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [791154540] = { "(63-66)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [791154540] = { "(67-70)% increased Armour from Equipped Helmet and Gloves" }, } }, ["FasterIgniteDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 5% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 5% faster" }, } }, ["FasterIgniteDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 6% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 6% faster" }, } }, ["FasterIgniteDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 7% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 7% faster" }, } }, ["FasterIgniteDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 8% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 8% faster" }, } }, ["FasterIgniteDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 9% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 9% faster" }, } }, ["FasterIgniteDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 10% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 10% faster" }, } }, - ["FasterIgniteDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 8% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 8% faster" }, } }, - ["FasterIgniteDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 9% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 9% faster" }, } }, - ["FasterIgniteDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 10% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 10% faster" }, } }, - ["FasterIgniteDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 11% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 11% faster" }, } }, - ["FasterIgniteDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 12% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 12% faster" }, } }, - ["FasterIgniteDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 13% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 13% faster" }, } }, - ["FasterIgniteDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 11% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 11% faster" }, } }, - ["FasterIgniteDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 12% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 12% faster" }, } }, - ["FasterIgniteDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 13% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 13% faster" }, } }, - ["FasterIgniteDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 14% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 14% faster" }, } }, - ["FasterIgniteDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 15% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 15% faster" }, } }, - ["FasterIgniteDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 16% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 16% faster" }, } }, + ["FasterIgniteDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 8% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 8% faster" }, } }, + ["FasterIgniteDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 9% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 9% faster" }, } }, + ["FasterIgniteDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 10% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 10% faster" }, } }, + ["FasterIgniteDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 11% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 11% faster" }, } }, + ["FasterIgniteDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 12% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 12% faster" }, } }, + ["FasterIgniteDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 13% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 13% faster" }, } }, + ["FasterIgniteDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 11% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 11% faster" }, } }, + ["FasterIgniteDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 12% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 12% faster" }, } }, + ["FasterIgniteDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 13% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 13% faster" }, } }, + ["FasterIgniteDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 14% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 14% faster" }, } }, + ["FasterIgniteDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 15% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 15% faster" }, } }, + ["FasterIgniteDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 16% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 16% faster" }, } }, ["FasterPoisonDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 5% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 5% faster" }, } }, ["FasterPoisonDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 6% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 6% faster" }, } }, ["FasterPoisonDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 7% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 7% faster" }, } }, ["FasterPoisonDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 8% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 8% faster" }, } }, ["FasterPoisonDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 9% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 9% faster" }, } }, ["FasterPoisonDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 10% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 10% faster" }, } }, - ["FasterPoisonDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 8% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 8% faster" }, [4074358700] = { "" }, } }, - ["FasterPoisonDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 9% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 9% faster" }, [4074358700] = { "" }, } }, - ["FasterPoisonDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 10% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 10% faster" }, [4074358700] = { "" }, } }, - ["FasterPoisonDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 11% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 11% faster" }, [4074358700] = { "" }, } }, - ["FasterPoisonDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 12% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 12% faster" }, [4074358700] = { "" }, } }, - ["FasterPoisonDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 13% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 13% faster" }, [4074358700] = { "" }, } }, - ["FasterPoisonDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 11% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 11% faster" }, [3283106665] = { "" }, } }, - ["FasterPoisonDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 12% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 12% faster" }, [3283106665] = { "" }, } }, - ["FasterPoisonDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 13% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 13% faster" }, [3283106665] = { "" }, } }, - ["FasterPoisonDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 14% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 14% faster" }, [3283106665] = { "" }, } }, - ["FasterPoisonDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 15% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 15% faster" }, [3283106665] = { "" }, } }, - ["FasterPoisonDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 16% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 16% faster" }, [3283106665] = { "" }, } }, + ["FasterPoisonDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 8% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 8% faster" }, } }, + ["FasterPoisonDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 9% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 9% faster" }, } }, + ["FasterPoisonDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 10% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 10% faster" }, } }, + ["FasterPoisonDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 11% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 11% faster" }, } }, + ["FasterPoisonDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 12% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 12% faster" }, } }, + ["FasterPoisonDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 13% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 13% faster" }, } }, + ["FasterPoisonDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 11% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 11% faster" }, } }, + ["FasterPoisonDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 12% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 12% faster" }, } }, + ["FasterPoisonDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 13% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 13% faster" }, } }, + ["FasterPoisonDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 14% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 14% faster" }, } }, + ["FasterPoisonDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 15% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 15% faster" }, } }, + ["FasterPoisonDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 16% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 16% faster" }, } }, ["FasterBleedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 5% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 5% faster" }, } }, ["FasterBleedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 6% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 6% faster" }, } }, ["FasterBleedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 7% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 7% faster" }, } }, ["FasterBleedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 8% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 8% faster" }, } }, ["FasterBleedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 9% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 9% faster" }, } }, ["FasterBleedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 10% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 10% faster" }, } }, - ["FasterBleedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 8% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 8% faster" }, [4074358700] = { "" }, } }, - ["FasterBleedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 9% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 9% faster" }, [4074358700] = { "" }, } }, - ["FasterBleedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 10% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 10% faster" }, [4074358700] = { "" }, } }, - ["FasterBleedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 11% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 11% faster" }, [4074358700] = { "" }, } }, - ["FasterBleedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 12% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 12% faster" }, [4074358700] = { "" }, } }, - ["FasterBleedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 13% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 13% faster" }, [4074358700] = { "" }, } }, - ["FasterBleedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 11% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 11% faster" }, [3283106665] = { "" }, } }, - ["FasterBleedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 12% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 12% faster" }, [3283106665] = { "" }, } }, - ["FasterBleedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 13% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 13% faster" }, [3283106665] = { "" }, } }, - ["FasterBleedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 14% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 14% faster" }, [3283106665] = { "" }, } }, - ["FasterBleedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 15% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 15% faster" }, [3283106665] = { "" }, } }, - ["FasterBleedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 16% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 16% faster" }, [3283106665] = { "" }, } }, + ["FasterBleedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 8% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 8% faster" }, } }, + ["FasterBleedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 9% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 9% faster" }, } }, + ["FasterBleedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 10% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 10% faster" }, } }, + ["FasterBleedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 11% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 11% faster" }, } }, + ["FasterBleedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 12% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 12% faster" }, } }, + ["FasterBleedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 13% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 13% faster" }, } }, + ["FasterBleedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 11% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 11% faster" }, } }, + ["FasterBleedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 12% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 12% faster" }, } }, + ["FasterBleedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 13% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 13% faster" }, } }, + ["FasterBleedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 14% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 14% faster" }, } }, + ["FasterBleedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 15% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 15% faster" }, } }, + ["FasterBleedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 16% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 16% faster" }, } }, ["PhysicalAddedAsFireEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 4% of Physical Damage as Extra Fire Damage" }, } }, ["PhysicalAddedAsFireEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 4% of Physical Damage as Extra Fire Damage" }, } }, ["PhysicalAddedAsFireEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 5% of Physical Damage as Extra Fire Damage" }, } }, ["PhysicalAddedAsFireEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 5% of Physical Damage as Extra Fire Damage" }, } }, ["PhysicalAddedAsFireEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 6% of Physical Damage as Extra Fire Damage" }, } }, ["PhysicalAddedAsFireEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 6% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 6% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 6% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 7% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 7% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 8% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 8% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 8% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 8% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 9% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 9% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 10% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 10% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 6% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 6% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 7% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 7% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 8% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 8% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 8% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 8% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 9% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 9% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 10% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 10% of Physical Damage as Extra Fire Damage" }, } }, ["PhysicalAddedAsColdEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 4% of Physical Damage as Extra Cold Damage" }, } }, ["PhysicalAddedAsColdEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 4% of Physical Damage as Extra Cold Damage" }, } }, ["PhysicalAddedAsColdEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 5% of Physical Damage as Extra Cold Damage" }, } }, ["PhysicalAddedAsColdEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 5% of Physical Damage as Extra Cold Damage" }, } }, ["PhysicalAddedAsColdEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 6% of Physical Damage as Extra Cold Damage" }, } }, ["PhysicalAddedAsColdEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 6% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsColdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 6% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } }, - ["PhysicalAddedAsColdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 6% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } }, - ["PhysicalAddedAsColdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 7% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } }, - ["PhysicalAddedAsColdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 7% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } }, - ["PhysicalAddedAsColdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 8% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } }, - ["PhysicalAddedAsColdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 8% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } }, - ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 8% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } }, - ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 8% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } }, - ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 9% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } }, - ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 9% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } }, - ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 10% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } }, - ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 10% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } }, + ["PhysicalAddedAsColdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 6% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsColdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 6% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsColdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 7% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsColdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 7% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsColdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 8% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsColdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 8% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 8% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 8% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 9% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 9% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 10% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 10% of Physical Damage as Extra Cold Damage" }, } }, ["PhysicalAddedAsLightningEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 4% of Physical Damage as Extra Lightning Damage" }, } }, ["PhysicalAddedAsLightningEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 4% of Physical Damage as Extra Lightning Damage" }, } }, ["PhysicalAddedAsLightningEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 5% of Physical Damage as Extra Lightning Damage" }, } }, ["PhysicalAddedAsLightningEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 5% of Physical Damage as Extra Lightning Damage" }, } }, ["PhysicalAddedAsLightningEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 6% of Physical Damage as Extra Lightning Damage" }, } }, ["PhysicalAddedAsLightningEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 6% of Physical Damage as Extra Lightning Damage" }, } }, - ["PhysicalAddedAsLightningEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 6% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalAddedAsLightningEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 6% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalAddedAsLightningEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 7% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalAddedAsLightningEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 7% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalAddedAsLightningEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 8% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalAddedAsLightningEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 8% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 8% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 8% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 9% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 9% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 10% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 10% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } }, + ["PhysicalAddedAsLightningEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 6% of Physical Damage as Extra Lightning Damage" }, } }, + ["PhysicalAddedAsLightningEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 6% of Physical Damage as Extra Lightning Damage" }, } }, + ["PhysicalAddedAsLightningEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 7% of Physical Damage as Extra Lightning Damage" }, } }, + ["PhysicalAddedAsLightningEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 7% of Physical Damage as Extra Lightning Damage" }, } }, + ["PhysicalAddedAsLightningEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 8% of Physical Damage as Extra Lightning Damage" }, } }, + ["PhysicalAddedAsLightningEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 8% of Physical Damage as Extra Lightning Damage" }, } }, + ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 8% of Physical Damage as Extra Lightning Damage" }, } }, + ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 8% of Physical Damage as Extra Lightning Damage" }, } }, + ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 9% of Physical Damage as Extra Lightning Damage" }, } }, + ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 9% of Physical Damage as Extra Lightning Damage" }, } }, + ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 10% of Physical Damage as Extra Lightning Damage" }, } }, + ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 10% of Physical Damage as Extra Lightning Damage" }, } }, ["PhysicalDamageAddedAsChaosEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 4% of Physical Damage as Extra Chaos Damage" }, } }, ["PhysicalDamageAddedAsChaosEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 4% of Physical Damage as Extra Chaos Damage" }, } }, ["PhysicalDamageAddedAsChaosEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 5% of Physical Damage as Extra Chaos Damage" }, } }, ["PhysicalDamageAddedAsChaosEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 5% of Physical Damage as Extra Chaos Damage" }, } }, ["PhysicalDamageAddedAsChaosEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 6% of Physical Damage as Extra Chaos Damage" }, } }, ["PhysicalDamageAddedAsChaosEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 6% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 6% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 6% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 7% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 7% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 8% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 8% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 8% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 8% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 9% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 9% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 10% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 10% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 6% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 6% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 7% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 7% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 8% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 8% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 8% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 8% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 9% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 9% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 10% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 10% of Physical Damage as Extra Chaos Damage" }, } }, ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit1"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } }, ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit2"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } }, ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit3"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } }, ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit4"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } }, ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit5"] = { type = "Eater", affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit6"] = { type = "Eater", affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.5% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.5% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.5% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.5% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.5% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.5% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.5% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.5% of Life per second per Endurance Charge" }, } }, ["IncreasedStunThresholdEldritchImplicit1"] = { type = "Eater", affix = "", "(15-17)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(15-17)% increased Stun Threshold" }, } }, ["IncreasedStunThresholdEldritchImplicit2"] = { type = "Eater", affix = "", "(18-20)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(18-20)% increased Stun Threshold" }, } }, ["IncreasedStunThresholdEldritchImplicit3"] = { type = "Eater", affix = "", "(21-23)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(21-23)% increased Stun Threshold" }, } }, ["IncreasedStunThresholdEldritchImplicit4"] = { type = "Eater", affix = "", "(24-26)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(24-26)% increased Stun Threshold" }, } }, ["IncreasedStunThresholdEldritchImplicit5"] = { type = "Eater", affix = "", "(27-29)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(27-29)% increased Stun Threshold" }, } }, ["IncreasedStunThresholdEldritchImplicit6"] = { type = "Eater", affix = "", "(30-32)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(30-32)% increased Stun Threshold" }, } }, - ["IncreasedStunThresholdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(24-26)% increased Stun Threshold" }, [4074358700] = { "" }, } }, - ["IncreasedStunThresholdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(27-29)% increased Stun Threshold" }, [4074358700] = { "" }, } }, - ["IncreasedStunThresholdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(30-32)% increased Stun Threshold" }, [4074358700] = { "" }, } }, - ["IncreasedStunThresholdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(33-35)% increased Stun Threshold" }, [4074358700] = { "" }, } }, - ["IncreasedStunThresholdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(36-38)% increased Stun Threshold" }, [4074358700] = { "" }, } }, - ["IncreasedStunThresholdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(39-41)% increased Stun Threshold" }, [4074358700] = { "" }, } }, - ["IncreasedStunThresholdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(33-35)% increased Stun Threshold" }, [3283106665] = { "" }, } }, - ["IncreasedStunThresholdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(36-38)% increased Stun Threshold" }, [3283106665] = { "" }, } }, - ["IncreasedStunThresholdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(39-41)% increased Stun Threshold" }, [3283106665] = { "" }, } }, - ["IncreasedStunThresholdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(42-44)% increased Stun Threshold" }, [3283106665] = { "" }, } }, - ["IncreasedStunThresholdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(45-47)% increased Stun Threshold" }, [3283106665] = { "" }, } }, - ["IncreasedStunThresholdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(48-50)% increased Stun Threshold" }, [3283106665] = { "" }, } }, + ["IncreasedStunThresholdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(24-26)% increased Stun Threshold" }, } }, + ["IncreasedStunThresholdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(27-29)% increased Stun Threshold" }, } }, + ["IncreasedStunThresholdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(30-32)% increased Stun Threshold" }, } }, + ["IncreasedStunThresholdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(33-35)% increased Stun Threshold" }, } }, + ["IncreasedStunThresholdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(36-38)% increased Stun Threshold" }, } }, + ["IncreasedStunThresholdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(39-41)% increased Stun Threshold" }, } }, + ["IncreasedStunThresholdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(33-35)% increased Stun Threshold" }, } }, + ["IncreasedStunThresholdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(36-38)% increased Stun Threshold" }, } }, + ["IncreasedStunThresholdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(39-41)% increased Stun Threshold" }, } }, + ["IncreasedStunThresholdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(42-44)% increased Stun Threshold" }, } }, + ["IncreasedStunThresholdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(45-47)% increased Stun Threshold" }, } }, + ["IncreasedStunThresholdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(48-50)% increased Stun Threshold" }, } }, ["TravelSkillCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "(15-17)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(15-17)% increased Cooldown Recovery Rate of Travel Skills" }, } }, ["TravelSkillCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "(18-20)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(18-20)% increased Cooldown Recovery Rate of Travel Skills" }, } }, ["TravelSkillCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "(21-23)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(21-23)% increased Cooldown Recovery Rate of Travel Skills" }, } }, ["TravelSkillCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "(24-26)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(24-26)% increased Cooldown Recovery Rate of Travel Skills" }, } }, ["TravelSkillCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "(27-29)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(27-29)% increased Cooldown Recovery Rate of Travel Skills" }, } }, ["TravelSkillCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "(30-32)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(30-32)% increased Cooldown Recovery Rate of Travel Skills" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(24-26)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(27-29)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(30-32)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(33-35)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(36-38)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(39-41)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(33-35)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(36-38)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(39-41)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(42-44)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(45-47)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(48-50)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(24-26)% increased Cooldown Recovery Rate of Travel Skills" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(27-29)% increased Cooldown Recovery Rate of Travel Skills" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(30-32)% increased Cooldown Recovery Rate of Travel Skills" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(33-35)% increased Cooldown Recovery Rate of Travel Skills" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(36-38)% increased Cooldown Recovery Rate of Travel Skills" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(39-41)% increased Cooldown Recovery Rate of Travel Skills" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(33-35)% increased Cooldown Recovery Rate of Travel Skills" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(36-38)% increased Cooldown Recovery Rate of Travel Skills" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(39-41)% increased Cooldown Recovery Rate of Travel Skills" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(42-44)% increased Cooldown Recovery Rate of Travel Skills" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(45-47)% increased Cooldown Recovery Rate of Travel Skills" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(48-50)% increased Cooldown Recovery Rate of Travel Skills" }, } }, ["WarcrySpeedEldritchImplicit1"] = { type = "Eater", affix = "", "(15-16)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(15-16)% increased Warcry Speed" }, } }, ["WarcrySpeedEldritchImplicit2"] = { type = "Eater", affix = "", "(17-18)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(17-18)% increased Warcry Speed" }, } }, ["WarcrySpeedEldritchImplicit3"] = { type = "Eater", affix = "", "(19-20)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(19-20)% increased Warcry Speed" }, } }, ["WarcrySpeedEldritchImplicit4"] = { type = "Eater", affix = "", "(21-22)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(21-22)% increased Warcry Speed" }, } }, ["WarcrySpeedEldritchImplicit5"] = { type = "Eater", affix = "", "(23-24)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(23-24)% increased Warcry Speed" }, } }, ["WarcrySpeedEldritchImplicit6"] = { type = "Eater", affix = "", "(25-26)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(25-26)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(19-20)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(21-22)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(23-24)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(25-26)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(27-28)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(29-30)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(23-24)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(25-26)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(27-28)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(29-30)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(31-32)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(33-34)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(19-20)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(21-22)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(23-24)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(25-26)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(27-28)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(29-30)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(23-24)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(25-26)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(27-28)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(29-30)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(31-32)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(33-34)% increased Warcry Speed" }, } }, ["EnduringCryCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "Enduring Cry has (15-17)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (15-17)% increased Cooldown Recovery Rate" }, } }, ["EnduringCryCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "Enduring Cry has (18-20)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (18-20)% increased Cooldown Recovery Rate" }, } }, ["EnduringCryCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "Enduring Cry has (21-23)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (21-23)% increased Cooldown Recovery Rate" }, } }, ["EnduringCryCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "Enduring Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (24-26)% increased Cooldown Recovery Rate" }, } }, ["EnduringCryCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "Enduring Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (27-29)% increased Cooldown Recovery Rate" }, } }, ["EnduringCryCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "Enduring Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (30-32)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (24-26)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (27-29)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (30-32)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (33-35)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (36-38)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (39-41)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (33-35)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (36-38)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (39-41)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (42-44)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (45-47)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (48-50)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (24-26)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (27-29)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (30-32)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (33-35)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (36-38)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (39-41)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (33-35)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (36-38)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (39-41)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (42-44)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (45-47)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (48-50)% increased Cooldown Recovery Rate" }, } }, ["IntimidatingCryCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "Intimidating Cry has (15-17)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (15-17)% increased Cooldown Recovery Rate" }, } }, ["IntimidatingCryCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "Intimidating Cry has (18-20)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (18-20)% increased Cooldown Recovery Rate" }, } }, ["IntimidatingCryCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "Intimidating Cry has (21-23)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (21-23)% increased Cooldown Recovery Rate" }, } }, ["IntimidatingCryCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "Intimidating Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (24-26)% increased Cooldown Recovery Rate" }, } }, ["IntimidatingCryCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "Intimidating Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (27-29)% increased Cooldown Recovery Rate" }, } }, ["IntimidatingCryCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "Intimidating Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (30-32)% increased Cooldown Recovery Rate" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (24-26)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (27-29)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (30-32)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (33-35)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (36-38)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (39-41)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (33-35)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (36-38)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (39-41)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (42-44)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (45-47)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (48-50)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (24-26)% increased Cooldown Recovery Rate" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (27-29)% increased Cooldown Recovery Rate" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (30-32)% increased Cooldown Recovery Rate" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (33-35)% increased Cooldown Recovery Rate" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (36-38)% increased Cooldown Recovery Rate" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (39-41)% increased Cooldown Recovery Rate" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (33-35)% increased Cooldown Recovery Rate" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (36-38)% increased Cooldown Recovery Rate" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (39-41)% increased Cooldown Recovery Rate" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (42-44)% increased Cooldown Recovery Rate" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (45-47)% increased Cooldown Recovery Rate" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (48-50)% increased Cooldown Recovery Rate" }, } }, ["SeismicCryExertedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (20-22)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (20-22)% increased Damage" }, } }, ["SeismicCryExertedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (23-25)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (23-25)% increased Damage" }, } }, ["SeismicCryExertedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (26-28)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (26-28)% increased Damage" }, } }, ["SeismicCryExertedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (29-31)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (29-31)% increased Damage" }, } }, ["SeismicCryExertedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (32-33)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (32-33)% increased Damage" }, } }, ["SeismicCryExertedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (34-35)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (34-35)% increased Damage" }, } }, - ["SeismicCryExertedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (26-28)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (26-28)% increased Damage" }, [4074358700] = { "" }, } }, - ["SeismicCryExertedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (29-31)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (29-31)% increased Damage" }, [4074358700] = { "" }, } }, - ["SeismicCryExertedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (32-34)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (32-34)% increased Damage" }, [4074358700] = { "" }, } }, - ["SeismicCryExertedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (35-37)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (35-37)% increased Damage" }, [4074358700] = { "" }, } }, - ["SeismicCryExertedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (38-39)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (38-39)% increased Damage" }, [4074358700] = { "" }, } }, - ["SeismicCryExertedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (40-41)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (40-41)% increased Damage" }, [4074358700] = { "" }, } }, - ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (32-34)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (32-34)% increased Damage" }, [3283106665] = { "" }, } }, - ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (35-37)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (35-37)% increased Damage" }, [3283106665] = { "" }, } }, - ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (38-40)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (38-40)% increased Damage" }, [3283106665] = { "" }, } }, - ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (41-43)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (41-43)% increased Damage" }, [3283106665] = { "" }, } }, - ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (44-45)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (44-45)% increased Damage" }, [3283106665] = { "" }, } }, - ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (46-47)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (46-47)% increased Damage" }, [3283106665] = { "" }, } }, + ["SeismicCryExertedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (26-28)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (26-28)% increased Damage" }, } }, + ["SeismicCryExertedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (29-31)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (29-31)% increased Damage" }, } }, + ["SeismicCryExertedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (32-34)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (32-34)% increased Damage" }, } }, + ["SeismicCryExertedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (35-37)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (35-37)% increased Damage" }, } }, + ["SeismicCryExertedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (38-39)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (38-39)% increased Damage" }, } }, + ["SeismicCryExertedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (40-41)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (40-41)% increased Damage" }, } }, + ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (32-34)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (32-34)% increased Damage" }, } }, + ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (35-37)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (35-37)% increased Damage" }, } }, + ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (38-40)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (38-40)% increased Damage" }, } }, + ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (41-43)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (41-43)% increased Damage" }, } }, + ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (44-45)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (44-45)% increased Damage" }, } }, + ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (46-47)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (46-47)% increased Damage" }, } }, ["AncestralCryExertedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (20-22)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (20-22)% increased Damage" }, } }, ["AncestralCryExertedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (23-25)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (23-25)% increased Damage" }, } }, ["AncestralCryExertedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage" }, } }, ["AncestralCryExertedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage" }, } }, ["AncestralCryExertedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (32-33)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (32-33)% increased Damage" }, } }, ["AncestralCryExertedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (34-35)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (34-35)% increased Damage" }, } }, - ["AncestralCryExertedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage" }, [4074358700] = { "" }, } }, - ["AncestralCryExertedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage" }, [4074358700] = { "" }, } }, - ["AncestralCryExertedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage" }, [4074358700] = { "" }, } }, - ["AncestralCryExertedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage" }, [4074358700] = { "" }, } }, - ["AncestralCryExertedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (38-39)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (38-39)% increased Damage" }, [4074358700] = { "" }, } }, - ["AncestralCryExertedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (40-41)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (40-41)% increased Damage" }, [4074358700] = { "" }, } }, - ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage" }, [3283106665] = { "" }, } }, - ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage" }, [3283106665] = { "" }, } }, - ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (38-40)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (38-40)% increased Damage" }, [3283106665] = { "" }, } }, - ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (41-43)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (41-43)% increased Damage" }, [3283106665] = { "" }, } }, - ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (44-45)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (44-45)% increased Damage" }, [3283106665] = { "" }, } }, - ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (46-47)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (46-47)% increased Damage" }, [3283106665] = { "" }, } }, + ["AncestralCryExertedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage" }, } }, + ["AncestralCryExertedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage" }, } }, + ["AncestralCryExertedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage" }, } }, + ["AncestralCryExertedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage" }, } }, + ["AncestralCryExertedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (38-39)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (38-39)% increased Damage" }, } }, + ["AncestralCryExertedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (40-41)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (40-41)% increased Damage" }, } }, + ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage" }, } }, + ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage" }, } }, + ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (38-40)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (38-40)% increased Damage" }, } }, + ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (41-43)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (41-43)% increased Damage" }, } }, + ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (44-45)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (44-45)% increased Damage" }, } }, + ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (46-47)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (46-47)% increased Damage" }, } }, ["RallyingCryWarcryEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(6-7)% increased Rallying Cry Buff Effect" }, } }, ["RallyingCryWarcryEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(8-9)% increased Rallying Cry Buff Effect" }, } }, ["RallyingCryWarcryEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(10-11)% increased Rallying Cry Buff Effect" }, } }, ["RallyingCryWarcryEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(12-13)% increased Rallying Cry Buff Effect" }, } }, ["RallyingCryWarcryEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(14-15)% increased Rallying Cry Buff Effect" }, } }, ["RallyingCryWarcryEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(16-17)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(12-13)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(14-15)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(16-17)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(18-19)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(20-21)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(22-23)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(18-19)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(20-21)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(22-23)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(24-25)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(26-27)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(28-29)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(12-13)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(14-15)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(16-17)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(18-19)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(20-21)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(22-23)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(18-19)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(20-21)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(22-23)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(24-25)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(26-27)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(28-29)% increased Rallying Cry Buff Effect" }, } }, ["BattlemagesCryWarcryEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(6-7)% increased Battlemage's Cry Buff Effect" }, } }, ["BattlemagesCryWarcryEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(8-9)% increased Battlemage's Cry Buff Effect" }, } }, ["BattlemagesCryWarcryEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(10-11)% increased Battlemage's Cry Buff Effect" }, } }, ["BattlemagesCryWarcryEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(12-13)% increased Battlemage's Cry Buff Effect" }, } }, ["BattlemagesCryWarcryEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(14-15)% increased Battlemage's Cry Buff Effect" }, } }, ["BattlemagesCryWarcryEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(16-17)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(12-13)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(14-15)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(16-17)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(18-19)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(20-21)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(22-23)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(18-19)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(20-21)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(22-23)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(24-25)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(26-27)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(28-29)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(12-13)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(14-15)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(16-17)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(18-19)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(20-21)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(22-23)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(18-19)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(20-21)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(22-23)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(24-25)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(26-27)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(28-29)% increased Battlemage's Cry Buff Effect" }, } }, ["InfernalCryWarcryAreaOfEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Infernal Cry has (15-17)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (15-17)% increased Area of Effect" }, } }, ["InfernalCryWarcryAreaOfEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Infernal Cry has (18-20)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (18-20)% increased Area of Effect" }, } }, ["InfernalCryWarcryAreaOfEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Infernal Cry has (21-23)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (21-23)% increased Area of Effect" }, } }, ["InfernalCryWarcryAreaOfEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Infernal Cry has (24-26)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (24-26)% increased Area of Effect" }, } }, ["InfernalCryWarcryAreaOfEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Infernal Cry has (27-29)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (27-29)% increased Area of Effect" }, } }, ["InfernalCryWarcryAreaOfEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Infernal Cry has (30-32)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (30-32)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (24-26)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (24-26)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (27-29)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (27-29)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (30-32)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (30-32)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (33-35)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (33-35)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (36-38)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (36-38)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (39-41)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (39-41)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (33-35)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (33-35)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (36-38)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (36-38)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (39-41)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (39-41)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (42-44)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (42-44)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (45-47)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (45-47)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (48-50)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (48-50)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (24-26)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (24-26)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (27-29)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (27-29)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (30-32)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (30-32)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (33-35)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (33-35)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (36-38)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (36-38)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (39-41)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (39-41)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (33-35)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (33-35)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (36-38)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (36-38)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (39-41)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (39-41)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (42-44)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (42-44)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (45-47)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (45-47)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (48-50)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (48-50)% increased Area of Effect" }, } }, ["GeneralsCryCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "General's Cry has (15-17)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (15-17)% increased Cooldown Recovery Rate" }, } }, ["GeneralsCryCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "General's Cry has (18-20)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (18-20)% increased Cooldown Recovery Rate" }, } }, ["GeneralsCryCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "General's Cry has (21-23)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (21-23)% increased Cooldown Recovery Rate" }, } }, ["GeneralsCryCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "General's Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (24-26)% increased Cooldown Recovery Rate" }, } }, ["GeneralsCryCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "General's Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (27-29)% increased Cooldown Recovery Rate" }, } }, ["GeneralsCryCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "General's Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (30-32)% increased Cooldown Recovery Rate" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (24-26)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (27-29)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (30-32)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (33-35)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (36-38)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (39-41)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (33-35)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (36-38)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (39-41)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (42-44)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (45-47)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (48-50)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (24-26)% increased Cooldown Recovery Rate" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (27-29)% increased Cooldown Recovery Rate" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (30-32)% increased Cooldown Recovery Rate" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (33-35)% increased Cooldown Recovery Rate" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (36-38)% increased Cooldown Recovery Rate" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (39-41)% increased Cooldown Recovery Rate" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (33-35)% increased Cooldown Recovery Rate" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (36-38)% increased Cooldown Recovery Rate" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (39-41)% increased Cooldown Recovery Rate" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (42-44)% increased Cooldown Recovery Rate" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (45-47)% increased Cooldown Recovery Rate" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (48-50)% increased Cooldown Recovery Rate" }, } }, ["AvoidElementalStatusAilmentsEldritchImplicit1"] = { type = "Eater", affix = "", "(15-17)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(15-17)% chance to Avoid Elemental Ailments" }, } }, ["AvoidElementalStatusAilmentsEldritchImplicit2"] = { type = "Eater", affix = "", "(18-20)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(18-20)% chance to Avoid Elemental Ailments" }, } }, ["AvoidElementalStatusAilmentsEldritchImplicit3"] = { type = "Eater", affix = "", "(21-23)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(21-23)% chance to Avoid Elemental Ailments" }, } }, ["AvoidElementalStatusAilmentsEldritchImplicit4"] = { type = "Eater", affix = "", "(24-26)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(24-26)% chance to Avoid Elemental Ailments" }, } }, ["AvoidElementalStatusAilmentsEldritchImplicit5"] = { type = "Eater", affix = "", "(27-29)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(27-29)% chance to Avoid Elemental Ailments" }, } }, ["AvoidElementalStatusAilmentsEldritchImplicit6"] = { type = "Eater", affix = "", "(30-32)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(30-32)% chance to Avoid Elemental Ailments" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(24-26)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(27-29)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(30-32)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(33-35)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(36-38)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(39-41)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(33-35)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(36-38)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(39-41)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(42-44)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(45-47)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(48-50)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(24-26)% chance to Avoid Elemental Ailments" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(27-29)% chance to Avoid Elemental Ailments" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(30-32)% chance to Avoid Elemental Ailments" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(33-35)% chance to Avoid Elemental Ailments" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(36-38)% chance to Avoid Elemental Ailments" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(39-41)% chance to Avoid Elemental Ailments" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(33-35)% chance to Avoid Elemental Ailments" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(36-38)% chance to Avoid Elemental Ailments" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(39-41)% chance to Avoid Elemental Ailments" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(42-44)% chance to Avoid Elemental Ailments" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(45-47)% chance to Avoid Elemental Ailments" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(48-50)% chance to Avoid Elemental Ailments" }, } }, ["ChanceToAvoidBleedingEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(33-35)% chance to Avoid Bleeding" }, } }, ["ChanceToAvoidBleedingEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(36-38)% chance to Avoid Bleeding" }, } }, ["ChanceToAvoidBleedingEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(39-41)% chance to Avoid Bleeding" }, } }, ["ChanceToAvoidBleedingEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(42-44)% chance to Avoid Bleeding" }, } }, ["ChanceToAvoidBleedingEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(45-47)% chance to Avoid Bleeding" }, } }, ["ChanceToAvoidBleedingEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(48-50)% chance to Avoid Bleeding" }, } }, - ["ChanceToAvoidBleedingEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(42-44)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } }, - ["ChanceToAvoidBleedingEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(45-47)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } }, - ["ChanceToAvoidBleedingEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(48-50)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } }, - ["ChanceToAvoidBleedingEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(51-53)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } }, - ["ChanceToAvoidBleedingEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(54-57)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } }, - ["ChanceToAvoidBleedingEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(58-61)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } }, - ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(51-53)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } }, - ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(54-56)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } }, - ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(57-59)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } }, - ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(60-62)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } }, - ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(63-66)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } }, - ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(67-70)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } }, + ["ChanceToAvoidBleedingEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(42-44)% chance to Avoid Bleeding" }, } }, + ["ChanceToAvoidBleedingEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(45-47)% chance to Avoid Bleeding" }, } }, + ["ChanceToAvoidBleedingEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(48-50)% chance to Avoid Bleeding" }, } }, + ["ChanceToAvoidBleedingEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(51-53)% chance to Avoid Bleeding" }, } }, + ["ChanceToAvoidBleedingEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(54-57)% chance to Avoid Bleeding" }, } }, + ["ChanceToAvoidBleedingEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(58-61)% chance to Avoid Bleeding" }, } }, + ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(51-53)% chance to Avoid Bleeding" }, } }, + ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(54-56)% chance to Avoid Bleeding" }, } }, + ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(57-59)% chance to Avoid Bleeding" }, } }, + ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(60-62)% chance to Avoid Bleeding" }, } }, + ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(63-66)% chance to Avoid Bleeding" }, } }, + ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(67-70)% chance to Avoid Bleeding" }, } }, ["ChanceToAvoidPoisonEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(33-35)% chance to Avoid being Poisoned" }, } }, ["ChanceToAvoidPoisonEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(36-38)% chance to Avoid being Poisoned" }, } }, ["ChanceToAvoidPoisonEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(39-41)% chance to Avoid being Poisoned" }, } }, ["ChanceToAvoidPoisonEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(42-44)% chance to Avoid being Poisoned" }, } }, ["ChanceToAvoidPoisonEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(45-47)% chance to Avoid being Poisoned" }, } }, ["ChanceToAvoidPoisonEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(48-50)% chance to Avoid being Poisoned" }, } }, - ["ChanceToAvoidPoisonEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(42-44)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } }, - ["ChanceToAvoidPoisonEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(45-47)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } }, - ["ChanceToAvoidPoisonEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(48-50)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } }, - ["ChanceToAvoidPoisonEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(51-53)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } }, - ["ChanceToAvoidPoisonEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(54-57)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } }, - ["ChanceToAvoidPoisonEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(58-61)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } }, - ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(51-53)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } }, - ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(54-56)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } }, - ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(57-59)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } }, - ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(60-62)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } }, - ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(63-66)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } }, - ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(67-70)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } }, + ["ChanceToAvoidPoisonEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(42-44)% chance to Avoid being Poisoned" }, } }, + ["ChanceToAvoidPoisonEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(45-47)% chance to Avoid being Poisoned" }, } }, + ["ChanceToAvoidPoisonEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(48-50)% chance to Avoid being Poisoned" }, } }, + ["ChanceToAvoidPoisonEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(51-53)% chance to Avoid being Poisoned" }, } }, + ["ChanceToAvoidPoisonEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(54-57)% chance to Avoid being Poisoned" }, } }, + ["ChanceToAvoidPoisonEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(58-61)% chance to Avoid being Poisoned" }, } }, + ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(51-53)% chance to Avoid being Poisoned" }, } }, + ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(54-56)% chance to Avoid being Poisoned" }, } }, + ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(57-59)% chance to Avoid being Poisoned" }, } }, + ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(60-62)% chance to Avoid being Poisoned" }, } }, + ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(63-66)% chance to Avoid being Poisoned" }, } }, + ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(67-70)% chance to Avoid being Poisoned" }, } }, ["GlobalCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "5% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "5% increased Cooldown Recovery Rate" }, } }, ["GlobalCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "6% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "6% increased Cooldown Recovery Rate" }, } }, ["GlobalCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "7% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "7% increased Cooldown Recovery Rate" }, } }, ["GlobalCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "8% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "8% increased Cooldown Recovery Rate" }, } }, ["GlobalCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "9% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "9% increased Cooldown Recovery Rate" }, } }, ["GlobalCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "10% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "10% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "8% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "9% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "10% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "11% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "12% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "13% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "11% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "12% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "13% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "14% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "15% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "16% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "8% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "9% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "10% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "11% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "12% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "13% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "11% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "12% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "13% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "14% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "15% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "16% increased Cooldown Recovery Rate" }, } }, ["ElusiveEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(6-7)% increased Elusive Effect" }, } }, ["ElusiveEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(8-9)% increased Elusive Effect" }, } }, ["ElusiveEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(10-11)% increased Elusive Effect" }, } }, ["ElusiveEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(12-13)% increased Elusive Effect" }, } }, ["ElusiveEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(14-15)% increased Elusive Effect" }, } }, ["ElusiveEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(16-17)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(12-13)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(14-15)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(16-17)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(18-19)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(20-21)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(22-23)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(18-19)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(20-21)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(22-23)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(24-25)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(26-27)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(28-29)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(12-13)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(14-15)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(16-17)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(18-19)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(20-21)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(22-23)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(18-19)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(20-21)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(22-23)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(24-25)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(26-27)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(28-29)% increased Elusive Effect" }, } }, ["SpellCriticalStrikeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(20-21)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(20-21)% to Critical Strike Multiplier for Spell Damage" }, } }, ["SpellCriticalStrikeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(22-23)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(22-23)% to Critical Strike Multiplier for Spell Damage" }, } }, ["SpellCriticalStrikeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(24-25)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(24-25)% to Critical Strike Multiplier for Spell Damage" }, } }, ["SpellCriticalStrikeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(26-27)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(26-27)% to Critical Strike Multiplier for Spell Damage" }, } }, ["SpellCriticalStrikeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(28-29)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(28-29)% to Critical Strike Multiplier for Spell Damage" }, } }, ["SpellCriticalStrikeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(30-31)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(30-31)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(26-27)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(28-29)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(30-31)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(30-31)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(32-33)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(32-33)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(34-35)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(34-35)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(36-37)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(36-37)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-33)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(32-33)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(34-35)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(34-35)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(36-37)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(36-37)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(38-39)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(38-39)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(40-41)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(40-41)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(42-43)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(42-43)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(26-27)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(28-29)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(30-31)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(30-31)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(32-33)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(32-33)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(34-35)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(34-35)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(36-37)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(36-37)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-33)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(32-33)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(34-35)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(34-35)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(36-37)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(36-37)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(38-39)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(38-39)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(40-41)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(40-41)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(42-43)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(42-43)% to Critical Strike Multiplier for Spell Damage" }, } }, ["AttackCriticalStrikeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(20-21)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(20-21)% to Critical Strike Multiplier for Attack Damage" }, } }, ["AttackCriticalStrikeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(22-23)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(22-23)% to Critical Strike Multiplier for Attack Damage" }, } }, ["AttackCriticalStrikeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(24-25)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(24-25)% to Critical Strike Multiplier for Attack Damage" }, } }, ["AttackCriticalStrikeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(26-27)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(26-27)% to Critical Strike Multiplier for Attack Damage" }, } }, ["AttackCriticalStrikeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(28-29)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(28-29)% to Critical Strike Multiplier for Attack Damage" }, } }, ["AttackCriticalStrikeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(30-31)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(30-31)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(26-27)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(28-29)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(30-31)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(30-31)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(32-33)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(32-33)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(34-35)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(34-35)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(36-37)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(36-37)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-33)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(32-33)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(34-35)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(34-35)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(36-37)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(36-37)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(38-39)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(38-39)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(40-41)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(40-41)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(42-43)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(42-43)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(26-27)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(28-29)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(30-31)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(30-31)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(32-33)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(32-33)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(34-35)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(34-35)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(36-37)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(36-37)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-33)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(32-33)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(34-35)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(34-35)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(36-37)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(36-37)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(38-39)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(38-39)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(40-41)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(40-41)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(42-43)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(42-43)% to Critical Strike Multiplier for Attack Damage" }, } }, ["FireDamagePercentageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(15-17)% increased Fire Damage" }, } }, ["FireDamagePercentageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(18-20)% increased Fire Damage" }, } }, ["FireDamagePercentageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(21-23)% increased Fire Damage" }, } }, ["FireDamagePercentageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(24-26)% increased Fire Damage" }, } }, ["FireDamagePercentageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-28)% increased Fire Damage" }, } }, ["FireDamagePercentageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(29-30)% increased Fire Damage" }, } }, - ["FireDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(21-23)% increased Fire Damage" }, [4074358700] = { "" }, } }, - ["FireDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(24-26)% increased Fire Damage" }, [4074358700] = { "" }, } }, - ["FireDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-29)% increased Fire Damage" }, [4074358700] = { "" }, } }, - ["FireDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-32)% increased Fire Damage" }, [4074358700] = { "" }, } }, - ["FireDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(33-34)% increased Fire Damage" }, [4074358700] = { "" }, } }, - ["FireDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(35-36)% increased Fire Damage" }, [4074358700] = { "" }, } }, - ["FireDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-29)% increased Fire Damage" }, [3283106665] = { "" }, } }, - ["FireDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-32)% increased Fire Damage" }, [3283106665] = { "" }, } }, - ["FireDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(33-35)% increased Fire Damage" }, [3283106665] = { "" }, } }, - ["FireDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(36-38)% increased Fire Damage" }, [3283106665] = { "" }, } }, - ["FireDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(39-40)% increased Fire Damage" }, [3283106665] = { "" }, } }, - ["FireDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(41-42)% increased Fire Damage" }, [3283106665] = { "" }, } }, + ["FireDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(21-23)% increased Fire Damage" }, } }, + ["FireDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(24-26)% increased Fire Damage" }, } }, + ["FireDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-29)% increased Fire Damage" }, } }, + ["FireDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-32)% increased Fire Damage" }, } }, + ["FireDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(33-34)% increased Fire Damage" }, } }, + ["FireDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(35-36)% increased Fire Damage" }, } }, + ["FireDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-29)% increased Fire Damage" }, } }, + ["FireDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-32)% increased Fire Damage" }, } }, + ["FireDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(33-35)% increased Fire Damage" }, } }, + ["FireDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(36-38)% increased Fire Damage" }, } }, + ["FireDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(39-40)% increased Fire Damage" }, } }, + ["FireDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(41-42)% increased Fire Damage" }, } }, ["ColdDamagePercentageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(15-17)% increased Cold Damage" }, } }, ["ColdDamagePercentageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(18-20)% increased Cold Damage" }, } }, ["ColdDamagePercentageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(21-23)% increased Cold Damage" }, } }, ["ColdDamagePercentageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(24-26)% increased Cold Damage" }, } }, ["ColdDamagePercentageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-28)% increased Cold Damage" }, } }, ["ColdDamagePercentageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(29-30)% increased Cold Damage" }, } }, - ["ColdDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(21-23)% increased Cold Damage" }, [4074358700] = { "" }, } }, - ["ColdDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(24-26)% increased Cold Damage" }, [4074358700] = { "" }, } }, - ["ColdDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-29)% increased Cold Damage" }, [4074358700] = { "" }, } }, - ["ColdDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(30-32)% increased Cold Damage" }, [4074358700] = { "" }, } }, - ["ColdDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(33-34)% increased Cold Damage" }, [4074358700] = { "" }, } }, - ["ColdDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(35-36)% increased Cold Damage" }, [4074358700] = { "" }, } }, - ["ColdDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-29)% increased Cold Damage" }, [3283106665] = { "" }, } }, - ["ColdDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(30-32)% increased Cold Damage" }, [3283106665] = { "" }, } }, - ["ColdDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(33-35)% increased Cold Damage" }, [3283106665] = { "" }, } }, - ["ColdDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(36-38)% increased Cold Damage" }, [3283106665] = { "" }, } }, - ["ColdDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(39-40)% increased Cold Damage" }, [3283106665] = { "" }, } }, - ["ColdDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(41-42)% increased Cold Damage" }, [3283106665] = { "" }, } }, + ["ColdDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(21-23)% increased Cold Damage" }, } }, + ["ColdDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(24-26)% increased Cold Damage" }, } }, + ["ColdDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-29)% increased Cold Damage" }, } }, + ["ColdDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(30-32)% increased Cold Damage" }, } }, + ["ColdDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(33-34)% increased Cold Damage" }, } }, + ["ColdDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(35-36)% increased Cold Damage" }, } }, + ["ColdDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-29)% increased Cold Damage" }, } }, + ["ColdDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(30-32)% increased Cold Damage" }, } }, + ["ColdDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(33-35)% increased Cold Damage" }, } }, + ["ColdDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(36-38)% increased Cold Damage" }, } }, + ["ColdDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(39-40)% increased Cold Damage" }, } }, + ["ColdDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(41-42)% increased Cold Damage" }, } }, ["LightningDamagePercentageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(15-17)% increased Lightning Damage" }, } }, ["LightningDamagePercentageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(18-20)% increased Lightning Damage" }, } }, ["LightningDamagePercentageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(21-23)% increased Lightning Damage" }, } }, ["LightningDamagePercentageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(24-26)% increased Lightning Damage" }, } }, ["LightningDamagePercentageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(27-28)% increased Lightning Damage" }, } }, ["LightningDamagePercentageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(29-30)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(21-23)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(24-26)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(27-29)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(30-32)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(33-34)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(35-36)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(27-29)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(30-32)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(33-35)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(36-38)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(39-40)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(41-42)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(21-23)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(24-26)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(27-29)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(30-32)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(33-34)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(35-36)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(27-29)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(30-32)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(33-35)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(36-38)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(39-40)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(41-42)% increased Lightning Damage" }, } }, ["IncreasedChaosDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(15-17)% increased Chaos Damage" }, } }, ["IncreasedChaosDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(18-20)% increased Chaos Damage" }, } }, ["IncreasedChaosDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(21-23)% increased Chaos Damage" }, } }, ["IncreasedChaosDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(24-26)% increased Chaos Damage" }, } }, ["IncreasedChaosDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-28)% increased Chaos Damage" }, } }, ["IncreasedChaosDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(29-30)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(21-23)% increased Chaos Damage" }, [4074358700] = { "" }, } }, - ["IncreasedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(24-26)% increased Chaos Damage" }, [4074358700] = { "" }, } }, - ["IncreasedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-29)% increased Chaos Damage" }, [4074358700] = { "" }, } }, - ["IncreasedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(30-32)% increased Chaos Damage" }, [4074358700] = { "" }, } }, - ["IncreasedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(33-34)% increased Chaos Damage" }, [4074358700] = { "" }, } }, - ["IncreasedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(35-36)% increased Chaos Damage" }, [4074358700] = { "" }, } }, - ["IncreasedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-29)% increased Chaos Damage" }, [3283106665] = { "" }, } }, - ["IncreasedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(30-32)% increased Chaos Damage" }, [3283106665] = { "" }, } }, - ["IncreasedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(33-35)% increased Chaos Damage" }, [3283106665] = { "" }, } }, - ["IncreasedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(36-38)% increased Chaos Damage" }, [3283106665] = { "" }, } }, - ["IncreasedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(39-40)% increased Chaos Damage" }, [3283106665] = { "" }, } }, - ["IncreasedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(41-42)% increased Chaos Damage" }, [3283106665] = { "" }, } }, + ["IncreasedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(21-23)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(24-26)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-29)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(30-32)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(33-34)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(35-36)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-29)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(30-32)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(33-35)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(36-38)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(39-40)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(41-42)% increased Chaos Damage" }, } }, ["PhysicalDamagePercentEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(15-17)% increased Global Physical Damage" }, } }, ["PhysicalDamagePercentEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(18-20)% increased Global Physical Damage" }, } }, ["PhysicalDamagePercentEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(21-23)% increased Global Physical Damage" }, } }, ["PhysicalDamagePercentEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(24-26)% increased Global Physical Damage" }, } }, ["PhysicalDamagePercentEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(27-28)% increased Global Physical Damage" }, } }, ["PhysicalDamagePercentEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(29-30)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(21-23)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(24-26)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(27-29)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(30-32)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(33-34)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(35-36)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(27-29)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(30-32)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(33-35)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(36-38)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(39-40)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(41-42)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(21-23)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(24-26)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(27-29)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(30-32)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(33-34)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(35-36)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(27-29)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(30-32)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(33-35)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(36-38)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(39-40)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(41-42)% increased Global Physical Damage" }, } }, ["ArcticArmourBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(15-17)% increased Arctic Armour Buff Effect" }, } }, ["ArcticArmourBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(18-20)% increased Arctic Armour Buff Effect" }, } }, ["ArcticArmourBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(21-23)% increased Arctic Armour Buff Effect" }, } }, ["ArcticArmourBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(24-26)% increased Arctic Armour Buff Effect" }, } }, ["ArcticArmourBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-29)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(27-29)% increased Arctic Armour Buff Effect" }, } }, ["ArcticArmourBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(30-32)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(30-32)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(24-26)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(27-29)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(30-32)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(33-35)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(36-38)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(39-41)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(33-35)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(36-38)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(39-41)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(42-44)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(45-47)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(48-50)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(24-26)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(27-29)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(30-32)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(33-35)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(36-38)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(39-41)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(33-35)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(36-38)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(39-41)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(42-44)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(45-47)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(48-50)% increased Arctic Armour Buff Effect" }, } }, ["FleshAndStoneAreaOfEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Flesh and Stone has (15-17)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (15-17)% increased Area of Effect" }, } }, ["FleshAndStoneAreaOfEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Flesh and Stone has (18-20)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (18-20)% increased Area of Effect" }, } }, ["FleshAndStoneAreaOfEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Flesh and Stone has (21-23)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (21-23)% increased Area of Effect" }, } }, ["FleshAndStoneAreaOfEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Flesh and Stone has (24-26)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (24-26)% increased Area of Effect" }, } }, ["FleshAndStoneAreaOfEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Flesh and Stone has (27-29)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (27-29)% increased Area of Effect" }, } }, ["FleshAndStoneAreaOfEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Flesh and Stone has (30-32)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (30-32)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (24-26)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (24-26)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (27-29)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (27-29)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (30-32)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (30-32)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (33-35)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (33-35)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (36-38)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (36-38)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (39-41)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (39-41)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (33-35)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (33-35)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (36-38)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (36-38)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (39-41)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (39-41)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (42-44)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (42-44)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (45-47)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (45-47)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (48-50)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (48-50)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (24-26)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (24-26)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (27-29)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (27-29)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (30-32)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (30-32)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (33-35)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (33-35)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (36-38)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (36-38)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (39-41)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (39-41)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (33-35)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (33-35)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (36-38)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (36-38)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (39-41)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (39-41)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (42-44)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (42-44)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (45-47)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (45-47)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (48-50)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (48-50)% increased Area of Effect" }, } }, ["TempestShieldBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Tempest Shield has (15-17)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (15-17)% increased Buff Effect" }, } }, ["TempestShieldBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Tempest Shield has (18-20)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (18-20)% increased Buff Effect" }, } }, ["TempestShieldBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Tempest Shield has (21-23)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (21-23)% increased Buff Effect" }, } }, ["TempestShieldBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Tempest Shield has (24-26)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (24-26)% increased Buff Effect" }, } }, ["TempestShieldBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Tempest Shield has (27-29)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (27-29)% increased Buff Effect" }, } }, ["TempestShieldBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Tempest Shield has (30-32)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (30-32)% increased Buff Effect" }, } }, - ["TempestShieldBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (24-26)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (24-26)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["TempestShieldBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (27-29)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (27-29)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["TempestShieldBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (30-32)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (30-32)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["TempestShieldBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (33-35)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (33-35)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["TempestShieldBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (36-38)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (36-38)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["TempestShieldBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (39-41)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (39-41)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (33-35)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (33-35)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (36-38)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (36-38)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (39-41)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (39-41)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (42-44)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (42-44)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (45-47)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (45-47)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (48-50)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (48-50)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["TempestShieldBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (24-26)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (24-26)% increased Buff Effect" }, } }, + ["TempestShieldBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (27-29)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (27-29)% increased Buff Effect" }, } }, + ["TempestShieldBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (30-32)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (30-32)% increased Buff Effect" }, } }, + ["TempestShieldBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (33-35)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (33-35)% increased Buff Effect" }, } }, + ["TempestShieldBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (36-38)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (36-38)% increased Buff Effect" }, } }, + ["TempestShieldBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (39-41)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (39-41)% increased Buff Effect" }, } }, + ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (33-35)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (33-35)% increased Buff Effect" }, } }, + ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (36-38)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (36-38)% increased Buff Effect" }, } }, + ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (39-41)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (39-41)% increased Buff Effect" }, } }, + ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (42-44)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (42-44)% increased Buff Effect" }, } }, + ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (45-47)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (45-47)% increased Buff Effect" }, } }, + ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (48-50)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (48-50)% increased Buff Effect" }, } }, ["DamageRemovedFromManaBeforeLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "5% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "5% of Damage is taken from Mana before Life" }, } }, ["DamageRemovedFromManaBeforeLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "6% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "6% of Damage is taken from Mana before Life" }, } }, ["DamageRemovedFromManaBeforeLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "7% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "7% of Damage is taken from Mana before Life" }, } }, ["DamageRemovedFromManaBeforeLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "8% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "8% of Damage is taken from Mana before Life" }, } }, ["DamageRemovedFromManaBeforeLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "9% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "9% of Damage is taken from Mana before Life" }, } }, ["DamageRemovedFromManaBeforeLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "10% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "10% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "7% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 8% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "8% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 9% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "9% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "10% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "11% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "12% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "9% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "10% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "11% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "12% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "13% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "14% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [458438597] = { "7% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 8% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [458438597] = { "8% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 9% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [458438597] = { "9% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [458438597] = { "10% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [458438597] = { "11% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [458438597] = { "12% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [458438597] = { "9% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [458438597] = { "10% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [458438597] = { "11% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [458438597] = { "12% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [458438597] = { "13% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [458438597] = { "14% of Damage is taken from Mana before Life" }, } }, ["GolemBuffEffectUniqueEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-21)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(19-21)% increased Effect of Buffs granted by your Golems" }, } }, ["GolemBuffEffectUniqueEldritchImplicit2"] = { type = "Exarch", affix = "", "(22-24)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(22-24)% increased Effect of Buffs granted by your Golems" }, } }, ["GolemBuffEffectUniqueEldritchImplicit3"] = { type = "Exarch", affix = "", "(25-27)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(25-27)% increased Effect of Buffs granted by your Golems" }, } }, ["GolemBuffEffectUniqueEldritchImplicit4"] = { type = "Exarch", affix = "", "(28-30)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(28-30)% increased Effect of Buffs granted by your Golems" }, } }, ["GolemBuffEffectUniqueEldritchImplicit5"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(31-33)% increased Effect of Buffs granted by your Golems" }, } }, ["GolemBuffEffectUniqueEldritchImplicit6"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(34-36)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(31-33)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(34-36)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(37-39)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(40-42)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(43-45)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(46-48)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(43-45)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(46-48)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(49-51)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(52-54)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(55-57)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(58-60)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(31-33)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(34-36)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(37-39)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(40-42)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(43-45)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(46-48)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(43-45)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(46-48)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(49-51)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(52-54)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(55-57)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(58-60)% increased Effect of Buffs granted by your Golems" }, } }, ["AuraEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(9-10)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(9-10)% increased effect of Non-Curse Auras from your Skills" }, } }, ["AuraEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(11-12)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(11-12)% increased effect of Non-Curse Auras from your Skills" }, } }, ["AuraEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(13-14)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(13-14)% increased effect of Non-Curse Auras from your Skills" }, } }, ["AuraEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(15-16)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(15-16)% increased effect of Non-Curse Auras from your Skills" }, } }, ["AuraEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(17-18)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(17-18)% increased effect of Non-Curse Auras from your Skills" }, } }, ["AuraEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(19-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(19-20)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["AuraEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(17-18)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } }, - ["AuraEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(19-20)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } }, - ["AuraEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(21-22)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } }, - ["AuraEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(23-24)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } }, - ["AuraEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(25-26)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } }, - ["AuraEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(27-28)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } }, - ["AuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(25-26)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } }, - ["AuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(27-28)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } }, - ["AuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(29-30)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } }, - ["AuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(31-32)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } }, - ["AuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(33-34)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } }, - ["AuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(35-36)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } }, + ["AuraEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(17-18)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["AuraEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(19-20)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["AuraEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(21-22)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["AuraEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(23-24)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["AuraEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(25-26)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["AuraEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(27-28)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["AuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(25-26)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["AuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(27-28)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["AuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(29-30)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["AuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(31-32)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["AuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(33-34)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["AuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(35-36)% increased effect of Non-Curse Auras from your Skills" }, } }, ["CurseEffectivenessEldritchImplicit1"] = { type = "Exarch", affix = "", "7% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "7% increased Effect of your Curses" }, } }, ["CurseEffectivenessEldritchImplicit2"] = { type = "Exarch", affix = "", "8% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "8% increased Effect of your Curses" }, } }, ["CurseEffectivenessEldritchImplicit3"] = { type = "Exarch", affix = "", "9% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "9% increased Effect of your Curses" }, } }, ["CurseEffectivenessEldritchImplicit4"] = { type = "Exarch", affix = "", "10% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "10% increased Effect of your Curses" }, } }, ["CurseEffectivenessEldritchImplicit5"] = { type = "Exarch", affix = "", "11% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "11% increased Effect of your Curses" }, } }, ["CurseEffectivenessEldritchImplicit6"] = { type = "Exarch", affix = "", "12% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "12% increased Effect of your Curses" }, } }, - ["CurseEffectivenessEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "10% increased Effect of your Curses" }, [4074358700] = { "" }, } }, - ["CurseEffectivenessEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "11% increased Effect of your Curses" }, [4074358700] = { "" }, } }, - ["CurseEffectivenessEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "12% increased Effect of your Curses" }, [4074358700] = { "" }, } }, - ["CurseEffectivenessEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "13% increased Effect of your Curses" }, [4074358700] = { "" }, } }, - ["CurseEffectivenessEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "14% increased Effect of your Curses" }, [4074358700] = { "" }, } }, - ["CurseEffectivenessEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "15% increased Effect of your Curses" }, [4074358700] = { "" }, } }, - ["CurseEffectivenessEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "13% increased Effect of your Curses" }, [3283106665] = { "" }, } }, - ["CurseEffectivenessEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "14% increased Effect of your Curses" }, [3283106665] = { "" }, } }, - ["CurseEffectivenessEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "15% increased Effect of your Curses" }, [3283106665] = { "" }, } }, - ["CurseEffectivenessEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "16% increased Effect of your Curses" }, [3283106665] = { "" }, } }, - ["CurseEffectivenessEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "17% increased Effect of your Curses" }, [3283106665] = { "" }, } }, - ["CurseEffectivenessEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "18% increased Effect of your Curses" }, [3283106665] = { "" }, } }, + ["CurseEffectivenessEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "10% increased Effect of your Curses" }, } }, + ["CurseEffectivenessEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "11% increased Effect of your Curses" }, } }, + ["CurseEffectivenessEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "12% increased Effect of your Curses" }, } }, + ["CurseEffectivenessEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "13% increased Effect of your Curses" }, } }, + ["CurseEffectivenessEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "14% increased Effect of your Curses" }, } }, + ["CurseEffectivenessEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "15% increased Effect of your Curses" }, } }, + ["CurseEffectivenessEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "13% increased Effect of your Curses" }, } }, + ["CurseEffectivenessEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "14% increased Effect of your Curses" }, } }, + ["CurseEffectivenessEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "15% increased Effect of your Curses" }, } }, + ["CurseEffectivenessEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "16% increased Effect of your Curses" }, } }, + ["CurseEffectivenessEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "17% increased Effect of your Curses" }, } }, + ["CurseEffectivenessEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "18% increased Effect of your Curses" }, } }, ["OfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(13-14)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(13-14)% increased effect of Offerings" }, } }, ["OfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(15-16)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(15-16)% increased effect of Offerings" }, } }, ["OfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(17-18)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(17-18)% increased effect of Offerings" }, } }, ["OfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(19-20)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(19-20)% increased effect of Offerings" }, } }, ["OfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(21-22)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(21-22)% increased effect of Offerings" }, } }, ["OfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(23-24)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(23-24)% increased effect of Offerings" }, } }, - ["OfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(19-20)% increased effect of Offerings" }, [4074358700] = { "" }, } }, - ["OfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(21-22)% increased effect of Offerings" }, [4074358700] = { "" }, } }, - ["OfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(23-24)% increased effect of Offerings" }, [4074358700] = { "" }, } }, - ["OfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(25-26)% increased effect of Offerings" }, [4074358700] = { "" }, } }, - ["OfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(27-28)% increased effect of Offerings" }, [4074358700] = { "" }, } }, - ["OfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(29-30)% increased effect of Offerings" }, [4074358700] = { "" }, } }, - ["OfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(25-26)% increased effect of Offerings" }, [3283106665] = { "" }, } }, - ["OfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(27-28)% increased effect of Offerings" }, [3283106665] = { "" }, } }, - ["OfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(29-30)% increased effect of Offerings" }, [3283106665] = { "" }, } }, - ["OfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(31-32)% increased effect of Offerings" }, [3283106665] = { "" }, } }, - ["OfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(33-34)% increased effect of Offerings" }, [3283106665] = { "" }, } }, - ["OfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(35-36)% increased effect of Offerings" }, [3283106665] = { "" }, } }, + ["OfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(19-20)% increased effect of Offerings" }, } }, + ["OfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(21-22)% increased effect of Offerings" }, } }, + ["OfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(23-24)% increased effect of Offerings" }, } }, + ["OfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(25-26)% increased effect of Offerings" }, } }, + ["OfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(27-28)% increased effect of Offerings" }, } }, + ["OfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(29-30)% increased effect of Offerings" }, } }, + ["OfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(25-26)% increased effect of Offerings" }, } }, + ["OfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(27-28)% increased effect of Offerings" }, } }, + ["OfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(29-30)% increased effect of Offerings" }, } }, + ["OfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(31-32)% increased effect of Offerings" }, } }, + ["OfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(33-34)% increased effect of Offerings" }, } }, + ["OfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(35-36)% increased effect of Offerings" }, } }, ["WarcryEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-20)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(19-20)% increased Warcry Buff Effect" }, } }, ["WarcryEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(21-22)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(21-22)% increased Warcry Buff Effect" }, } }, ["WarcryEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(23-24)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(23-24)% increased Warcry Buff Effect" }, } }, ["WarcryEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(25-26)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(25-26)% increased Warcry Buff Effect" }, } }, ["WarcryEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(27-28)% increased Warcry Buff Effect" }, } }, ["WarcryEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(29-30)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(25-26)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(27-28)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(29-30)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(31-32)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(33-34)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(35-36)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(31-32)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(33-34)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(35-36)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(37-38)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(39-40)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(41-42)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(25-26)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(27-28)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(29-30)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(31-32)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(33-34)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(35-36)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(31-32)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(33-34)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(35-36)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(37-38)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(39-40)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(41-42)% increased Warcry Buff Effect" }, } }, ["FlaskEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Flasks applied to you have (6-7)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (6-7)% increased Effect" }, } }, ["FlaskEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Flasks applied to you have (8-9)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (8-9)% increased Effect" }, } }, ["FlaskEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Flasks applied to you have (10-11)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (10-11)% increased Effect" }, } }, ["FlaskEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Flasks applied to you have (12-13)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (12-13)% increased Effect" }, } }, ["FlaskEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Flasks applied to you have (14-15)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (14-15)% increased Effect" }, } }, ["FlaskEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Flasks applied to you have (16-17)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (16-17)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (12-13)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (12-13)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (14-15)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (14-15)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (16-17)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (16-17)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (18-19)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (18-19)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (20-21)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (20-21)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (22-23)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (22-23)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (18-19)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (18-19)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (20-21)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (20-21)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (22-23)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (22-23)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (24-25)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (24-25)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (26-27)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (26-27)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (28-29)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (28-29)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (12-13)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (12-13)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (14-15)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (14-15)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (16-17)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (16-17)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (18-19)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (18-19)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (20-21)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (20-21)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (22-23)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (22-23)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (18-19)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (18-19)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (20-21)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (20-21)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (22-23)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (22-23)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (24-25)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (24-25)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (26-27)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (26-27)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (28-29)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (28-29)% increased Effect" }, } }, ["DamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(8-9)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(8-9)% of Damage taken Recouped as Life" }, } }, ["DamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(10-11)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-11)% of Damage taken Recouped as Life" }, } }, ["DamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(12-13)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(12-13)% of Damage taken Recouped as Life" }, } }, ["DamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(14-15)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(14-15)% of Damage taken Recouped as Life" }, } }, ["DamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(16-17)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(16-17)% of Damage taken Recouped as Life" }, } }, ["DamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(18-19)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(18-19)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(14-15)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(16-17)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(18-19)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(20-21)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(22-23)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-25)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(24-25)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(20-21)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(22-23)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(24-25)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(26-27)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(28-29)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-31)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(30-31)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(14-15)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(16-17)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(18-19)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(20-21)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(22-23)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-25)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(24-25)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(20-21)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(22-23)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(24-25)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(26-27)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(28-29)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-31)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(30-31)% of Damage taken Recouped as Life" }, } }, ["FlaskGainPerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } }, ["FlaskGainPerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } }, ["FlaskGainPerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } }, ["FlaskGainPerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } }, ["FlaskGainPerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, } }, ["FlaskGainPerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, } }, - ["FlaskGainPerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, [4074358700] = { "" }, } }, - ["FlaskGainPerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, [4074358700] = { "" }, } }, - ["FlaskGainPerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, [4074358700] = { "" }, } }, - ["FlaskGainPerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, [4074358700] = { "" }, } }, - ["FlaskGainPerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [4074358700] = { "" }, } }, - ["FlaskGainPerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [4074358700] = { "" }, } }, - ["FlaskGainPerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [3283106665] = { "" }, } }, - ["FlaskGainPerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [3283106665] = { "" }, } }, - ["FlaskGainPerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [3283106665] = { "" }, } }, - ["FlaskGainPerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [3283106665] = { "" }, } }, - ["FlaskGainPerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 4 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 4 Charges every 3 seconds" }, [3283106665] = { "" }, } }, - ["FlaskGainPerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 4 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 4 Charges every 3 seconds" }, [3283106665] = { "" }, } }, + ["FlaskGainPerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, } }, + ["FlaskGainPerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, } }, + ["FlaskGainPerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, } }, + ["FlaskGainPerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, } }, + ["FlaskGainPerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, } }, + ["FlaskGainPerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, } }, + ["FlaskGainPerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, } }, + ["FlaskGainPerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, } }, + ["FlaskGainPerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, } }, + ["FlaskGainPerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, } }, + ["FlaskGainPerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 4 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 4 Charges every 3 seconds" }, } }, + ["FlaskGainPerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 4 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 4 Charges every 3 seconds" }, } }, ["MaximumResistancesEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, ["MaximumResistancesEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, ["MaximumResistancesEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, ["MaximumResistancesEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, ["MaximumResistancesEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } }, ["MaximumResistancesEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } }, - ["MaximumResistancesEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, [4074358700] = { "" }, } }, - ["MaximumResistancesEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, [4074358700] = { "" }, } }, - ["MaximumResistancesEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, [4074358700] = { "" }, } }, - ["MaximumResistancesEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, [4074358700] = { "" }, } }, - ["MaximumResistancesEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [4074358700] = { "" }, } }, - ["MaximumResistancesEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [4074358700] = { "" }, } }, - ["MaximumResistancesEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [3283106665] = { "" }, } }, - ["MaximumResistancesEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [3283106665] = { "" }, } }, - ["MaximumResistancesEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [3283106665] = { "" }, } }, - ["MaximumResistancesEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [3283106665] = { "" }, } }, - ["MaximumResistancesEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+4% to all maximum Resistances" }, [3283106665] = { "" }, } }, - ["MaximumResistancesEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+4% to all maximum Resistances" }, [3283106665] = { "" }, } }, + ["MaximumResistancesEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } }, + ["MaximumResistancesEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } }, + ["MaximumResistancesEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } }, + ["MaximumResistancesEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } }, + ["MaximumResistancesEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, } }, + ["MaximumResistancesEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, } }, + ["MaximumResistancesEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, } }, + ["MaximumResistancesEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, } }, + ["MaximumResistancesEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, } }, + ["MaximumResistancesEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, } }, + ["MaximumResistancesEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+4% to all maximum Resistances" }, } }, + ["MaximumResistancesEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+4% to all maximum Resistances" }, } }, ["MaximumFireResistanceEldritchEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, ["MaximumFireResistanceEldritchEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, ["MaximumFireResistanceEldritchEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, ["MaximumFireResistanceEldritchEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, ["MaximumFireResistanceEldritchEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, ["MaximumFireResistanceEldritchEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+5% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+5% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+5% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+5% to maximum Fire Resistance" }, } }, ["MaximumColdResistanceEldritchEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, ["MaximumColdResistanceEldritchEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, ["MaximumColdResistanceEldritchEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, ["MaximumColdResistanceEldritchEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, ["MaximumColdResistanceEldritchEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, ["MaximumColdResistanceEldritchEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+5% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+5% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+5% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+5% to maximum Cold Resistance" }, } }, ["MaximumLightningResistanceEldritchEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, ["MaximumLightningResistanceEldritchEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, ["MaximumLightningResistanceEldritchEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, ["MaximumLightningResistanceEldritchEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, ["MaximumLightningResistanceEldritchEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, ["MaximumLightningResistanceEldritchEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+5% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+5% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+5% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+5% to maximum Lightning Resistance" }, } }, ["MaximumChaosResistanceImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to maximum Chaos Resistance" }, } }, ["MaximumChaosResistanceImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to maximum Chaos Resistance" }, } }, ["MaximumChaosResistanceImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, } }, ["MaximumChaosResistanceImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, } }, ["MaximumChaosResistanceImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, } }, ["MaximumChaosResistanceImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, [4074358700] = { "" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, [4074358700] = { "" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, [4074358700] = { "" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, [4074358700] = { "" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, [4074358700] = { "" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, [4074358700] = { "" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, [3283106665] = { "" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, [3283106665] = { "" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, [3283106665] = { "" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, [3283106665] = { "" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+5% to maximum Chaos Resistance" }, [3283106665] = { "" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+5% to maximum Chaos Resistance" }, [3283106665] = { "" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+5% to maximum Chaos Resistance" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+5% to maximum Chaos Resistance" }, } }, ["EnduranceChargePerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 15 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 15 seconds" }, } }, ["EnduranceChargePerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 14 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 14 seconds" }, } }, ["EnduranceChargePerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 13 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 13 seconds" }, } }, ["EnduranceChargePerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 12 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 12 seconds" }, } }, ["EnduranceChargePerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 11 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 11 seconds" }, } }, ["EnduranceChargePerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 10 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 10 seconds" }, } }, - ["EnduranceChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 11 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 11 seconds" }, [4074358700] = { "" }, } }, - ["EnduranceChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 10 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 10 seconds" }, [4074358700] = { "" }, } }, - ["EnduranceChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 9 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 9 seconds" }, [4074358700] = { "" }, } }, - ["EnduranceChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 8 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 8 seconds" }, [4074358700] = { "" }, } }, - ["EnduranceChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 7 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 7 seconds" }, [4074358700] = { "" }, } }, - ["EnduranceChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 6 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 6 seconds" }, [4074358700] = { "" }, } }, - ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 7 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 7 seconds" }, [3283106665] = { "" }, } }, - ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 6 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 6 seconds" }, [3283106665] = { "" }, } }, - ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 5 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 5 seconds" }, [3283106665] = { "" }, } }, - ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 4 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 4 seconds" }, [3283106665] = { "" }, } }, - ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 3 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 3 seconds" }, [3283106665] = { "" }, } }, - ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 2 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 2 seconds" }, [3283106665] = { "" }, } }, + ["EnduranceChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 11 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 11 seconds" }, } }, + ["EnduranceChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 10 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 10 seconds" }, } }, + ["EnduranceChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 9 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 9 seconds" }, } }, + ["EnduranceChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 8 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 8 seconds" }, } }, + ["EnduranceChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 7 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 7 seconds" }, } }, + ["EnduranceChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 6 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 6 seconds" }, } }, + ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 7 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 7 seconds" }, } }, + ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 6 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 6 seconds" }, } }, + ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 5 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 5 seconds" }, } }, + ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 4 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 4 seconds" }, } }, + ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 3 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 3 seconds" }, } }, + ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 2 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 2 seconds" }, } }, ["FrenzyChargePerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 15 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 15 seconds" }, } }, ["FrenzyChargePerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 14 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 14 seconds" }, } }, ["FrenzyChargePerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 13 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 13 seconds" }, } }, ["FrenzyChargePerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 12 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 12 seconds" }, } }, ["FrenzyChargePerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 11 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 11 seconds" }, } }, ["FrenzyChargePerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 10 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 10 seconds" }, } }, - ["FrenzyChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 11 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 11 seconds" }, [4074358700] = { "" }, } }, - ["FrenzyChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 10 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 10 seconds" }, [4074358700] = { "" }, } }, - ["FrenzyChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 9 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 9 seconds" }, [4074358700] = { "" }, } }, - ["FrenzyChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 8 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 8 seconds" }, [4074358700] = { "" }, } }, - ["FrenzyChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 7 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 7 seconds" }, [4074358700] = { "" }, } }, - ["FrenzyChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 6 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 6 seconds" }, [4074358700] = { "" }, } }, - ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 7 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 7 seconds" }, [3283106665] = { "" }, } }, - ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 6 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 6 seconds" }, [3283106665] = { "" }, } }, - ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 5 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 5 seconds" }, [3283106665] = { "" }, } }, - ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 4 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 4 seconds" }, [3283106665] = { "" }, } }, - ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 3 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 3 seconds" }, [3283106665] = { "" }, } }, - ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 2 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 2 seconds" }, [3283106665] = { "" }, } }, + ["FrenzyChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 11 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 11 seconds" }, } }, + ["FrenzyChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 10 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 10 seconds" }, } }, + ["FrenzyChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 9 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 9 seconds" }, } }, + ["FrenzyChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 8 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 8 seconds" }, } }, + ["FrenzyChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 7 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 7 seconds" }, } }, + ["FrenzyChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 6 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 6 seconds" }, } }, + ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 7 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 7 seconds" }, } }, + ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 6 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 6 seconds" }, } }, + ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 5 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 5 seconds" }, } }, + ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 4 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 4 seconds" }, } }, + ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 3 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 3 seconds" }, } }, + ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 2 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 2 seconds" }, } }, ["PowerChargePerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain a Power Charge every 15 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 15 seconds" }, } }, ["PowerChargePerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain a Power Charge every 14 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 14 seconds" }, } }, ["PowerChargePerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain a Power Charge every 13 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 13 seconds" }, } }, ["PowerChargePerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain a Power Charge every 12 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 12 seconds" }, } }, ["PowerChargePerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain a Power Charge every 11 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 11 seconds" }, } }, ["PowerChargePerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain a Power Charge every 10 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 10 seconds" }, } }, - ["PowerChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 11 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 11 seconds" }, [4074358700] = { "" }, } }, - ["PowerChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 10 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 10 seconds" }, [4074358700] = { "" }, } }, - ["PowerChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 9 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 9 seconds" }, [4074358700] = { "" }, } }, - ["PowerChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 8 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 8 seconds" }, [4074358700] = { "" }, } }, - ["PowerChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 7 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 7 seconds" }, [4074358700] = { "" }, } }, - ["PowerChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 6 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 6 seconds" }, [4074358700] = { "" }, } }, - ["PowerChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 7 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 7 seconds" }, [3283106665] = { "" }, } }, - ["PowerChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 6 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 6 seconds" }, [3283106665] = { "" }, } }, - ["PowerChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 5 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 5 seconds" }, [3283106665] = { "" }, } }, - ["PowerChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 4 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 4 seconds" }, [3283106665] = { "" }, } }, - ["PowerChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 3 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 3 seconds" }, [3283106665] = { "" }, } }, - ["PowerChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 2 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 2 seconds" }, [3283106665] = { "" }, } }, + ["PowerChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 11 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 11 seconds" }, } }, + ["PowerChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 10 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 10 seconds" }, } }, + ["PowerChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 9 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 9 seconds" }, } }, + ["PowerChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 8 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 8 seconds" }, } }, + ["PowerChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 7 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 7 seconds" }, } }, + ["PowerChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 6 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 6 seconds" }, } }, + ["PowerChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 7 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 7 seconds" }, } }, + ["PowerChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 6 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 6 seconds" }, } }, + ["PowerChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 5 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 5 seconds" }, } }, + ["PowerChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 4 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 4 seconds" }, } }, + ["PowerChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 3 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 3 seconds" }, } }, + ["PowerChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 2 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 2 seconds" }, } }, ["BlockPercentEldritchImplicit1"] = { type = "Eater", affix = "", "5% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "5% Chance to Block Attack Damage" }, } }, ["BlockPercentEldritchImplicit2"] = { type = "Eater", affix = "", "6% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "6% Chance to Block Attack Damage" }, } }, ["BlockPercentEldritchImplicit3"] = { type = "Eater", affix = "", "7% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "7% Chance to Block Attack Damage" }, } }, ["BlockPercentEldritchImplicit4"] = { type = "Eater", affix = "", "8% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "8% Chance to Block Attack Damage" }, } }, ["BlockPercentEldritchImplicit5"] = { type = "Eater", affix = "", "9% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "9% Chance to Block Attack Damage" }, } }, ["BlockPercentEldritchImplicit6"] = { type = "Eater", affix = "", "10% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "10% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "7% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "8% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "9% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "10% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "11% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "12% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "9% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "10% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "11% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "12% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "13% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "14% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [2530372417] = { "7% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [2530372417] = { "8% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [2530372417] = { "9% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [2530372417] = { "10% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [2530372417] = { "11% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [2530372417] = { "12% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [2530372417] = { "9% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [2530372417] = { "10% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [2530372417] = { "11% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [2530372417] = { "12% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [2530372417] = { "13% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [2530372417] = { "14% Chance to Block Attack Damage" }, } }, ["SpellBlockPercentageEldritchImplicit1"] = { type = "Eater", affix = "", "5% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "5% Chance to Block Spell Damage" }, } }, ["SpellBlockPercentageEldritchImplicit2"] = { type = "Eater", affix = "", "6% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "6% Chance to Block Spell Damage" }, } }, ["SpellBlockPercentageEldritchImplicit3"] = { type = "Eater", affix = "", "7% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "7% Chance to Block Spell Damage" }, } }, ["SpellBlockPercentageEldritchImplicit4"] = { type = "Eater", affix = "", "8% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "8% Chance to Block Spell Damage" }, } }, ["SpellBlockPercentageEldritchImplicit5"] = { type = "Eater", affix = "", "9% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "9% Chance to Block Spell Damage" }, } }, ["SpellBlockPercentageEldritchImplicit6"] = { type = "Eater", affix = "", "10% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "10% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [561307714] = { "7% Chance to Block Spell Damage" }, [4074358700] = { "" }, } }, - ["SpellBlockPercentageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "8% Chance to Block Spell Damage" }, [4074358700] = { "" }, } }, - ["SpellBlockPercentageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "9% Chance to Block Spell Damage" }, [4074358700] = { "" }, } }, - ["SpellBlockPercentageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "10% Chance to Block Spell Damage" }, [4074358700] = { "" }, } }, - ["SpellBlockPercentageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "11% Chance to Block Spell Damage" }, [4074358700] = { "" }, } }, - ["SpellBlockPercentageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "12% Chance to Block Spell Damage" }, [4074358700] = { "" }, } }, - ["SpellBlockPercentageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [561307714] = { "9% Chance to Block Spell Damage" }, [3283106665] = { "" }, } }, - ["SpellBlockPercentageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [561307714] = { "10% Chance to Block Spell Damage" }, [3283106665] = { "" }, } }, - ["SpellBlockPercentageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [561307714] = { "11% Chance to Block Spell Damage" }, [3283106665] = { "" }, } }, - ["SpellBlockPercentageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [561307714] = { "12% Chance to Block Spell Damage" }, [3283106665] = { "" }, } }, - ["SpellBlockPercentageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [561307714] = { "13% Chance to Block Spell Damage" }, [3283106665] = { "" }, } }, - ["SpellBlockPercentageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [561307714] = { "14% Chance to Block Spell Damage" }, [3283106665] = { "" }, } }, + ["SpellBlockPercentageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [561307714] = { "7% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "8% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "9% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "10% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "11% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "12% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [561307714] = { "9% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [561307714] = { "10% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [561307714] = { "11% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [561307714] = { "12% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [561307714] = { "13% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [561307714] = { "14% Chance to Block Spell Damage" }, } }, ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(17-18)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(17-18)% increased Armour" }, } }, ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(19-20)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(19-20)% increased Armour" }, } }, ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(21-22)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(21-22)% increased Armour" }, } }, ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(23-24)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(23-24)% increased Armour" }, } }, ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(25-26)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(25-26)% increased Armour" }, } }, ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(27-28)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(27-28)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(23-24)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(25-26)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(27-28)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(29-30)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(31-32)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(33-34)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(29-30)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(31-32)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(33-34)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(35-36)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(37-38)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(39-40)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(23-24)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(25-26)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(27-28)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(29-30)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(31-32)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(33-34)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(29-30)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(31-32)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(33-34)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(35-36)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(37-38)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(39-40)% increased Armour" }, } }, ["GlobalEvasionRatingPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(17-18)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(17-18)% increased Evasion Rating" }, } }, ["GlobalEvasionRatingPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(19-20)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(19-20)% increased Evasion Rating" }, } }, ["GlobalEvasionRatingPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(21-22)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(21-22)% increased Evasion Rating" }, } }, ["GlobalEvasionRatingPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(23-24)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(23-24)% increased Evasion Rating" }, } }, ["GlobalEvasionRatingPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(25-26)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(25-26)% increased Evasion Rating" }, } }, ["GlobalEvasionRatingPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(27-28)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(27-28)% increased Evasion Rating" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(23-24)% increased Evasion Rating" }, [4074358700] = { "" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(25-26)% increased Evasion Rating" }, [4074358700] = { "" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(27-28)% increased Evasion Rating" }, [4074358700] = { "" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(29-30)% increased Evasion Rating" }, [4074358700] = { "" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(31-32)% increased Evasion Rating" }, [4074358700] = { "" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(33-34)% increased Evasion Rating" }, [4074358700] = { "" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(29-30)% increased Evasion Rating" }, [3283106665] = { "" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(31-32)% increased Evasion Rating" }, [3283106665] = { "" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(33-34)% increased Evasion Rating" }, [3283106665] = { "" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(35-36)% increased Evasion Rating" }, [3283106665] = { "" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(37-38)% increased Evasion Rating" }, [3283106665] = { "" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(39-40)% increased Evasion Rating" }, [3283106665] = { "" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(23-24)% increased Evasion Rating" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(25-26)% increased Evasion Rating" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(27-28)% increased Evasion Rating" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(29-30)% increased Evasion Rating" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(31-32)% increased Evasion Rating" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(33-34)% increased Evasion Rating" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(29-30)% increased Evasion Rating" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(31-32)% increased Evasion Rating" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(33-34)% increased Evasion Rating" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(35-36)% increased Evasion Rating" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(37-38)% increased Evasion Rating" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(39-40)% increased Evasion Rating" }, } }, ["GlobalEnergyShieldPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(6-7)% increased maximum Energy Shield" }, } }, ["GlobalEnergyShieldPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(8-9)% increased maximum Energy Shield" }, } }, ["GlobalEnergyShieldPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(10-11)% increased maximum Energy Shield" }, } }, ["GlobalEnergyShieldPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(12-13)% increased maximum Energy Shield" }, } }, ["GlobalEnergyShieldPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(14-15)% increased maximum Energy Shield" }, } }, ["GlobalEnergyShieldPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(16-17)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(12-13)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(14-15)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(16-17)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(18-19)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(20-21)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(22-23)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(18-19)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(20-21)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(22-23)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(24-25)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(26-27)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(28-29)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(12-13)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(14-15)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(16-17)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(18-19)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(20-21)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(22-23)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(18-19)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(20-21)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(22-23)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(24-25)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(26-27)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(28-29)% increased maximum Energy Shield" }, } }, ["PlayerReflectedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "45% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "45% of Damage from your Hits cannot be Reflected" }, } }, ["PlayerReflectedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "50% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "50% of Damage from your Hits cannot be Reflected" }, } }, ["PlayerReflectedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "55% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "55% of Damage from your Hits cannot be Reflected" }, } }, ["PlayerReflectedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "60% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "60% of Damage from your Hits cannot be Reflected" }, } }, ["PlayerReflectedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "65% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "65% of Damage from your Hits cannot be Reflected" }, } }, ["PlayerReflectedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "70% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "70% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 60% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "60% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 65% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "65% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 70% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "70% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 75% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "75% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 80% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "80% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 85% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "85% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "75% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "80% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "85% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "90% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "95% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 100% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "100% of Damage from your Hits cannot be Reflected" }, } }, + ["PlayerReflectedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 60% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "60% of Damage from your Hits cannot be Reflected" }, } }, + ["PlayerReflectedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 65% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "65% of Damage from your Hits cannot be Reflected" }, } }, + ["PlayerReflectedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 70% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "70% of Damage from your Hits cannot be Reflected" }, } }, + ["PlayerReflectedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 75% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "75% of Damage from your Hits cannot be Reflected" }, } }, + ["PlayerReflectedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 80% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "80% of Damage from your Hits cannot be Reflected" }, } }, + ["PlayerReflectedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 85% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "85% of Damage from your Hits cannot be Reflected" }, } }, + ["PlayerReflectedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "75% of Damage from your Hits cannot be Reflected" }, } }, + ["PlayerReflectedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "80% of Damage from your Hits cannot be Reflected" }, } }, + ["PlayerReflectedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "85% of Damage from your Hits cannot be Reflected" }, } }, + ["PlayerReflectedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "90% of Damage from your Hits cannot be Reflected" }, } }, + ["PlayerReflectedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "95% of Damage from your Hits cannot be Reflected" }, } }, + ["PlayerReflectedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 100% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "100% of Damage from your Hits cannot be Reflected" }, } }, ["MinionReflectedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "45% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "45% of Hit Damage from your Minions cannot be Reflected" }, } }, ["MinionReflectedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "50% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "50% of Hit Damage from your Minions cannot be Reflected" }, } }, ["MinionReflectedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "55% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "55% of Hit Damage from your Minions cannot be Reflected" }, } }, ["MinionReflectedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "60% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "60% of Hit Damage from your Minions cannot be Reflected" }, } }, ["MinionReflectedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "65% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "65% of Hit Damage from your Minions cannot be Reflected" }, } }, ["MinionReflectedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "70% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "70% of Hit Damage from your Minions cannot be Reflected" }, } }, - ["MinionReflectedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 60% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "60% of Hit Damage from your Minions cannot be Reflected" }, [4074358700] = { "" }, } }, - ["MinionReflectedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 65% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "65% of Hit Damage from your Minions cannot be Reflected" }, [4074358700] = { "" }, } }, - ["MinionReflectedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 70% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "70% of Hit Damage from your Minions cannot be Reflected" }, [4074358700] = { "" }, } }, - ["MinionReflectedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 75% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "75% of Hit Damage from your Minions cannot be Reflected" }, [4074358700] = { "" }, } }, - ["MinionReflectedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 80% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "80% of Hit Damage from your Minions cannot be Reflected" }, [4074358700] = { "" }, } }, - ["MinionReflectedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 85% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "85% of Hit Damage from your Minions cannot be Reflected" }, [4074358700] = { "" }, } }, - ["MinionReflectedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "75% of Hit Damage from your Minions cannot be Reflected" }, [3283106665] = { "" }, } }, - ["MinionReflectedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "80% of Hit Damage from your Minions cannot be Reflected" }, [3283106665] = { "" }, } }, - ["MinionReflectedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "85% of Hit Damage from your Minions cannot be Reflected" }, [3283106665] = { "" }, } }, - ["MinionReflectedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "90% of Hit Damage from your Minions cannot be Reflected" }, [3283106665] = { "" }, } }, - ["MinionReflectedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "95% of Hit Damage from your Minions cannot be Reflected" }, [3283106665] = { "" }, } }, - ["MinionReflectedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 100% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "100% of Hit Damage from your Minions cannot be Reflected" }, [3283106665] = { "" }, } }, + ["MinionReflectedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 60% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "60% of Hit Damage from your Minions cannot be Reflected" }, } }, + ["MinionReflectedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 65% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "65% of Hit Damage from your Minions cannot be Reflected" }, } }, + ["MinionReflectedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 70% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "70% of Hit Damage from your Minions cannot be Reflected" }, } }, + ["MinionReflectedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 75% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "75% of Hit Damage from your Minions cannot be Reflected" }, } }, + ["MinionReflectedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 80% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "80% of Hit Damage from your Minions cannot be Reflected" }, } }, + ["MinionReflectedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 85% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "85% of Hit Damage from your Minions cannot be Reflected" }, } }, + ["MinionReflectedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "75% of Hit Damage from your Minions cannot be Reflected" }, } }, + ["MinionReflectedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "80% of Hit Damage from your Minions cannot be Reflected" }, } }, + ["MinionReflectedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "85% of Hit Damage from your Minions cannot be Reflected" }, } }, + ["MinionReflectedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "90% of Hit Damage from your Minions cannot be Reflected" }, } }, + ["MinionReflectedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "95% of Hit Damage from your Minions cannot be Reflected" }, } }, + ["MinionReflectedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 100% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "100% of Hit Damage from your Minions cannot be Reflected" }, } }, ["AngerAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Anger has (19-21)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (19-21)% increased Aura Effect" }, } }, ["AngerAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Anger has (22-24)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (22-24)% increased Aura Effect" }, } }, ["AngerAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Anger has (25-27)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (25-27)% increased Aura Effect" }, } }, ["AngerAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Anger has (28-30)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (28-30)% increased Aura Effect" }, } }, ["AngerAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Anger has (31-33)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (31-33)% increased Aura Effect" }, } }, ["AngerAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Anger has (34-36)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (34-36)% increased Aura Effect" }, } }, - ["AngerAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (31-33)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (31-33)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["AngerAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (34-36)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (34-36)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["AngerAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (37-39)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (37-39)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["AngerAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (40-42)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (40-42)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["AngerAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (43-45)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (43-45)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["AngerAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (46-48)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (46-48)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["AngerAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (43-45)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (43-45)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["AngerAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (46-48)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (46-48)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["AngerAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (49-51)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (49-51)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["AngerAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (52-54)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (52-54)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["AngerAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (55-57)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (55-57)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["AngerAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (58-60)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (58-60)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["AngerAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (31-33)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (31-33)% increased Aura Effect" }, } }, + ["AngerAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (34-36)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (34-36)% increased Aura Effect" }, } }, + ["AngerAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (37-39)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (37-39)% increased Aura Effect" }, } }, + ["AngerAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (40-42)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (40-42)% increased Aura Effect" }, } }, + ["AngerAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (43-45)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (43-45)% increased Aura Effect" }, } }, + ["AngerAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (46-48)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (46-48)% increased Aura Effect" }, } }, + ["AngerAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (43-45)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (43-45)% increased Aura Effect" }, } }, + ["AngerAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (46-48)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (46-48)% increased Aura Effect" }, } }, + ["AngerAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (49-51)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (49-51)% increased Aura Effect" }, } }, + ["AngerAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (52-54)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (52-54)% increased Aura Effect" }, } }, + ["AngerAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (55-57)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (55-57)% increased Aura Effect" }, } }, + ["AngerAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (58-60)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (58-60)% increased Aura Effect" }, } }, ["HatredAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Hatred has (19-21)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (19-21)% increased Aura Effect" }, } }, ["HatredAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Hatred has (22-24)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (22-24)% increased Aura Effect" }, } }, ["HatredAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Hatred has (25-27)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (25-27)% increased Aura Effect" }, } }, ["HatredAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Hatred has (28-30)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (28-30)% increased Aura Effect" }, } }, ["HatredAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Hatred has (31-33)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (31-33)% increased Aura Effect" }, } }, ["HatredAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Hatred has (34-36)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (34-36)% increased Aura Effect" }, } }, - ["HatredAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (31-33)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (31-33)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["HatredAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (34-36)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (34-36)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["HatredAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (37-39)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (37-39)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["HatredAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (40-42)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (40-42)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["HatredAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (43-45)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (43-45)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["HatredAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (46-48)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (46-48)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["HatredAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (43-45)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (43-45)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["HatredAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (46-48)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (46-48)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["HatredAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (49-51)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (49-51)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["HatredAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (52-54)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (52-54)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["HatredAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (55-57)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (55-57)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["HatredAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (58-60)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (58-60)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["HatredAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (31-33)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (31-33)% increased Aura Effect" }, } }, + ["HatredAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (34-36)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (34-36)% increased Aura Effect" }, } }, + ["HatredAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (37-39)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (37-39)% increased Aura Effect" }, } }, + ["HatredAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (40-42)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (40-42)% increased Aura Effect" }, } }, + ["HatredAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (43-45)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (43-45)% increased Aura Effect" }, } }, + ["HatredAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (46-48)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (46-48)% increased Aura Effect" }, } }, + ["HatredAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (43-45)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (43-45)% increased Aura Effect" }, } }, + ["HatredAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (46-48)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (46-48)% increased Aura Effect" }, } }, + ["HatredAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (49-51)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (49-51)% increased Aura Effect" }, } }, + ["HatredAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (52-54)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (52-54)% increased Aura Effect" }, } }, + ["HatredAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (55-57)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (55-57)% increased Aura Effect" }, } }, + ["HatredAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (58-60)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (58-60)% increased Aura Effect" }, } }, ["WrathAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Wrath has (19-21)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (19-21)% increased Aura Effect" }, } }, ["WrathAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Wrath has (22-24)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (22-24)% increased Aura Effect" }, } }, ["WrathAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Wrath has (25-27)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (25-27)% increased Aura Effect" }, } }, ["WrathAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Wrath has (28-30)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (28-30)% increased Aura Effect" }, } }, ["WrathAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Wrath has (31-33)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (31-33)% increased Aura Effect" }, } }, ["WrathAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Wrath has (34-36)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (34-36)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (31-33)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (31-33)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (34-36)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (34-36)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (37-39)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (37-39)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (40-42)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (40-42)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (43-45)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (43-45)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (46-48)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (46-48)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (43-45)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (43-45)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (46-48)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (46-48)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (49-51)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (49-51)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (52-54)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (52-54)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (55-57)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (55-57)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (58-60)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (58-60)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (31-33)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2181791238] = { "Wrath has (31-33)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (34-36)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2181791238] = { "Wrath has (34-36)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (37-39)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2181791238] = { "Wrath has (37-39)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (40-42)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2181791238] = { "Wrath has (40-42)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (43-45)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2181791238] = { "Wrath has (43-45)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (46-48)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2181791238] = { "Wrath has (46-48)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (43-45)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2181791238] = { "Wrath has (43-45)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (46-48)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2181791238] = { "Wrath has (46-48)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (49-51)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2181791238] = { "Wrath has (49-51)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (52-54)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2181791238] = { "Wrath has (52-54)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (55-57)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2181791238] = { "Wrath has (55-57)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (58-60)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2181791238] = { "Wrath has (58-60)% increased Aura Effect" }, } }, ["MalevolenceAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Malevolence has (19-21)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (19-21)% increased Aura Effect" }, } }, ["MalevolenceAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Malevolence has (22-24)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (22-24)% increased Aura Effect" }, } }, ["MalevolenceAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Malevolence has (25-27)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (25-27)% increased Aura Effect" }, } }, ["MalevolenceAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Malevolence has (28-30)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (28-30)% increased Aura Effect" }, } }, ["MalevolenceAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Malevolence has (31-33)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (31-33)% increased Aura Effect" }, } }, ["MalevolenceAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Malevolence has (34-36)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (34-36)% increased Aura Effect" }, } }, - ["MalevolenceAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (31-33)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (31-33)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["MalevolenceAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (34-36)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (34-36)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["MalevolenceAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (37-39)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (37-39)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["MalevolenceAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (40-42)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (40-42)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["MalevolenceAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (43-45)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (43-45)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["MalevolenceAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (46-48)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (46-48)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (43-45)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (43-45)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (46-48)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (46-48)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (49-51)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (49-51)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (52-54)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (52-54)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (55-57)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (55-57)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (58-60)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (58-60)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["MalevolenceAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (31-33)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (31-33)% increased Aura Effect" }, } }, + ["MalevolenceAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (34-36)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (34-36)% increased Aura Effect" }, } }, + ["MalevolenceAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (37-39)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (37-39)% increased Aura Effect" }, } }, + ["MalevolenceAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (40-42)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (40-42)% increased Aura Effect" }, } }, + ["MalevolenceAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (43-45)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (43-45)% increased Aura Effect" }, } }, + ["MalevolenceAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (46-48)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (46-48)% increased Aura Effect" }, } }, + ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (43-45)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (43-45)% increased Aura Effect" }, } }, + ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (46-48)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (46-48)% increased Aura Effect" }, } }, + ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (49-51)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (49-51)% increased Aura Effect" }, } }, + ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (52-54)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (52-54)% increased Aura Effect" }, } }, + ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (55-57)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (55-57)% increased Aura Effect" }, } }, + ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (58-60)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (58-60)% increased Aura Effect" }, } }, ["ZealotryAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Zealotry has (19-21)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (19-21)% increased Aura Effect" }, } }, ["ZealotryAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Zealotry has (22-24)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (22-24)% increased Aura Effect" }, } }, ["ZealotryAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Zealotry has (25-27)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (25-27)% increased Aura Effect" }, } }, ["ZealotryAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Zealotry has (28-30)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (28-30)% increased Aura Effect" }, } }, ["ZealotryAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Zealotry has (31-33)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (31-33)% increased Aura Effect" }, } }, ["ZealotryAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Zealotry has (34-36)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (34-36)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (31-33)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (31-33)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (34-36)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (34-36)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (37-39)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (37-39)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (40-42)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (40-42)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (43-45)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (43-45)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (46-48)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (46-48)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (43-45)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (43-45)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (46-48)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (46-48)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (49-51)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (49-51)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (52-54)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (52-54)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (55-57)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (55-57)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (58-60)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (58-60)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (31-33)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4096052153] = { "Zealotry has (31-33)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (34-36)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4096052153] = { "Zealotry has (34-36)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (37-39)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4096052153] = { "Zealotry has (37-39)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (40-42)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4096052153] = { "Zealotry has (40-42)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (43-45)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4096052153] = { "Zealotry has (43-45)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (46-48)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4096052153] = { "Zealotry has (46-48)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (43-45)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4096052153] = { "Zealotry has (43-45)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (46-48)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4096052153] = { "Zealotry has (46-48)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (49-51)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4096052153] = { "Zealotry has (49-51)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (52-54)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4096052153] = { "Zealotry has (52-54)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (55-57)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4096052153] = { "Zealotry has (55-57)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (58-60)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4096052153] = { "Zealotry has (58-60)% increased Aura Effect" }, } }, ["PrideAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Pride has (19-21)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (19-21)% increased Aura Effect" }, } }, ["PrideAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Pride has (22-24)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (22-24)% increased Aura Effect" }, } }, ["PrideAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Pride has (25-27)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (25-27)% increased Aura Effect" }, } }, ["PrideAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Pride has (28-30)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (28-30)% increased Aura Effect" }, } }, ["PrideAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Pride has (31-33)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (31-33)% increased Aura Effect" }, } }, ["PrideAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Pride has (34-36)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (34-36)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (31-33)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (31-33)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (34-36)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (34-36)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (37-39)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (37-39)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (40-42)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (40-42)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (43-45)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (43-45)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (46-48)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (46-48)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (43-45)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (43-45)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (46-48)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (46-48)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (49-51)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (49-51)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (52-54)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (52-54)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (55-57)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (55-57)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (58-60)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (58-60)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (31-33)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4247488219] = { "Pride has (31-33)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (34-36)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4247488219] = { "Pride has (34-36)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (37-39)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4247488219] = { "Pride has (37-39)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (40-42)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4247488219] = { "Pride has (40-42)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (43-45)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4247488219] = { "Pride has (43-45)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (46-48)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4247488219] = { "Pride has (46-48)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (43-45)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4247488219] = { "Pride has (43-45)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (46-48)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4247488219] = { "Pride has (46-48)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (49-51)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4247488219] = { "Pride has (49-51)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (52-54)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4247488219] = { "Pride has (52-54)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (55-57)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4247488219] = { "Pride has (55-57)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (58-60)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4247488219] = { "Pride has (58-60)% increased Aura Effect" }, } }, ["DeterminationAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Determination has (19-21)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (19-21)% increased Aura Effect" }, } }, ["DeterminationAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Determination has (22-24)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (22-24)% increased Aura Effect" }, } }, ["DeterminationAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Determination has (25-27)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (25-27)% increased Aura Effect" }, } }, ["DeterminationAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Determination has (28-30)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (28-30)% increased Aura Effect" }, } }, ["DeterminationAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Determination has (31-33)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (31-33)% increased Aura Effect" }, } }, ["DeterminationAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Determination has (34-36)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (34-36)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (31-33)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (31-33)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (34-36)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (34-36)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (37-39)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (37-39)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (40-42)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (40-42)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (43-45)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (43-45)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (46-48)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (46-48)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (43-45)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (43-45)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (46-48)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (46-48)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (49-51)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (49-51)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (52-54)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (52-54)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (55-57)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (55-57)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (58-60)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (58-60)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (31-33)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3653400807] = { "Determination has (31-33)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (34-36)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3653400807] = { "Determination has (34-36)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (37-39)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3653400807] = { "Determination has (37-39)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (40-42)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3653400807] = { "Determination has (40-42)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (43-45)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3653400807] = { "Determination has (43-45)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (46-48)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3653400807] = { "Determination has (46-48)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (43-45)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3653400807] = { "Determination has (43-45)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (46-48)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3653400807] = { "Determination has (46-48)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (49-51)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3653400807] = { "Determination has (49-51)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (52-54)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3653400807] = { "Determination has (52-54)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (55-57)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3653400807] = { "Determination has (55-57)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (58-60)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3653400807] = { "Determination has (58-60)% increased Aura Effect" }, } }, ["GraceAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Grace has (19-21)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (19-21)% increased Aura Effect" }, } }, ["GraceAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Grace has (22-24)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (22-24)% increased Aura Effect" }, } }, ["GraceAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Grace has (25-27)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (25-27)% increased Aura Effect" }, } }, ["GraceAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Grace has (28-30)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (28-30)% increased Aura Effect" }, } }, ["GraceAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Grace has (31-33)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (31-33)% increased Aura Effect" }, } }, ["GraceAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Grace has (34-36)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (34-36)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (31-33)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (31-33)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (34-36)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (34-36)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (37-39)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (37-39)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (40-42)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (40-42)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (43-45)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (43-45)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (46-48)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (46-48)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (43-45)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (43-45)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (46-48)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (46-48)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (49-51)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (49-51)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (52-54)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (52-54)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (55-57)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (55-57)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (58-60)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (58-60)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (31-33)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [397427740] = { "Grace has (31-33)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (34-36)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [397427740] = { "Grace has (34-36)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (37-39)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [397427740] = { "Grace has (37-39)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (40-42)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [397427740] = { "Grace has (40-42)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (43-45)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [397427740] = { "Grace has (43-45)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (46-48)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [397427740] = { "Grace has (46-48)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (43-45)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [397427740] = { "Grace has (43-45)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (46-48)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [397427740] = { "Grace has (46-48)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (49-51)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [397427740] = { "Grace has (49-51)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (52-54)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [397427740] = { "Grace has (52-54)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (55-57)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [397427740] = { "Grace has (55-57)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (58-60)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [397427740] = { "Grace has (58-60)% increased Aura Effect" }, } }, ["DisciplineAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Discipline has (19-21)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (19-21)% increased Aura Effect" }, } }, ["DisciplineAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Discipline has (22-24)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (22-24)% increased Aura Effect" }, } }, ["DisciplineAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Discipline has (25-27)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (25-27)% increased Aura Effect" }, } }, ["DisciplineAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Discipline has (28-30)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (28-30)% increased Aura Effect" }, } }, ["DisciplineAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Discipline has (31-33)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (31-33)% increased Aura Effect" }, } }, ["DisciplineAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Discipline has (34-36)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (34-36)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (31-33)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (31-33)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (34-36)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (34-36)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (37-39)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (37-39)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (40-42)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (40-42)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (43-45)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (43-45)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (46-48)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (46-48)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (43-45)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (43-45)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (46-48)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (46-48)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (49-51)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (49-51)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (52-54)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (52-54)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (55-57)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (55-57)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (58-60)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (58-60)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (31-33)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [788317702] = { "Discipline has (31-33)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (34-36)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [788317702] = { "Discipline has (34-36)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (37-39)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [788317702] = { "Discipline has (37-39)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (40-42)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [788317702] = { "Discipline has (40-42)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (43-45)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [788317702] = { "Discipline has (43-45)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (46-48)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [788317702] = { "Discipline has (46-48)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (43-45)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [788317702] = { "Discipline has (43-45)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (46-48)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [788317702] = { "Discipline has (46-48)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (49-51)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [788317702] = { "Discipline has (49-51)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (52-54)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [788317702] = { "Discipline has (52-54)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (55-57)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [788317702] = { "Discipline has (55-57)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (58-60)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [788317702] = { "Discipline has (58-60)% increased Aura Effect" }, } }, ["HasteAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Haste has (19-21)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (19-21)% increased Aura Effect" }, } }, ["HasteAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Haste has (22-24)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (22-24)% increased Aura Effect" }, } }, ["HasteAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Haste has (25-27)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (25-27)% increased Aura Effect" }, } }, ["HasteAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Haste has (28-30)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (28-30)% increased Aura Effect" }, } }, ["HasteAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Haste has (31-33)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (31-33)% increased Aura Effect" }, } }, ["HasteAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Haste has (34-36)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (34-36)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (31-33)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (31-33)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (34-36)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (34-36)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (37-39)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (37-39)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (40-42)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (40-42)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (43-45)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (43-45)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (46-48)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (46-48)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (43-45)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (43-45)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (46-48)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (46-48)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (49-51)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (49-51)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (52-54)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (52-54)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (55-57)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (55-57)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (58-60)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (58-60)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (31-33)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1240056437] = { "Haste has (31-33)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (34-36)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1240056437] = { "Haste has (34-36)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (37-39)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1240056437] = { "Haste has (37-39)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (40-42)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1240056437] = { "Haste has (40-42)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (43-45)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1240056437] = { "Haste has (43-45)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (46-48)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1240056437] = { "Haste has (46-48)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (43-45)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1240056437] = { "Haste has (43-45)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (46-48)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1240056437] = { "Haste has (46-48)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (49-51)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1240056437] = { "Haste has (49-51)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (52-54)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1240056437] = { "Haste has (52-54)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (55-57)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1240056437] = { "Haste has (55-57)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (58-60)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1240056437] = { "Haste has (58-60)% increased Aura Effect" }, } }, ["PurityOfElementsEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Elements has (19-21)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (19-21)% increased Aura Effect" }, } }, ["PurityOfElementsEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Elements has (22-24)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (22-24)% increased Aura Effect" }, } }, ["PurityOfElementsEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Elements has (25-27)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (25-27)% increased Aura Effect" }, } }, ["PurityOfElementsEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Elements has (28-30)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (28-30)% increased Aura Effect" }, } }, ["PurityOfElementsEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Elements has (31-33)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (31-33)% increased Aura Effect" }, } }, ["PurityOfElementsEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Elements has (34-36)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (34-36)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (31-33)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (31-33)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (34-36)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (34-36)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (37-39)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (37-39)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (40-42)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (40-42)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (43-45)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (43-45)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (46-48)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (46-48)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (43-45)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (43-45)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (46-48)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (46-48)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (49-51)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (49-51)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (52-54)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (52-54)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (55-57)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (55-57)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (58-60)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (58-60)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (31-33)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3541970927] = { "Purity of Elements has (31-33)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (34-36)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3541970927] = { "Purity of Elements has (34-36)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (37-39)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3541970927] = { "Purity of Elements has (37-39)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (40-42)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3541970927] = { "Purity of Elements has (40-42)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (43-45)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3541970927] = { "Purity of Elements has (43-45)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (46-48)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3541970927] = { "Purity of Elements has (46-48)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (43-45)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3541970927] = { "Purity of Elements has (43-45)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (46-48)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3541970927] = { "Purity of Elements has (46-48)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (49-51)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3541970927] = { "Purity of Elements has (49-51)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (52-54)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3541970927] = { "Purity of Elements has (52-54)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (55-57)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3541970927] = { "Purity of Elements has (55-57)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (58-60)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3541970927] = { "Purity of Elements has (58-60)% increased Aura Effect" }, } }, ["PurityOfFireEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Fire has (19-21)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (19-21)% increased Aura Effect" }, } }, ["PurityOfFireEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Fire has (22-24)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (22-24)% increased Aura Effect" }, } }, ["PurityOfFireEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Fire has (25-27)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (25-27)% increased Aura Effect" }, } }, ["PurityOfFireEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Fire has (28-30)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (28-30)% increased Aura Effect" }, } }, ["PurityOfFireEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Fire has (31-33)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (31-33)% increased Aura Effect" }, } }, ["PurityOfFireEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Fire has (34-36)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (34-36)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (31-33)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (31-33)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (34-36)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (34-36)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (37-39)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (37-39)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (40-42)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (40-42)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (43-45)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (43-45)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (46-48)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (46-48)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (43-45)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (43-45)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (46-48)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (46-48)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (49-51)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (49-51)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (52-54)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (52-54)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (55-57)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (55-57)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (58-60)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (58-60)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (31-33)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2539726203] = { "Purity of Fire has (31-33)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (34-36)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2539726203] = { "Purity of Fire has (34-36)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (37-39)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2539726203] = { "Purity of Fire has (37-39)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (40-42)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2539726203] = { "Purity of Fire has (40-42)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (43-45)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2539726203] = { "Purity of Fire has (43-45)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (46-48)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2539726203] = { "Purity of Fire has (46-48)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (43-45)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2539726203] = { "Purity of Fire has (43-45)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (46-48)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2539726203] = { "Purity of Fire has (46-48)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (49-51)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2539726203] = { "Purity of Fire has (49-51)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (52-54)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2539726203] = { "Purity of Fire has (52-54)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (55-57)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2539726203] = { "Purity of Fire has (55-57)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (58-60)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2539726203] = { "Purity of Fire has (58-60)% increased Aura Effect" }, } }, ["PurityOfIceEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Ice has (19-21)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (19-21)% increased Aura Effect" }, } }, ["PurityOfIceEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Ice has (22-24)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (22-24)% increased Aura Effect" }, } }, ["PurityOfIceEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Ice has (25-27)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (25-27)% increased Aura Effect" }, } }, ["PurityOfIceEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Ice has (28-30)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (28-30)% increased Aura Effect" }, } }, ["PurityOfIceEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Ice has (31-33)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (31-33)% increased Aura Effect" }, } }, ["PurityOfIceEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Ice has (34-36)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (34-36)% increased Aura Effect" }, } }, - ["PurityOfIceEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (31-33)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (31-33)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["PurityOfIceEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (34-36)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (34-36)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["PurityOfIceEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (37-39)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (37-39)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["PurityOfIceEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (40-42)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (40-42)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["PurityOfIceEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (43-45)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (43-45)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["PurityOfIceEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (46-48)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (46-48)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["PurityOfIceEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (43-45)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (43-45)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["PurityOfIceEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (46-48)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (46-48)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["PurityOfIceEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (49-51)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (49-51)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["PurityOfIceEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (52-54)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (52-54)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["PurityOfIceEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (55-57)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (55-57)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["PurityOfIceEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (58-60)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (58-60)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["PurityOfIceEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (31-33)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (31-33)% increased Aura Effect" }, } }, + ["PurityOfIceEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (34-36)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (34-36)% increased Aura Effect" }, } }, + ["PurityOfIceEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (37-39)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (37-39)% increased Aura Effect" }, } }, + ["PurityOfIceEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (40-42)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (40-42)% increased Aura Effect" }, } }, + ["PurityOfIceEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (43-45)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (43-45)% increased Aura Effect" }, } }, + ["PurityOfIceEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (46-48)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (46-48)% increased Aura Effect" }, } }, + ["PurityOfIceEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (43-45)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (43-45)% increased Aura Effect" }, } }, + ["PurityOfIceEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (46-48)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (46-48)% increased Aura Effect" }, } }, + ["PurityOfIceEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (49-51)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (49-51)% increased Aura Effect" }, } }, + ["PurityOfIceEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (52-54)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (52-54)% increased Aura Effect" }, } }, + ["PurityOfIceEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (55-57)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (55-57)% increased Aura Effect" }, } }, + ["PurityOfIceEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (58-60)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (58-60)% increased Aura Effect" }, } }, ["PurityOfLightningEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Lightning has (19-21)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (19-21)% increased Aura Effect" }, } }, ["PurityOfLightningEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Lightning has (22-24)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (22-24)% increased Aura Effect" }, } }, ["PurityOfLightningEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Lightning has (25-27)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (25-27)% increased Aura Effect" }, } }, ["PurityOfLightningEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Lightning has (28-30)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (28-30)% increased Aura Effect" }, } }, ["PurityOfLightningEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Lightning has (31-33)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (31-33)% increased Aura Effect" }, } }, ["PurityOfLightningEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Lightning has (34-36)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (34-36)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (31-33)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (31-33)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (34-36)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (34-36)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (37-39)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (37-39)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (40-42)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (40-42)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (43-45)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (43-45)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (46-48)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (46-48)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (43-45)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (43-45)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (46-48)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (46-48)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (49-51)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (49-51)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (52-54)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (52-54)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (55-57)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (55-57)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (58-60)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (58-60)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (31-33)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [45589825] = { "Purity of Lightning has (31-33)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (34-36)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [45589825] = { "Purity of Lightning has (34-36)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (37-39)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [45589825] = { "Purity of Lightning has (37-39)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (40-42)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [45589825] = { "Purity of Lightning has (40-42)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (43-45)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [45589825] = { "Purity of Lightning has (43-45)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (46-48)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [45589825] = { "Purity of Lightning has (46-48)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (43-45)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [45589825] = { "Purity of Lightning has (43-45)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (46-48)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [45589825] = { "Purity of Lightning has (46-48)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (49-51)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [45589825] = { "Purity of Lightning has (49-51)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (52-54)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [45589825] = { "Purity of Lightning has (52-54)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (55-57)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [45589825] = { "Purity of Lightning has (55-57)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (58-60)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [45589825] = { "Purity of Lightning has (58-60)% increased Aura Effect" }, } }, ["FortifyOnMeleeHitEldritchImplicit1"] = { type = "Eater", affix = "", "Melee Hits have (6-7)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (6-7)% chance to Fortify" }, } }, ["FortifyOnMeleeHitEldritchImplicit2"] = { type = "Eater", affix = "", "Melee Hits have (8-9)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (8-9)% chance to Fortify" }, } }, ["FortifyOnMeleeHitEldritchImplicit3"] = { type = "Eater", affix = "", "Melee Hits have (10-11)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (10-11)% chance to Fortify" }, } }, ["FortifyOnMeleeHitEldritchImplicit4"] = { type = "Eater", affix = "", "Melee Hits have (12-13)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (12-13)% chance to Fortify" }, } }, ["FortifyOnMeleeHitEldritchImplicit5"] = { type = "Eater", affix = "", "Melee Hits have (14-15)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (14-15)% chance to Fortify" }, } }, ["FortifyOnMeleeHitEldritchImplicit6"] = { type = "Eater", affix = "", "Melee Hits have (16-17)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (16-17)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (12-13)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (12-13)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (14-15)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (14-15)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (16-17)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (16-17)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (18-19)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (18-19)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (20-21)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (20-21)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (22-23)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (22-23)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (18-19)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (18-19)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (20-21)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (20-21)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (22-23)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (22-23)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (24-25)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (24-25)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (26-27)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (26-27)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (28-29)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (28-29)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (12-13)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (12-13)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (14-15)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (14-15)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (16-17)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (16-17)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (18-19)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (18-19)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (20-21)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (20-21)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (22-23)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (22-23)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (18-19)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (18-19)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (20-21)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (20-21)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (22-23)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (22-23)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (24-25)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (24-25)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (26-27)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (26-27)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (28-29)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (28-29)% chance to Fortify" }, } }, ["AllResistancesEldritchImplicit1"] = { type = "Eater", affix = "", "+(5-6)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(5-6)% to all Elemental Resistances" }, } }, ["AllResistancesEldritchImplicit2"] = { type = "Eater", affix = "", "+(7-8)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(7-8)% to all Elemental Resistances" }, } }, ["AllResistancesEldritchImplicit3"] = { type = "Eater", affix = "", "+(9-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(9-10)% to all Elemental Resistances" }, } }, ["AllResistancesEldritchImplicit4"] = { type = "Eater", affix = "", "+(11-12)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(11-12)% to all Elemental Resistances" }, } }, ["AllResistancesEldritchImplicit5"] = { type = "Eater", affix = "", "+(13-14)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(13-14)% to all Elemental Resistances" }, } }, ["AllResistancesEldritchImplicit6"] = { type = "Eater", affix = "", "+(15-16)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-16)% to all Elemental Resistances" }, } }, - ["AllResistancesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(11-12)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(11-12)% to all Elemental Resistances" }, [4074358700] = { "" }, } }, - ["AllResistancesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(13-14)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(13-14)% to all Elemental Resistances" }, [4074358700] = { "" }, } }, - ["AllResistancesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(15-16)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-16)% to all Elemental Resistances" }, [4074358700] = { "" }, } }, - ["AllResistancesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(17-18)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(17-18)% to all Elemental Resistances" }, [4074358700] = { "" }, } }, - ["AllResistancesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(19-20)% to all Elemental Resistances" }, [4074358700] = { "" }, } }, - ["AllResistancesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(21-22)% to all Elemental Resistances" }, [4074358700] = { "" }, } }, - ["AllResistancesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(17-18)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(17-18)% to all Elemental Resistances" }, [3283106665] = { "" }, } }, - ["AllResistancesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(19-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(19-20)% to all Elemental Resistances" }, [3283106665] = { "" }, } }, - ["AllResistancesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(21-22)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(21-22)% to all Elemental Resistances" }, [3283106665] = { "" }, } }, - ["AllResistancesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-24)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(23-24)% to all Elemental Resistances" }, [3283106665] = { "" }, } }, - ["AllResistancesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(25-26)% to all Elemental Resistances" }, [3283106665] = { "" }, } }, - ["AllResistancesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(27-28)% to all Elemental Resistances" }, [3283106665] = { "" }, } }, + ["AllResistancesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(11-12)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(11-12)% to all Elemental Resistances" }, } }, + ["AllResistancesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(13-14)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(13-14)% to all Elemental Resistances" }, } }, + ["AllResistancesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(15-16)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-16)% to all Elemental Resistances" }, } }, + ["AllResistancesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(17-18)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(17-18)% to all Elemental Resistances" }, } }, + ["AllResistancesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(19-20)% to all Elemental Resistances" }, } }, + ["AllResistancesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(21-22)% to all Elemental Resistances" }, } }, + ["AllResistancesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(17-18)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(17-18)% to all Elemental Resistances" }, } }, + ["AllResistancesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(19-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(19-20)% to all Elemental Resistances" }, } }, + ["AllResistancesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(21-22)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(21-22)% to all Elemental Resistances" }, } }, + ["AllResistancesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-24)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(23-24)% to all Elemental Resistances" }, } }, + ["AllResistancesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(25-26)% to all Elemental Resistances" }, } }, + ["AllResistancesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(27-28)% to all Elemental Resistances" }, } }, ["LifeRecoveryRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "7% increased Life Recovery rate" }, } }, ["LifeRecoveryRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "8% increased Life Recovery rate" }, } }, ["LifeRecoveryRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "9% increased Life Recovery rate" }, } }, ["LifeRecoveryRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "10% increased Life Recovery rate" }, } }, ["LifeRecoveryRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "11% increased Life Recovery rate" }, } }, ["LifeRecoveryRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "12% increased Life Recovery rate" }, } }, - ["LifeRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "9% increased Life Recovery rate" }, [4074358700] = { "" }, } }, - ["LifeRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "10% increased Life Recovery rate" }, [4074358700] = { "" }, } }, - ["LifeRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "11% increased Life Recovery rate" }, [4074358700] = { "" }, } }, - ["LifeRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "12% increased Life Recovery rate" }, [4074358700] = { "" }, } }, - ["LifeRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "13% increased Life Recovery rate" }, [4074358700] = { "" }, } }, - ["LifeRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "14% increased Life Recovery rate" }, [4074358700] = { "" }, } }, - ["LifeRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "11% increased Life Recovery rate" }, [3283106665] = { "" }, } }, - ["LifeRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "12% increased Life Recovery rate" }, [3283106665] = { "" }, } }, - ["LifeRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "13% increased Life Recovery rate" }, [3283106665] = { "" }, } }, - ["LifeRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "14% increased Life Recovery rate" }, [3283106665] = { "" }, } }, - ["LifeRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "15% increased Life Recovery rate" }, [3283106665] = { "" }, } }, - ["LifeRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "16% increased Life Recovery rate" }, [3283106665] = { "" }, } }, + ["LifeRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "9% increased Life Recovery rate" }, } }, + ["LifeRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "10% increased Life Recovery rate" }, } }, + ["LifeRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "11% increased Life Recovery rate" }, } }, + ["LifeRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "12% increased Life Recovery rate" }, } }, + ["LifeRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "13% increased Life Recovery rate" }, } }, + ["LifeRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "14% increased Life Recovery rate" }, } }, + ["LifeRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "11% increased Life Recovery rate" }, } }, + ["LifeRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "12% increased Life Recovery rate" }, } }, + ["LifeRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "13% increased Life Recovery rate" }, } }, + ["LifeRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "14% increased Life Recovery rate" }, } }, + ["LifeRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "15% increased Life Recovery rate" }, } }, + ["LifeRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "16% increased Life Recovery rate" }, } }, ["ManaRecoveryRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "7% increased Mana Recovery rate" }, } }, ["ManaRecoveryRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "8% increased Mana Recovery rate" }, } }, ["ManaRecoveryRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "9% increased Mana Recovery rate" }, } }, ["ManaRecoveryRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "10% increased Mana Recovery rate" }, } }, ["ManaRecoveryRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "11% increased Mana Recovery rate" }, } }, ["ManaRecoveryRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "12% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "9% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "10% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "11% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "12% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "13% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "14% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "11% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "12% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "13% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "14% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "15% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "16% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "9% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "10% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "11% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "12% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "13% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "14% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "11% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "12% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "13% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "14% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "15% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "16% increased Mana Recovery rate" }, } }, ["EnergyShieldRecoveryRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "7% increased Energy Shield Recovery rate" }, } }, ["EnergyShieldRecoveryRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "8% increased Energy Shield Recovery rate" }, } }, ["EnergyShieldRecoveryRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "9% increased Energy Shield Recovery rate" }, } }, ["EnergyShieldRecoveryRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "10% increased Energy Shield Recovery rate" }, } }, ["EnergyShieldRecoveryRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "11% increased Energy Shield Recovery rate" }, } }, ["EnergyShieldRecoveryRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "12% increased Energy Shield Recovery rate" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "9% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "10% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "11% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "12% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "13% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "14% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "11% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "12% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "13% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "14% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "15% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "16% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "9% increased Energy Shield Recovery rate" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "10% increased Energy Shield Recovery rate" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "11% increased Energy Shield Recovery rate" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "12% increased Energy Shield Recovery rate" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "13% increased Energy Shield Recovery rate" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "14% increased Energy Shield Recovery rate" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "11% increased Energy Shield Recovery rate" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "12% increased Energy Shield Recovery rate" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "13% increased Energy Shield Recovery rate" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "14% increased Energy Shield Recovery rate" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "15% increased Energy Shield Recovery rate" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "16% increased Energy Shield Recovery rate" }, } }, ["DamageTakenPerStrengthEldritchImplicit1"] = { type = "Eater", affix = "", "1% less Damage Taken per 230 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 230 Strength" }, } }, ["DamageTakenPerStrengthEldritchImplicit2"] = { type = "Eater", affix = "", "1% less Damage Taken per 220 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 220 Strength" }, } }, ["DamageTakenPerStrengthEldritchImplicit3"] = { type = "Eater", affix = "", "1% less Damage Taken per 210 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 210 Strength" }, } }, ["DamageTakenPerStrengthEldritchImplicit4"] = { type = "Eater", affix = "", "1% less Damage Taken per 200 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 200 Strength" }, } }, ["DamageTakenPerStrengthEldritchImplicit5"] = { type = "Eater", affix = "", "1% less Damage Taken per 190 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 190 Strength" }, } }, ["DamageTakenPerStrengthEldritchImplicit6"] = { type = "Eater", affix = "", "1% less Damage Taken per 180 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 180 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 210 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 200 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 190 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 180 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 170 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 160 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 190 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 180 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 170 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 160 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 150 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 140 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 210 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 200 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 190 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 180 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 170 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 160 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 190 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 180 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 170 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 160 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 150 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 140 Strength" }, } }, ["DamageTakenPerDexterityEldritchImplicit1"] = { type = "Eater", affix = "", "1% less Damage Taken per 230 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 230 Dexterity" }, } }, ["DamageTakenPerDexterityEldritchImplicit2"] = { type = "Eater", affix = "", "1% less Damage Taken per 220 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 220 Dexterity" }, } }, ["DamageTakenPerDexterityEldritchImplicit3"] = { type = "Eater", affix = "", "1% less Damage Taken per 210 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 210 Dexterity" }, } }, ["DamageTakenPerDexterityEldritchImplicit4"] = { type = "Eater", affix = "", "1% less Damage Taken per 200 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 200 Dexterity" }, } }, ["DamageTakenPerDexterityEldritchImplicit5"] = { type = "Eater", affix = "", "1% less Damage Taken per 190 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 190 Dexterity" }, } }, ["DamageTakenPerDexterityEldritchImplicit6"] = { type = "Eater", affix = "", "1% less Damage Taken per 180 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 180 Dexterity" }, } }, - ["DamageTakenPerDexterityEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 210 Dexterity" }, [4074358700] = { "" }, } }, - ["DamageTakenPerDexterityEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 200 Dexterity" }, [4074358700] = { "" }, } }, - ["DamageTakenPerDexterityEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 190 Dexterity" }, [4074358700] = { "" }, } }, - ["DamageTakenPerDexterityEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 180 Dexterity" }, [4074358700] = { "" }, } }, - ["DamageTakenPerDexterityEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 170 Dexterity" }, [4074358700] = { "" }, } }, - ["DamageTakenPerDexterityEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 160 Dexterity" }, [4074358700] = { "" }, } }, - ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 190 Dexterity" }, [3283106665] = { "" }, } }, - ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 180 Dexterity" }, [3283106665] = { "" }, } }, - ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 170 Dexterity" }, [3283106665] = { "" }, } }, - ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 160 Dexterity" }, [3283106665] = { "" }, } }, - ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 150 Dexterity" }, [3283106665] = { "" }, } }, - ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 140 Dexterity" }, [3283106665] = { "" }, } }, + ["DamageTakenPerDexterityEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 210 Dexterity" }, } }, + ["DamageTakenPerDexterityEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 200 Dexterity" }, } }, + ["DamageTakenPerDexterityEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 190 Dexterity" }, } }, + ["DamageTakenPerDexterityEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 180 Dexterity" }, } }, + ["DamageTakenPerDexterityEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 170 Dexterity" }, } }, + ["DamageTakenPerDexterityEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 160 Dexterity" }, } }, + ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 190 Dexterity" }, } }, + ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 180 Dexterity" }, } }, + ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 170 Dexterity" }, } }, + ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 160 Dexterity" }, } }, + ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 150 Dexterity" }, } }, + ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 140 Dexterity" }, } }, ["DamageTakenPerIntelligenceEldritchImplicit1"] = { type = "Eater", affix = "", "1% less Damage Taken per 230 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 230 Intelligence" }, } }, ["DamageTakenPerIntelligenceEldritchImplicit2"] = { type = "Eater", affix = "", "1% less Damage Taken per 220 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 220 Intelligence" }, } }, ["DamageTakenPerIntelligenceEldritchImplicit3"] = { type = "Eater", affix = "", "1% less Damage Taken per 210 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 210 Intelligence" }, } }, ["DamageTakenPerIntelligenceEldritchImplicit4"] = { type = "Eater", affix = "", "1% less Damage Taken per 200 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 200 Intelligence" }, } }, ["DamageTakenPerIntelligenceEldritchImplicit5"] = { type = "Eater", affix = "", "1% less Damage Taken per 190 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 190 Intelligence" }, } }, ["DamageTakenPerIntelligenceEldritchImplicit6"] = { type = "Eater", affix = "", "1% less Damage Taken per 180 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 180 Intelligence" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 210 Intelligence" }, [4074358700] = { "" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 200 Intelligence" }, [4074358700] = { "" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 190 Intelligence" }, [4074358700] = { "" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 180 Intelligence" }, [4074358700] = { "" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 170 Intelligence" }, [4074358700] = { "" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 160 Intelligence" }, [4074358700] = { "" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 190 Intelligence" }, [3283106665] = { "" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 180 Intelligence" }, [3283106665] = { "" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 170 Intelligence" }, [3283106665] = { "" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 160 Intelligence" }, [3283106665] = { "" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 150 Intelligence" }, [3283106665] = { "" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 140 Intelligence" }, [3283106665] = { "" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 210 Intelligence" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 200 Intelligence" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 190 Intelligence" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 180 Intelligence" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 170 Intelligence" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 160 Intelligence" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 190 Intelligence" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 180 Intelligence" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 170 Intelligence" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 160 Intelligence" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 150 Intelligence" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 140 Intelligence" }, } }, ["SkillEffectDurationEldritchImplicit1"] = { type = "Eater", affix = "", "(7-8)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(7-8)% increased Skill Effect Duration" }, } }, ["SkillEffectDurationEldritchImplicit2"] = { type = "Eater", affix = "", "(9-10)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(9-10)% increased Skill Effect Duration" }, } }, ["SkillEffectDurationEldritchImplicit3"] = { type = "Eater", affix = "", "(11-12)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(11-12)% increased Skill Effect Duration" }, } }, ["SkillEffectDurationEldritchImplicit4"] = { type = "Eater", affix = "", "(13-14)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(13-14)% increased Skill Effect Duration" }, } }, ["SkillEffectDurationEldritchImplicit5"] = { type = "Eater", affix = "", "(15-16)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(15-16)% increased Skill Effect Duration" }, } }, ["SkillEffectDurationEldritchImplicit6"] = { type = "Eater", affix = "", "(17-18)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(17-18)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationUniquePresence1"] = { type = "Eater", affix = "", "(13-14)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(13-14)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationUniquePresence2"] = { type = "Eater", affix = "", "(15-16)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(15-16)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationUniquePresence3"] = { type = "Eater", affix = "", "(17-18)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(17-18)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationUniquePresence4"] = { type = "Eater", affix = "", "(19-20)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(19-20)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationUniquePresence5"] = { type = "Eater", affix = "", "(21-22)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(21-22)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationUniquePresence6"] = { type = "Eater", affix = "", "(23-24)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(23-24)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationPinnaclePresence1"] = { type = "Eater", affix = "", "(19-20)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(19-20)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationPinnaclePresence2"] = { type = "Eater", affix = "", "(21-22)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(21-22)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationPinnaclePresence3"] = { type = "Eater", affix = "", "(23-24)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(23-24)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationPinnaclePresence4"] = { type = "Eater", affix = "", "(25-26)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(25-26)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationPinnaclePresence5"] = { type = "Eater", affix = "", "(27-28)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(27-28)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationPinnaclePresence6"] = { type = "Eater", affix = "", "(29-30)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(29-30)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationUniquePresence1"] = { type = "Eater", affix = "", "(13-14)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(13-14)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationUniquePresence2"] = { type = "Eater", affix = "", "(15-16)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(15-16)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationUniquePresence3"] = { type = "Eater", affix = "", "(17-18)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(17-18)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationUniquePresence4"] = { type = "Eater", affix = "", "(19-20)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(19-20)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationUniquePresence5"] = { type = "Eater", affix = "", "(21-22)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(21-22)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationUniquePresence6"] = { type = "Eater", affix = "", "(23-24)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(23-24)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationPinnaclePresence1"] = { type = "Eater", affix = "", "(19-20)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(19-20)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationPinnaclePresence2"] = { type = "Eater", affix = "", "(21-22)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(21-22)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationPinnaclePresence3"] = { type = "Eater", affix = "", "(23-24)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(23-24)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationPinnaclePresence4"] = { type = "Eater", affix = "", "(25-26)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(25-26)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationPinnaclePresence5"] = { type = "Eater", affix = "", "(27-28)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(27-28)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationPinnaclePresence6"] = { type = "Eater", affix = "", "(29-30)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(29-30)% increased Skill Effect Duration" }, } }, } \ No newline at end of file diff --git a/src/Data/ModEnchantment.lua b/src/Data/ModEnchantment.lua new file mode 100644 index 00000000000..bb0c701c932 --- /dev/null +++ b/src/Data/ModEnchantment.lua @@ -0,0 +1,1634 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + ["EnchantmentOfBladesOnHit1"] = { affix = "Enchantment Word of Blades", "Trigger Word of Blades on Hit", statOrder = { 3483 }, level = 32, group = "EnchantmentOfBladesOnHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [165958462] = { "" }, [756653426] = { "Trigger Word of Blades on Hit" }, [2160886943] = { "" }, [147952811] = { "" }, } }, + ["EnchantmentOfBladesOnHit2"] = { affix = "Enchantment Edict of Blades", "Trigger Edict of Blades on Hit", statOrder = { 3484 }, level = 53, group = "EnchantmentOfBladesOnHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [165958462] = { "" }, [756653426] = { "" }, [2160886943] = { "Trigger Edict of Blades on Hit" }, [147952811] = { "" }, } }, + ["EnchantmentOfBladesOnHit3"] = { affix = "Enchantment Decree of Blades", "Trigger Decree of Blades on Hit", statOrder = { 3485 }, level = 66, group = "EnchantmentOfBladesOnHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [165958462] = { "Trigger Decree of Blades on Hit" }, [756653426] = { "" }, [2160886943] = { "" }, [147952811] = { "" }, } }, + ["EnchantmentOfBladesOnHit4"] = { affix = "Enchantment Commandment of Blades", "Trigger Commandment of Blades on Hit", statOrder = { 3486 }, level = 75, group = "EnchantmentOfBladesOnHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [165958462] = { "" }, [756653426] = { "" }, [2160886943] = { "" }, [147952811] = { "Trigger Commandment of Blades on Hit" }, } }, + ["EnchantmentOfFlamesOnHit1"] = { affix = "Enchantment Word of Flames", "Trigger Word of Flames on Hit", statOrder = { 3536 }, level = 32, group = "EnchantmentOfFlamesOnHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [3703722637] = { "" }, [891161612] = { "Trigger Word of Flames on Hit" }, [990408262] = { "" }, [786149615] = { "" }, } }, + ["EnchantmentOfFlamesOnHit2"] = { affix = "Enchantment Edict of Flames", "Trigger Edict of Flames on Hit", statOrder = { 3537 }, level = 53, group = "EnchantmentOfFlamesOnHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [3703722637] = { "" }, [891161612] = { "" }, [990408262] = { "" }, [786149615] = { "Trigger Edict of Flames on Hit" }, } }, + ["EnchantmentOfFlamesOnHit3"] = { affix = "Enchantment Decree of Flames", "Trigger Decree of Flames on Hit", statOrder = { 3538 }, level = 66, group = "EnchantmentOfFlamesOnHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [3703722637] = { "" }, [891161612] = { "" }, [990408262] = { "Trigger Decree of Flames on Hit" }, [786149615] = { "" }, } }, + ["EnchantmentOfFlamesOnHit4"] = { affix = "Enchantment Commandment of Flames", "Trigger Commandment of Flames on Hit", statOrder = { 3539 }, level = 75, group = "EnchantmentOfFlamesOnHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [3703722637] = { "Trigger Commandment of Flames on Hit" }, [891161612] = { "" }, [990408262] = { "" }, [786149615] = { "" }, } }, + ["EnchantmentOfFrostOnKill1"] = { affix = "Enchantment Word of Frost", "Trigger Word of Frost on Kill", statOrder = { 3540 }, level = 32, group = "EnchantmentOfFrostOnKill", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [1877374369] = { "" }, [3302747233] = { "Trigger Word of Frost on Kill" }, [90942364] = { "" }, [1268512925] = { "" }, } }, + ["EnchantmentOfFrostOnKill2_"] = { affix = "Enchantment Edict of Frost", "Trigger Edict of Frost on Kill", statOrder = { 3541 }, level = 53, group = "EnchantmentOfFrostOnKill", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [1877374369] = { "" }, [3302747233] = { "" }, [90942364] = { "Trigger Edict of Frost on Kill" }, [1268512925] = { "" }, } }, + ["EnchantmentOfFrostOnKill3"] = { affix = "Enchantment Decree of Frost", "Trigger Decree of Frost on Kill", statOrder = { 3542 }, level = 66, group = "EnchantmentOfFrostOnKill", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [1877374369] = { "" }, [3302747233] = { "" }, [90942364] = { "" }, [1268512925] = { "Trigger Decree of Frost on Kill" }, } }, + ["EnchantmentOfFrostOnKill4"] = { affix = "Enchantment Commandment of Frost", "Trigger Commandment of Frost on Kill", statOrder = { 3543 }, level = 75, group = "EnchantmentOfFrostOnKill", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [1877374369] = { "Trigger Commandment of Frost on Kill" }, [3302747233] = { "" }, [90942364] = { "" }, [1268512925] = { "" }, } }, + ["EnchantmentOfTheGraveOnKill1__"] = { affix = "Enchantment Word of the Grave", "Trigger Word of the Grave when your Skills or Minions Kill", statOrder = { 3499 }, level = 32, group = "EnchantmentOfTheGraveOnKill", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [2187415468] = { "" }, [308154324] = { "" }, [2527140156] = { "Trigger Word of the Grave when your Skills or Minions Kill" }, [1374371477] = { "" }, } }, + ["EnchantmentOfTheGraveOnKill2"] = { affix = "Enchantment Edict of the Grave", "Trigger Edict of the Grave when your Skills or Minions Kill", statOrder = { 3500 }, level = 53, group = "EnchantmentOfTheGraveOnKill", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [2187415468] = { "" }, [308154324] = { "Trigger Edict of the Grave when your Skills or Minions Kill" }, [2527140156] = { "" }, [1374371477] = { "" }, } }, + ["EnchantmentOfTheGraveOnKill3"] = { affix = "Enchantment Decree of the Grave", "Trigger Decree of the Grave when your Skills or Minions Kill", statOrder = { 3501 }, level = 66, group = "EnchantmentOfTheGraveOnKill", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [2187415468] = { "Trigger Decree of the Grave when your Skills or Minions Kill" }, [308154324] = { "" }, [2527140156] = { "" }, [1374371477] = { "" }, } }, + ["EnchantmentOfTheGraveOnKill4"] = { affix = "Enchantment Commandment of the Grave", "Trigger Commandment of the Grave when your Skills or Minions Kill", statOrder = { 3502 }, level = 75, group = "EnchantmentOfTheGraveOnKill", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [2187415468] = { "" }, [308154324] = { "" }, [2527140156] = { "" }, [1374371477] = { "Trigger Commandment of the Grave when your Skills or Minions Kill" }, } }, + ["EnchantmentOfReflectionWhenHit1"] = { affix = "Enchantment Word of Reflection", "Trigger Word of Reflection when Hit", statOrder = { 3503 }, level = 32, group = "EnchantmentOfReflectionWhenHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [4228580629] = { "" }, [3036365740] = { "" }, [1792647120] = { "" }, [2634094270] = { "Trigger Word of Reflection when Hit" }, } }, + ["EnchantmentOfReflectionWhenHit2"] = { affix = "Enchantment Edict of Reflection", "Trigger Edict of Reflection when Hit", statOrder = { 3504 }, level = 53, group = "EnchantmentOfReflectionWhenHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [4228580629] = { "Trigger Edict of Reflection when Hit" }, [3036365740] = { "" }, [1792647120] = { "" }, [2634094270] = { "" }, } }, + ["EnchantmentOfReflectionWhenHit3"] = { affix = "Enchantment Decree of Reflection", "Trigger Decree of Reflection when Hit", statOrder = { 3505 }, level = 66, group = "EnchantmentOfReflectionWhenHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [4228580629] = { "" }, [3036365740] = { "" }, [1792647120] = { "Trigger Decree of Reflection when Hit" }, [2634094270] = { "" }, } }, + ["EnchantmentOfReflectionWhenHit4"] = { affix = "Enchantment Commandment of Reflection", "Trigger Commandment of Reflection when Hit", statOrder = { 3506 }, level = 75, group = "EnchantmentOfReflectionWhenHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [4228580629] = { "" }, [3036365740] = { "Trigger Commandment of Reflection when Hit" }, [1792647120] = { "" }, [2634094270] = { "" }, } }, + ["EnchantmentOfForceOnHit1"] = { affix = "Enchantment Word of Force", "Trigger Word of Force on Hit", statOrder = { 3507 }, level = 32, group = "EnchantmentOfForceOnHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [2666843091] = { "" }, [2760193888] = { "" }, [2925650365] = { "" }, [1162506883] = { "Trigger Word of Force on Hit" }, } }, + ["EnchantmentOfForceOnHit2"] = { affix = "Enchantment Edict of Force", "Trigger Edict of Force on Hit", statOrder = { 3508 }, level = 53, group = "EnchantmentOfForceOnHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [2666843091] = { "" }, [2760193888] = { "Trigger Edict of Force on Hit" }, [2925650365] = { "" }, [1162506883] = { "" }, } }, + ["EnchantmentOfForceOnHit3"] = { affix = "Enchantment Decree of Force", "Trigger Decree of Force on Hit", statOrder = { 3509 }, level = 66, group = "EnchantmentOfForceOnHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [2666843091] = { "" }, [2760193888] = { "" }, [2925650365] = { "Trigger Decree of Force on Hit" }, [1162506883] = { "" }, } }, + ["EnchantmentOfForceOnHit4"] = { affix = "Enchantment Commandment of Force", "Trigger Commandment of Force on Hit", statOrder = { 3510 }, level = 75, group = "EnchantmentOfForceOnHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [2666843091] = { "Trigger Commandment of Force on Hit" }, [2760193888] = { "" }, [2925650365] = { "" }, [1162506883] = { "" }, } }, + ["EnchantmentOfLightWhenCrit1"] = { affix = "Enchantment Word of Light", "Trigger Word of Light when you take a Critical Strike", statOrder = { 3511 }, level = 32, group = "EnchantmentOfLightWhenCrit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill", "critical" }, tradeHashes = { [3111060801] = { "Trigger Word of Light when you take a Critical Strike" }, [271342637] = { "" }, [3641868987] = { "" }, [3109915337] = { "" }, } }, + ["EnchantmentOfLightWhenCrit2"] = { affix = "Enchantment Edict of Light", "Trigger Edict of Light when you take a Critical Strike", statOrder = { 3512 }, level = 53, group = "EnchantmentOfLightWhenCrit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill", "critical" }, tradeHashes = { [3111060801] = { "" }, [271342637] = { "Trigger Edict of Light when you take a Critical Strike" }, [3641868987] = { "" }, [3109915337] = { "" }, } }, + ["EnchantmentOfLightWhenCrit3"] = { affix = "Enchantment Decree of Light", "Trigger Decree of Light when you take a Critical Strike", statOrder = { 3513 }, level = 66, group = "EnchantmentOfLightWhenCrit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill", "critical" }, tradeHashes = { [3111060801] = { "" }, [271342637] = { "" }, [3641868987] = { "Trigger Decree of Light when you take a Critical Strike" }, [3109915337] = { "" }, } }, + ["EnchantmentOfLightWhenCrit4"] = { affix = "Enchantment Commandment of Light", "Trigger Commandment of Light when you take a Critical Strike", statOrder = { 3514 }, level = 75, group = "EnchantmentOfLightWhenCrit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill", "critical" }, tradeHashes = { [3111060801] = { "" }, [271342637] = { "" }, [3641868987] = { "" }, [3109915337] = { "Trigger Commandment of Light when you take a Critical Strike" }, } }, + ["EnchantmentOfThunderOnKill1"] = { affix = "Enchantment Word of Thunder", "Trigger Word of Thunder on Kill", statOrder = { 3544 }, level = 32, group = "EnchantmentOfThunderOnKill", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [603658709] = { "" }, [4152292551] = { "" }, [1350605126] = { "Trigger Word of Thunder on Kill" }, [1988467615] = { "" }, } }, + ["EnchantmentOfThunderOnKill2"] = { affix = "Enchantment Edict of Thunder", "Trigger Edict of Thunder on Kill", statOrder = { 3545 }, level = 53, group = "EnchantmentOfThunderOnKill", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [603658709] = { "Trigger Edict of Thunder on Kill" }, [4152292551] = { "" }, [1350605126] = { "" }, [1988467615] = { "" }, } }, + ["EnchantmentOfThunderOnKill3"] = { affix = "Enchantment Decree of Thunder", "Trigger Decree of Thunder on Kill", statOrder = { 3546 }, level = 66, group = "EnchantmentOfThunderOnKill", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [603658709] = { "" }, [4152292551] = { "Trigger Decree of Thunder on Kill" }, [1350605126] = { "" }, [1988467615] = { "" }, } }, + ["EnchantmentOfThunderOnKill4"] = { affix = "Enchantment Commandment of Thunder", "Trigger Commandment of Thunder on Kill", statOrder = { 3547 }, level = 75, group = "EnchantmentOfThunderOnKill", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [603658709] = { "" }, [4152292551] = { "" }, [1350605126] = { "" }, [1988467615] = { "Trigger Commandment of Thunder on Kill" }, } }, + ["EnchantmentOfWarOnKill1"] = { affix = "Enchantment Word of War", "Trigger Word of War on Kill", statOrder = { 3515 }, level = 32, group = "EnchantmentOfWarOnKill", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [494477497] = { "" }, [1906144841] = { "Trigger Word of War on Kill" }, [1106926438] = { "" }, [2033463878] = { "" }, } }, + ["EnchantmentOfWarOnKill2"] = { affix = "Enchantment Edict of War", "Trigger Edict of War on Kill", statOrder = { 3516 }, level = 53, group = "EnchantmentOfWarOnKill", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [494477497] = { "" }, [1906144841] = { "" }, [1106926438] = { "" }, [2033463878] = { "Trigger Edict of War on Kill" }, } }, + ["EnchantmentOfWarOnKill3_"] = { affix = "Enchantment Decree of War", "Trigger Decree of War on Kill", statOrder = { 3517 }, level = 66, group = "EnchantmentOfWarOnKill", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [494477497] = { "" }, [1906144841] = { "" }, [1106926438] = { "Trigger Decree of War on Kill" }, [2033463878] = { "" }, } }, + ["EnchantmentOfWarOnKill4"] = { affix = "Enchantment Commandment of War", "Trigger Commandment of War on Kill", statOrder = { 3518 }, level = 75, group = "EnchantmentOfWarOnKill", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [494477497] = { "Trigger Commandment of War on Kill" }, [1906144841] = { "" }, [1106926438] = { "" }, [2033463878] = { "" }, } }, + ["EnchantmentOfInfernoOnKill1"] = { affix = "Enchantment Word of Inferno", "Trigger Word of Inferno on Kill", statOrder = { 3491 }, level = 32, group = "EnchantmentOfInfernoOnKill", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [2246143608] = { "" }, [2020183428] = { "" }, [3901337328] = { "Trigger Word of Inferno on Kill" }, [1366391108] = { "" }, } }, + ["EnchantmentOfInfernoOnKill2"] = { affix = "Enchantment Edict of Inferno", "Trigger Edict of Inferno on Kill", statOrder = { 3492 }, level = 53, group = "EnchantmentOfInfernoOnKill", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [2246143608] = { "Trigger Edict of Inferno on Kill" }, [2020183428] = { "" }, [3901337328] = { "" }, [1366391108] = { "" }, } }, + ["EnchantmentOfInfernoOnKill3"] = { affix = "Enchantment Decree of Inferno", "Trigger Decree of Inferno on Kill", statOrder = { 3493 }, level = 66, group = "EnchantmentOfInfernoOnKill", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [2246143608] = { "" }, [2020183428] = { "" }, [3901337328] = { "" }, [1366391108] = { "Trigger Decree of Inferno on Kill" }, } }, + ["EnchantmentOfInfernoOnKill4_"] = { affix = "Enchantment Commandment of Inferno", "Trigger Commandment of Inferno on Kill", statOrder = { 3494 }, level = 75, group = "EnchantmentOfInfernoOnKill", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [2246143608] = { "" }, [2020183428] = { "Trigger Commandment of Inferno on Kill" }, [3901337328] = { "" }, [1366391108] = { "" }, } }, + ["EnchantmentOfWinterWhenHit1"] = { affix = "Enchantment Word of Winter", "Trigger Word of Winter when Hit", statOrder = { 3487 }, level = 32, group = "EnchantmentOfWinterWhenHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [1354248411] = { "Trigger Word of Winter when Hit" }, [147678606] = { "" }, [2515273888] = { "" }, [3222886961] = { "" }, } }, + ["EnchantmentOfWinterWhenHit2"] = { affix = "Enchantment Edict of Winter", "Trigger Edict of Winter when Hit", statOrder = { 3488 }, level = 53, group = "EnchantmentOfWinterWhenHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [1354248411] = { "" }, [147678606] = { "Trigger Edict of Winter when Hit" }, [2515273888] = { "" }, [3222886961] = { "" }, } }, + ["EnchantmentOfWinterWhenHit3"] = { affix = "Enchantment Decree of Winter", "Trigger Decree of Winter when Hit", statOrder = { 3489 }, level = 66, group = "EnchantmentOfWinterWhenHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [1354248411] = { "" }, [147678606] = { "" }, [2515273888] = { "Trigger Decree of Winter when Hit" }, [3222886961] = { "" }, } }, + ["EnchantmentOfWinterWhenHit4"] = { affix = "Enchantment Commandment of Winter", "Trigger Commandment of Winter when Hit", statOrder = { 3490 }, level = 75, group = "EnchantmentOfWinterWhenHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [1354248411] = { "" }, [147678606] = { "" }, [2515273888] = { "" }, [3222886961] = { "Trigger Commandment of Winter when Hit" }, } }, + ["EnchantmentOfTempestOnHit1"] = { affix = "Enchantment Word of the Tempest", "Trigger Word of the Tempest on Hit", statOrder = { 3495 }, level = 32, group = "EnchantmentOfTempestOnHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [4203647216] = { "" }, [1671985305] = { "" }, [3610104224] = { "Trigger Word of the Tempest on Hit" }, [1711789839] = { "" }, } }, + ["EnchantmentOfTempestOnHit2_"] = { affix = "Enchantment Edict of the Tempest", "Trigger Edict of the Tempest on Hit", statOrder = { 3496 }, level = 53, group = "EnchantmentOfTempestOnHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [4203647216] = { "" }, [1671985305] = { "" }, [3610104224] = { "" }, [1711789839] = { "Trigger Edict of the Tempest on Hit" }, } }, + ["EnchantmentOfTempestOnHit3"] = { affix = "Enchantment Decree of the Tempest", "Trigger Decree of the Tempest on Hit", statOrder = { 3497 }, level = 66, group = "EnchantmentOfTempestOnHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [4203647216] = { "" }, [1671985305] = { "Trigger Decree of the Tempest on Hit" }, [3610104224] = { "" }, [1711789839] = { "" }, } }, + ["EnchantmentOfTempestOnHit4"] = { affix = "Enchantment Commandment of the Tempest", "Trigger Commandment of the Tempest on Hit", statOrder = { 3498 }, level = 75, group = "EnchantmentOfTempestOnHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [4203647216] = { "Trigger Commandment of the Tempest on Hit" }, [1671985305] = { "" }, [3610104224] = { "" }, [1711789839] = { "" }, } }, + ["EnchantmentOfFuryOnHit1"] = { affix = "Enchantment Word of Fury", "Trigger Word of Fury on Hit", statOrder = { 3519 }, level = 32, group = "EnchantmentOfFuryOnHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [1153637043] = { "" }, [3012437250] = { "Trigger Word of Fury on Hit" }, [1554500307] = { "" }, [2252338738] = { "" }, } }, + ["EnchantmentOfFuryOnHit2"] = { affix = "Enchantment Edict of Fury", "Trigger Edict of Fury on Hit", statOrder = { 3520 }, level = 53, group = "EnchantmentOfFuryOnHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [1153637043] = { "Trigger Edict of Fury on Hit" }, [3012437250] = { "" }, [1554500307] = { "" }, [2252338738] = { "" }, } }, + ["EnchantmentOfFuryOnHit3"] = { affix = "Enchantment Decree of Fury", "Trigger Decree of Fury on Hit", statOrder = { 3521 }, level = 66, group = "EnchantmentOfFuryOnHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [1153637043] = { "" }, [3012437250] = { "" }, [1554500307] = { "" }, [2252338738] = { "Trigger Decree of Fury on Hit" }, } }, + ["EnchantmentOfFuryOnHit4"] = { affix = "Enchantment Commandment of Fury", "Trigger Commandment of Fury on Hit", statOrder = { 3522 }, level = 75, group = "EnchantmentOfFuryOnHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [1153637043] = { "" }, [3012437250] = { "" }, [1554500307] = { "Trigger Commandment of Fury on Hit" }, [2252338738] = { "" }, } }, + ["EnchantmentOfSpiteWhenHit1"] = { affix = "Enchantment Word of Spite", "Trigger Word of Spite when Hit", statOrder = { 3523 }, level = 32, group = "EnchantmentOfSpiteWhenHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [889695873] = { "" }, [1259277978] = { "" }, [3992962185] = { "Trigger Word of Spite when Hit" }, [257027296] = { "" }, } }, + ["EnchantmentOfSpiteWhenHit2_"] = { affix = "Enchantment Edict of Spite", "Trigger Edict of Spite when Hit", statOrder = { 3524 }, level = 53, group = "EnchantmentOfSpiteWhenHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [889695873] = { "" }, [1259277978] = { "" }, [3992962185] = { "" }, [257027296] = { "Trigger Edict of Spite when Hit" }, } }, + ["EnchantmentOfSpiteWhenHit3"] = { affix = "Enchantment Decree of Spite", "Trigger Decree of Spite when Hit", statOrder = { 3525 }, level = 66, group = "EnchantmentOfSpiteWhenHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [889695873] = { "Trigger Decree of Spite when Hit" }, [1259277978] = { "" }, [3992962185] = { "" }, [257027296] = { "" }, } }, + ["EnchantmentOfSpiteWhenHit4"] = { affix = "Enchantment Commandment of Spite", "Trigger Commandment of Spite when Hit", statOrder = { 3526 }, level = 75, group = "EnchantmentOfSpiteWhenHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [889695873] = { "" }, [1259277978] = { "Trigger Commandment of Spite when Hit" }, [3992962185] = { "" }, [257027296] = { "" }, } }, + ["EnchantmentOfIreWhenHit1"] = { affix = "Enchantment Word of Ire", "Trigger Word of Ire when Hit", statOrder = { 4018 }, level = 32, group = "EnchantmentOfIreWhenHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [3285719520] = { "" }, [620045439] = { "" }, [2472584898] = { "Trigger Word of Ire when Hit" }, [1818525360] = { "" }, } }, + ["EnchantmentOfIreWhenHit2"] = { affix = "Enchantment Edict of Ire", "Trigger Edict of Ire when Hit", statOrder = { 4019 }, level = 53, group = "EnchantmentOfIreWhenHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [3285719520] = { "Trigger Edict of Ire when Hit" }, [620045439] = { "" }, [2472584898] = { "" }, [1818525360] = { "" }, } }, + ["EnchantmentOfIreWhenHit3"] = { affix = "Enchantment Decree of Ire", "Trigger Decree of Ire when Hit", statOrder = { 4020 }, level = 66, group = "EnchantmentOfIreWhenHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [3285719520] = { "" }, [620045439] = { "" }, [2472584898] = { "" }, [1818525360] = { "Trigger Decree of Ire when Hit" }, } }, + ["EnchantmentOfIreWhenHit4"] = { affix = "Enchantment Commandment of Ire", "Trigger Commandment of Ire when Hit", statOrder = { 4021 }, level = 75, group = "EnchantmentOfIreWhenHit", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [3285719520] = { "" }, [620045439] = { "Trigger Commandment of Ire when Hit" }, [2472584898] = { "" }, [1818525360] = { "" }, } }, + ["EnchantmentAddedFireDamageOnKill1"] = { affix = "Enchantment Fire Damage 1", "Adds 16 to 24 Fire Damage if you've Killed Recently", statOrder = { 3242 }, level = 53, group = "EnchantmentAddedFireDamageOnKill", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3077703716] = { "Adds 16 to 24 Fire Damage if you've Killed Recently" }, } }, + ["EnchantmentAddedFireDamageOnKill2"] = { affix = "Enchantment Fire Damage 2", "Adds 33 to 50 Fire Damage if you've Killed Recently", statOrder = { 3242 }, level = 66, group = "EnchantmentAddedFireDamageOnKill", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3077703716] = { "Adds 33 to 50 Fire Damage if you've Killed Recently" }, } }, + ["EnchantmentAddedFireDamageOnKill3"] = { affix = "Enchantment Fire Damage 3", "Adds 45 to 68 Fire Damage if you've Killed Recently", statOrder = { 3242 }, level = 75, group = "EnchantmentAddedFireDamageOnKill", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3077703716] = { "Adds 45 to 68 Fire Damage if you've Killed Recently" }, } }, + ["EnchantmentLifeAndManaRegenerationWhenHit1"] = { affix = "Enchantment Regeneration 1", "Regenerate 1% of Life per second if you were Hit Recently", statOrder = { 3167 }, level = 53, group = "LifeAndManaRegenerationWhenHit", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1122635070] = { "Regenerate 1% of Life per second if you were Hit Recently" }, } }, + ["EnchantmentLifeAndManaRegenerationWhenHit2"] = { affix = "Enchantment Regeneration 2", "Regenerate 1.5% of Life per second if you were Hit Recently", statOrder = { 3167 }, level = 66, group = "LifeAndManaRegenerationWhenHit", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1122635070] = { "Regenerate 1.5% of Life per second if you were Hit Recently" }, } }, + ["EnchantmentLifeAndManaRegenerationWhenHit3_"] = { affix = "Enchantment Regeneration 3", "Regenerate 2% of Life per second if you were Hit Recently", statOrder = { 3167 }, level = 75, group = "LifeAndManaRegenerationWhenHit", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1122635070] = { "Regenerate 2% of Life per second if you were Hit Recently" }, } }, + ["EnchantmentManaCostsWhenHit1"] = { affix = "Enchantment Mana Cost 1", "10% reduced Mana Cost of Skills if you've been Hit Recently", statOrder = { 3235 }, level = 53, group = "EnchantmentManaCostsWhenHit", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3693451031] = { "10% reduced Mana Cost of Skills if you've been Hit Recently" }, } }, + ["EnchantmentManaCostsWhenHit2"] = { affix = "Enchantment Mana Cost 2", "14% reduced Mana Cost of Skills if you've been Hit Recently", statOrder = { 3235 }, level = 66, group = "EnchantmentManaCostsWhenHit", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3693451031] = { "14% reduced Mana Cost of Skills if you've been Hit Recently" }, } }, + ["EnchantmentManaCostsWhenHit3"] = { affix = "Enchantment Mana Cost 3", "18% reduced Mana Cost of Skills if you've been Hit Recently", statOrder = { 3235 }, level = 75, group = "EnchantmentManaCostsWhenHit", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3693451031] = { "18% reduced Mana Cost of Skills if you've been Hit Recently" }, } }, + ["EnchantmentStunAvoidanceOnKill1"] = { affix = "Enchantment Stun Avoidance 1", "50% chance to Avoid being Stunned if you've Killed Recently", statOrder = { 3236 }, level = 53, group = "EnchantmentStunAvoidanceOnKill", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [412905518] = { "50% chance to Avoid being Stunned if you've Killed Recently" }, } }, + ["EnchantmentStunAvoidanceOnKill2"] = { affix = "Enchantment Stun Avoidance 2", "65% chance to Avoid being Stunned if you've Killed Recently", statOrder = { 3236 }, level = 66, group = "EnchantmentStunAvoidanceOnKill", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [412905518] = { "65% chance to Avoid being Stunned if you've Killed Recently" }, } }, + ["EnchantmentStunAvoidanceOnKill3"] = { affix = "Enchantment Stun Avoidance 3", "80% chance to Avoid being Stunned if you've Killed Recently", statOrder = { 3236 }, level = 75, group = "EnchantmentStunAvoidanceOnKill", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [412905518] = { "80% chance to Avoid being Stunned if you've Killed Recently" }, } }, + ["EnchantmentSpellDodgeWhenHitBySpells1"] = { affix = "Enchantment Spell Dodge 1", "+5% chance to Suppress Spell Damage if you've", "taken Spell Damage Recently", statOrder = { 3237, 3237.1 }, level = 53, group = "EnchantmentSpellDodgeWhenHitBySpells", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1503864797] = { "+5% chance to Suppress Spell Damage if you've", "taken Spell Damage Recently" }, } }, + ["EnchantmentSpellDodgeWhenHitBySpells2"] = { affix = "Enchantment Spell Dodge 2", "+6% chance to Suppress Spell Damage if you've", "taken Spell Damage Recently", statOrder = { 3237, 3237.1 }, level = 66, group = "EnchantmentSpellDodgeWhenHitBySpells", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1503864797] = { "+6% chance to Suppress Spell Damage if you've", "taken Spell Damage Recently" }, } }, + ["EnchantmentSpellDodgeWhenHitBySpells3"] = { affix = "Enchantment Spell Dodge 3", "+8% chance to Suppress Spell Damage if you've", "taken Spell Damage Recently", statOrder = { 3237, 3237.1 }, level = 75, group = "EnchantmentSpellDodgeWhenHitBySpells", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1503864797] = { "+8% chance to Suppress Spell Damage if you've", "taken Spell Damage Recently" }, } }, + ["EnchantmentAttackAndCastSpeedOnKill1"] = { affix = "Enchantment Attack and Cast Speed 1", "8% increased Attack and Cast Speed if you've Killed Recently", statOrder = { 3238 }, level = 53, group = "EnchantmentAttackAndCastSpeedOnKill", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [4135304575] = { "8% increased Attack and Cast Speed if you've Killed Recently" }, } }, + ["EnchantmentAttackAndCastSpeedOnKill2"] = { affix = "Enchantment Attack and Cast Speed 2", "12% increased Attack and Cast Speed if you've Killed Recently", statOrder = { 3238 }, level = 66, group = "EnchantmentAttackAndCastSpeedOnKill", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [4135304575] = { "12% increased Attack and Cast Speed if you've Killed Recently" }, } }, + ["EnchantmentAttackAndCastSpeedOnKill3"] = { affix = "Enchantment Attack and Cast Speed 3", "16% increased Attack and Cast Speed if you've Killed Recently", statOrder = { 3238 }, level = 75, group = "EnchantmentAttackAndCastSpeedOnKill", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [4135304575] = { "16% increased Attack and Cast Speed if you've Killed Recently" }, } }, + ["EnchantmentColdDamageWhenHit1"] = { affix = "Enchantment Cold Damage 1", "Adds 16 to 24 Cold Damage if you've been Hit Recently", statOrder = { 3239 }, level = 53, group = "EnchantmentColdDamageWhenHit", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [884399432] = { "Adds 16 to 24 Cold Damage if you've been Hit Recently" }, } }, + ["EnchantmentColdDamageWhenHit2_"] = { affix = "Enchantment Cold Damage 2", "Adds 33 to 50 Cold Damage if you've been Hit Recently", statOrder = { 3239 }, level = 66, group = "EnchantmentColdDamageWhenHit", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [884399432] = { "Adds 33 to 50 Cold Damage if you've been Hit Recently" }, } }, + ["EnchantmentColdDamageWhenHit3"] = { affix = "Enchantment Cold Damage 3", "Adds 45 to 68 Cold Damage if you've been Hit Recently", statOrder = { 3239 }, level = 75, group = "EnchantmentColdDamageWhenHit", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [884399432] = { "Adds 45 to 68 Cold Damage if you've been Hit Recently" }, } }, + ["EnchantmentLightningDamageWhileHaventKilled1"] = { affix = "Enchantment Lightning Damage 1", "Adds 1 to 56 Lightning Damage if you haven't Killed Recently", statOrder = { 3240 }, level = 53, group = "EnchantmentLightningDamageWhileHaventKilled", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1293597434] = { "Adds 1 to 56 Lightning Damage if you haven't Killed Recently" }, } }, + ["EnchantmentLightningDamageWhileHaventKilled2"] = { affix = "Enchantment Lightning Damage 2", "Adds 1 to 120 Lightning Damage if you haven't Killed Recently", statOrder = { 3240 }, level = 66, group = "EnchantmentLightningDamageWhileHaventKilled", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1293597434] = { "Adds 1 to 120 Lightning Damage if you haven't Killed Recently" }, } }, + ["EnchantmentLightningDamageWhileHaventKilled3_"] = { affix = "Enchantment Lightning Damage 3", "Adds 1 to 160 Lightning Damage if you haven't Killed Recently", statOrder = { 3240 }, level = 75, group = "EnchantmentLightningDamageWhileHaventKilled", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1293597434] = { "Adds 1 to 160 Lightning Damage if you haven't Killed Recently" }, } }, + ["EnchantmentLifeAndManaLeechOnKill1"] = { affix = "Enchantment Leech 1", "0.4% of Damage Leeched as Life if you've Killed Recently", statOrder = { 3241 }, level = 53, group = "EnchantmentLifeAndManaLeechOnKill", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4291115328] = { "0.4% of Damage Leeched as Life if you've Killed Recently" }, } }, + ["EnchantmentLifeAndManaLeechOnKill2_"] = { affix = "Enchantment Leech 2", "0.5% of Damage Leeched as Life if you've Killed Recently", statOrder = { 3241 }, level = 66, group = "EnchantmentLifeAndManaLeechOnKill", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4291115328] = { "0.5% of Damage Leeched as Life if you've Killed Recently" }, } }, + ["EnchantmentLifeAndManaLeechOnKill3"] = { affix = "Enchantment Leech 3", "0.6% of Damage Leeched as Life if you've Killed Recently", statOrder = { 3241 }, level = 75, group = "EnchantmentLifeAndManaLeechOnKill", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4291115328] = { "0.6% of Damage Leeched as Life if you've Killed Recently" }, } }, + ["EnchantmentDodgeChanceWhenCrit1"] = { affix = "Enchantment Attack Dodge 1", "You take 6% reduced Extra Damage from Critical Strikes if you've taken a Critical Strike Recently", statOrder = { 3245 }, level = 53, group = "EnchantmentDodgeChanceWhenCriticallyHit", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "critical" }, tradeHashes = { [2047590583] = { "You take 6% reduced Extra Damage from Critical Strikes if you've taken a Critical Strike Recently" }, } }, + ["EnchantmentDodgeChanceWhenCrit2"] = { affix = "Enchantment Attack Dodge 2", "You take 8% reduced Extra Damage from Critical Strikes if you've taken a Critical Strike Recently", statOrder = { 3245 }, level = 66, group = "EnchantmentDodgeChanceWhenCriticallyHit", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "critical" }, tradeHashes = { [2047590583] = { "You take 8% reduced Extra Damage from Critical Strikes if you've taken a Critical Strike Recently" }, } }, + ["EnchantmentDodgeChanceWhenCrit3"] = { affix = "Enchantment Attack Dodge 3", "You take 10% reduced Extra Damage from Critical Strikes if you've taken a Critical Strike Recently", statOrder = { 3245 }, level = 75, group = "EnchantmentDodgeChanceWhenCriticallyHit", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "critical" }, tradeHashes = { [2047590583] = { "You take 10% reduced Extra Damage from Critical Strikes if you've taken a Critical Strike Recently" }, } }, + ["EnchantmentChanceCauseStatusAilmentsWhileHaventCrit1"] = { affix = "Enchantment Status Ailments 1", "6% chance to Freeze, Shock and Ignite if you haven't Crit Recently", statOrder = { 3244 }, level = 53, group = "EnchantmentChanceCauseStatusAilmentsWhileHaventCrit", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "critical", "ailment" }, tradeHashes = { [3915210550] = { "6% chance to Freeze, Shock and Ignite if you haven't Crit Recently" }, } }, + ["EnchantmentChanceCauseStatusAilmentsWhileHaventCrit2"] = { affix = "Enchantment Status Ailments 2", "8% chance to Freeze, Shock and Ignite if you haven't Crit Recently", statOrder = { 3244 }, level = 66, group = "EnchantmentChanceCauseStatusAilmentsWhileHaventCrit", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "critical", "ailment" }, tradeHashes = { [3915210550] = { "8% chance to Freeze, Shock and Ignite if you haven't Crit Recently" }, } }, + ["EnchantmentChanceCauseStatusAilmentsWhileHaventCrit3"] = { affix = "Enchantment Status Ailments 3", "10% chance to Freeze, Shock and Ignite if you haven't Crit Recently", statOrder = { 3244 }, level = 75, group = "EnchantmentChanceCauseStatusAilmentsWhileHaventCrit", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "critical", "ailment" }, tradeHashes = { [3915210550] = { "10% chance to Freeze, Shock and Ignite if you haven't Crit Recently" }, } }, + ["EnchantmentMovementVelocityWhileHaventBeenHit1"] = { affix = "Enchantment Movement Speed 1", "6% increased Movement Speed if you haven't been Hit Recently", statOrder = { 3243 }, level = 53, group = "EnchantmentMovementVelocityWhileHaventBeenHit", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "speed" }, tradeHashes = { [308396001] = { "6% increased Movement Speed if you haven't been Hit Recently" }, } }, + ["EnchantmentMovementVelocityWhileHaventBeenHit2_"] = { affix = "Enchantment Movement Speed 2", "8% increased Movement Speed if you haven't been Hit Recently", statOrder = { 3243 }, level = 66, group = "EnchantmentMovementVelocityWhileHaventBeenHit", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "speed" }, tradeHashes = { [308396001] = { "8% increased Movement Speed if you haven't been Hit Recently" }, } }, + ["EnchantmentMovementVelocityWhileHaventBeenHit3"] = { affix = "Enchantment Movement Speed 3", "10% increased Movement Speed if you haven't been Hit Recently", statOrder = { 3243 }, level = 75, group = "EnchantmentMovementVelocityWhileHaventBeenHit", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "speed" }, tradeHashes = { [308396001] = { "10% increased Movement Speed if you haven't been Hit Recently" }, } }, + ["EnchantmentCriticalChanceWhenNoCrit1"] = { affix = "Enchantment Critical Strike Chance 1", "60% increased Critical Strike Chance if you haven't Crit Recently", statOrder = { 3551 }, level = 53, group = "EnchantmentCriticalChanceWhenNoCrit", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "critical" }, tradeHashes = { [3010587200] = { "60% increased Critical Strike Chance if you haven't Crit Recently" }, } }, + ["EnchantmentCriticalChanceWhenNoCrit2"] = { affix = "Enchantment Critical Strike Chance 2", "90% increased Critical Strike Chance if you haven't Crit Recently", statOrder = { 3551 }, level = 66, group = "EnchantmentCriticalChanceWhenNoCrit", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "critical" }, tradeHashes = { [3010587200] = { "90% increased Critical Strike Chance if you haven't Crit Recently" }, } }, + ["EnchantmentCriticalChanceWhenNoCrit3"] = { affix = "Enchantment Critical Strike Chance 3", "120% increased Critical Strike Chance if you haven't Crit Recently", statOrder = { 3551 }, level = 75, group = "EnchantmentCriticalChanceWhenNoCrit", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "critical" }, tradeHashes = { [3010587200] = { "120% increased Critical Strike Chance if you haven't Crit Recently" }, } }, + ["EnchantmentElementalPenetrationWhileHaventKilled1_"] = { affix = "Enchantment Elemental Penetration 1", "Damage Penetrates 6% of Enemy Elemental Resistances if you haven't Killed Recently", statOrder = { 3307 }, level = 53, group = "EnchantmentElementalPenetrationWhileHaventKilled", weightKey = { "boots", "default", }, weightVal = { 25, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [281254371] = { "Damage Penetrates 6% of Enemy Elemental Resistances if you haven't Killed Recently" }, } }, + ["EnchantmentElementalPenetrationWhileHaventKilled2"] = { affix = "Enchantment Elemental Penetration 2", "Damage Penetrates 8% of Enemy Elemental Resistances if you haven't Killed Recently", statOrder = { 3307 }, level = 66, group = "EnchantmentElementalPenetrationWhileHaventKilled", weightKey = { "boots", "default", }, weightVal = { 25, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [281254371] = { "Damage Penetrates 8% of Enemy Elemental Resistances if you haven't Killed Recently" }, } }, + ["EnchantmentElementalPenetrationWhileHaventKilled3"] = { affix = "Enchantment Elemental Penetration 3", "Damage Penetrates 10% of Enemy Elemental Resistances if you haven't Killed Recently", statOrder = { 3307 }, level = 75, group = "EnchantmentElementalPenetrationWhileHaventKilled", weightKey = { "boots", "default", }, weightVal = { 25, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [281254371] = { "Damage Penetrates 10% of Enemy Elemental Resistances if you haven't Killed Recently" }, } }, + ["EnchantmentAddedChaosDamageWhenCrit1"] = { affix = "Enchantment Chaos Damage 1", "Adds 44 to 64 Chaos Damage if you've taken a Critical Strike Recently", statOrder = { 3309 }, level = 53, group = "EnchantmentAddedChaosDamageWhenCrit", weightKey = { "boots", "default", }, weightVal = { 25, 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, tradeHashes = { [391609701] = { "Adds 44 to 64 Chaos Damage if you've taken a Critical Strike Recently" }, } }, + ["EnchantmentAddedChaosDamageWhenCrit2"] = { affix = "Enchantment Chaos Damage 2", "Adds 88 to 132 Chaos Damage if you've taken a Critical Strike Recently", statOrder = { 3309 }, level = 66, group = "EnchantmentAddedChaosDamageWhenCrit", weightKey = { "boots", "default", }, weightVal = { 25, 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, tradeHashes = { [391609701] = { "Adds 88 to 132 Chaos Damage if you've taken a Critical Strike Recently" }, } }, + ["EnchantmentAddedChaosDamageWhenCrit3"] = { affix = "Enchantment Chaos Damage 3", "Adds 120 to 180 Chaos Damage if you've taken a Critical Strike Recently", statOrder = { 3309 }, level = 75, group = "EnchantmentAddedChaosDamageWhenCrit", weightKey = { "boots", "default", }, weightVal = { 25, 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, tradeHashes = { [391609701] = { "Adds 120 to 180 Chaos Damage if you've taken a Critical Strike Recently" }, } }, + ["EnchantmentManaRegenerationOnSpellCast1_"] = { affix = "Enchantment Mana Regeneration 1", "15% increased Mana Regeneration Rate if you've cast a Spell Recently", statOrder = { 6360 }, level = 53, group = "EnchantmentManaRegenerationOnSpellCast", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [1409388882] = { "15% increased Mana Regeneration Rate if you've cast a Spell Recently" }, } }, + ["EnchantmentManaRegenerationOnSpellCast2"] = { affix = "Enchantment Mana Regeneration 2", "25% increased Mana Regeneration Rate if you've cast a Spell Recently", statOrder = { 6360 }, level = 66, group = "EnchantmentManaRegenerationOnSpellCast", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [1409388882] = { "25% increased Mana Regeneration Rate if you've cast a Spell Recently" }, } }, + ["EnchantmentManaRegenerationOnSpellCast3"] = { affix = "Enchantment Mana Regeneration 3", "35% increased Mana Regeneration Rate if you've cast a Spell Recently", statOrder = { 6360 }, level = 75, group = "EnchantmentManaRegenerationOnSpellCast", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [1409388882] = { "35% increased Mana Regeneration Rate if you've cast a Spell Recently" }, } }, + ["EnchantmentBallLightningDamage1"] = { affix = "Enchantment Ball Lightning Damage 1", "25% increased Ball Lightning Damage", statOrder = { 3168 }, level = 66, group = "BallLightningDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3152812191] = { "25% increased Ball Lightning Damage" }, } }, + ["EnchantmentBallLightningDamage2"] = { affix = "Enchantment Ball Lightning Damage 2", "40% increased Ball Lightning Damage", statOrder = { 3168 }, level = 75, group = "BallLightningDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3152812191] = { "40% increased Ball Lightning Damage" }, } }, + ["EnchantmentFrostBladesDamage1"] = { affix = "Enchantment Frost Blades Damage 1", "25% increased Frost Blades Damage", statOrder = { 3409 }, level = 66, group = "EnchantmentFrostBladesDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3449510470] = { "25% increased Frost Blades Damage" }, } }, + ["EnchantmentFrostBladesDamage2"] = { affix = "Enchantment Frost Blades Damage 2", "40% increased Frost Blades Damage", statOrder = { 3409 }, level = 75, group = "EnchantmentFrostBladesDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3449510470] = { "40% increased Frost Blades Damage" }, } }, + ["EnchantmentFrostBladesProjectileSpeed1"] = { affix = "Enchantment Frost Blades Projectile Speed 1", "20% increased Frost Blades Projectile Speed", statOrder = { 3410 }, level = 66, group = "EnchantmentFrostBladesProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1087923932] = { "20% increased Frost Blades Projectile Speed" }, } }, + ["EnchantmentFrostBladesProjectileSpeed2"] = { affix = "Enchantment Frost Blades Projectile Speed 2", "30% increased Frost Blades Projectile Speed", statOrder = { 3410 }, level = 75, group = "EnchantmentFrostBladesProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1087923932] = { "30% increased Frost Blades Projectile Speed" }, } }, + ["EnchantmentSummonedRagingSpiritDuration1"] = { affix = "Enchantment Summoned Raging Spirit Duration 1", "Summon Raging Spirit has 20% increased Duration", statOrder = { 3412 }, level = 66, group = "EnchantmentSummonedRagingSpiritDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [38715141] = { "Summon Raging Spirit has 20% increased Duration" }, } }, + ["EnchantmentSummonedRagingSpiritDuration2"] = { affix = "Enchantment Summoned Raging Spirit Duration 2", "Summon Raging Spirit has 30% increased Duration", statOrder = { 3412 }, level = 75, group = "EnchantmentSummonedRagingSpiritDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [38715141] = { "Summon Raging Spirit has 30% increased Duration" }, } }, + ["EnchantmentSummonedRagingSpiritChanceToSpawnAdditionalMinion1"] = { affix = "Enchantment Summoned Raging Spirit Additional 1", "Summon Raging Spirit has 16% chance to summon an extra Minion", statOrder = { 3413 }, level = 66, group = "EnchantmentSummonedRagingSpiritChanceToSpawnAdditionalMinion", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [1381908541] = { "Summon Raging Spirit has 16% chance to summon an extra Minion" }, } }, + ["EnchantmentSummonedRagingSpiritChanceToSpawnAdditionalMinion2"] = { affix = "Enchantment Summoned Raging Spirit Additional 2", "Summon Raging Spirit has 24% chance to summon an extra Minion", statOrder = { 3413 }, level = 75, group = "EnchantmentSummonedRagingSpiritChanceToSpawnAdditionalMinion", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [1381908541] = { "Summon Raging Spirit has 24% chance to summon an extra Minion" }, } }, + ["EnchantmentDischargeRadius1"] = { affix = "Enchantment Discharge Area of Effect 1", "16% increased Discharge Radius", statOrder = { 3415 }, level = 66, group = "EnchantmentDischargeRadius", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster" }, tradeHashes = { [1743954272] = { "16% increased Discharge Radius" }, } }, + ["EnchantmentDischargeRadius2"] = { affix = "Enchantment Discharge Area of Effect 2", "24% increased Discharge Radius", statOrder = { 3415 }, level = 75, group = "EnchantmentDischargeRadius", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster" }, tradeHashes = { [1743954272] = { "24% increased Discharge Radius" }, } }, + ["EnchantmentDischargeChanceToNotConsumeCharges1"] = { affix = "Enchantment Discharge Consume Charges 1", "20% chance for Discharge to deal Damage without removing Charges", statOrder = { 3416 }, level = 66, group = "EnchantmentDischargeChanceToNotConsumeCharges", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "caster" }, tradeHashes = { [1833626118] = { "20% chance for Discharge to deal Damage without removing Charges" }, } }, + ["EnchantmentDischargeChanceToNotConsumeCharges2"] = { affix = "Enchantment Discharge Consume Charges 2", "30% chance for Discharge to deal Damage without removing Charges", statOrder = { 3416 }, level = 75, group = "EnchantmentDischargeChanceToNotConsumeCharges", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "caster" }, tradeHashes = { [1833626118] = { "30% chance for Discharge to deal Damage without removing Charges" }, } }, + ["EnchantmentDischargeActiveSkillBaseRadius1"] = { affix = "Enchantment Discharge Radius 1", "+0.3 metres to Discharge radius", statOrder = { 6185 }, level = 66, group = "EnchantmentDischargeActiveSkillBaseRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2716178075] = { "+0.3 metres to Discharge radius" }, } }, + ["EnchantmentDischargeActiveSkillBaseRadius2"] = { affix = "Enchantment Discharge Radius 2", "+0.5 metres to Discharge radius", statOrder = { 6185 }, level = 75, group = "EnchantmentDischargeActiveSkillBaseRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2716178075] = { "+0.5 metres to Discharge radius" }, } }, + ["EnchantmentAngerReservationCost1"] = { affix = "Enchantment Anger Reservation 1", "Anger has 20% increased Mana Reservation Efficiency", statOrder = { 4686 }, level = 66, group = "EnchantmentAngerReservationCost", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2963485753] = { "Anger has 20% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentAngerReservationCost2"] = { affix = "Enchantment Anger Reservation 2", "Anger has 30% increased Mana Reservation Efficiency", statOrder = { 4686 }, level = 75, group = "EnchantmentAngerReservationCost", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2963485753] = { "Anger has 30% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentAngerReservationEfficiency1"] = { affix = "Enchantment Anger Reservation 1", "Anger has 20% increased Mana Reservation Efficiency", statOrder = { 4687 }, level = 66, group = "EnchantmentAngerManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2549369799] = { "Anger has 20% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentAngerReservationEfficiency2_"] = { affix = "Enchantment Anger Reservation 2", "Anger has 30% increased Mana Reservation Efficiency", statOrder = { 4687 }, level = 75, group = "EnchantmentAngerManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2549369799] = { "Anger has 30% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentLightningTrapCooldownSpeed1"] = { affix = "", "20% increased Lightning Trap Damage", statOrder = { 3418 }, level = 66, group = "EnchantmentLightningTrapCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3131492956] = { "20% increased Lightning Trap Damage" }, } }, + ["EnchantmentLightningTrapCooldownSpeed2"] = { affix = "", "30% increased Lightning Trap Damage", statOrder = { 3418 }, level = 75, group = "EnchantmentLightningTrapCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3131492956] = { "30% increased Lightning Trap Damage" }, } }, + ["EnchantmentAbyssalCryDamage1"] = { affix = "Enchantment Infernal Cry Damage 1", "25% increased Infernal Cry Damage", statOrder = { 3724 }, level = 66, group = "EnchantmentAbyssalCryDamage", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "damage" }, tradeHashes = { [780453137] = { "25% increased Infernal Cry Damage" }, } }, + ["EnchantmentAbyssalCryDamage2"] = { affix = "Enchantment Infernal Cry Damage 2", "40% increased Infernal Cry Damage", statOrder = { 3724 }, level = 75, group = "EnchantmentAbyssalCryDamage", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "damage" }, tradeHashes = { [780453137] = { "40% increased Infernal Cry Damage" }, } }, + ["EnchantmentAncestorTotemDamage1"] = { affix = "Enchantment Ancestral Protector Damage 1", "Ancestral Protector Totem deals 25% increased Damage", statOrder = { 3626 }, level = 66, group = "EnchantmentAncestorTotemDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2596239449] = { "Ancestral Protector Totem deals 25% increased Damage" }, } }, + ["EnchantmentAncestorTotemDamage2"] = { affix = "Enchantment Ancestral Protector Damage 2", "Ancestral Protector Totem deals 40% increased Damage", statOrder = { 3626 }, level = 75, group = "EnchantmentAncestorTotemDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2596239449] = { "Ancestral Protector Totem deals 40% increased Damage" }, } }, + ["EnchantmentAncestorTotemSlamDamage1"] = { affix = "Enchantment Ancestral Warchief Damage 1", "25% increased Ancestral Warchief Totem Damage", statOrder = { 4142 }, level = 66, group = "EnchantmentAncestorTotemSlamDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [78239163] = { "25% increased Ancestral Warchief Totem Damage" }, } }, + ["EnchantmentAncestorTotemSlamDamage2"] = { affix = "Enchantment Ancestral Warchief Damage 2", "40% increased Ancestral Warchief Totem Damage", statOrder = { 4142 }, level = 75, group = "EnchantmentAncestorTotemSlamDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [78239163] = { "40% increased Ancestral Warchief Totem Damage" }, } }, + ["EnchantmentAncestorTotemSlashDamage1"] = { affix = "", "25% increased Ancestral Blademaster Totem Damage", statOrder = { 4143 }, level = 66, group = "EnchantmentAncestorTotemSlashDamage", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4166834934] = { "25% increased Ancestral Blademaster Totem Damage" }, } }, + ["EnchantmentAncestorTotemSlashDamage2"] = { affix = "", "40% increased Ancestral Blademaster Totem Damage", statOrder = { 4143 }, level = 75, group = "EnchantmentAncestorTotemSlashDamage", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4166834934] = { "40% increased Ancestral Blademaster Totem Damage" }, } }, + ["EnchantmentAncestorTotemPlacementSpeed1"] = { affix = "Enchantment Ancestral Protector Placement Speed 1", "12% increased Ancestral Protector Totem Placement Speed", statOrder = { 3973 }, level = 66, group = "EnchantmentAncestorTotemPlacementSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [592861938] = { "12% increased Ancestral Protector Totem Placement Speed" }, } }, + ["EnchantmentAncestorTotemPlacementSpeed2"] = { affix = "Enchantment Ancestral Protector Placement Speed 2", "18% increased Ancestral Protector Totem Placement Speed", statOrder = { 3973 }, level = 75, group = "EnchantmentAncestorTotemPlacementSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [592861938] = { "18% increased Ancestral Protector Totem Placement Speed" }, } }, + ["EnchantmentAncestorTotemElementalResistances1"] = { affix = "Enchantment Ancestral Protector Resistances 1", "+24% to Ancestral Protector Totem Elemental Resistances", statOrder = { 4115 }, level = 66, group = "EnchantmentAncestorTotemElementalResistances", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance", "attack" }, tradeHashes = { [1220207954] = { "+24% to Ancestral Protector Totem Elemental Resistances" }, } }, + ["EnchantmentAncestorTotemElementalResistances2"] = { affix = "Enchantment Ancestral Protector Resistances 2", "+36% to Ancestral Protector Totem Elemental Resistances", statOrder = { 4115 }, level = 75, group = "EnchantmentAncestorTotemElementalResistances", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance", "attack" }, tradeHashes = { [1220207954] = { "+36% to Ancestral Protector Totem Elemental Resistances" }, } }, + ["EnchantmentAncestorTotemAttackSpeed1"] = { affix = "Enchantment Ancestral Protector Attack Speed 1", "Ancestral Protector Totem grants 12% increased Attack Speed while Active", statOrder = { 3802 }, level = 66, group = "EnchantmentAncestorTotemAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1303996723] = { "Ancestral Protector Totem grants 12% increased Attack Speed while Active" }, } }, + ["EnchantmentAncestorTotemAttackSpeed2"] = { affix = "Enchantment Ancestral Protector Attack Speed 2", "Ancestral Protector Totem grants 18% increased Attack Speed while Active", statOrder = { 3802 }, level = 75, group = "EnchantmentAncestorTotemAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1303996723] = { "Ancestral Protector Totem grants 18% increased Attack Speed while Active" }, } }, + ["EnchantmentAnimateGuardianDamage1_"] = { affix = "Enchantment Animate Guardian Damage 1", "Animated Guardians deal 25% increased Damage", statOrder = { 3705 }, level = 66, group = "EnchantmentAnimateGuardianDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4157143640] = { "Animated Guardians deal 25% increased Damage" }, } }, + ["EnchantmentAnimateGuardianDamage2"] = { affix = "Enchantment Animate Guardian Damage 2", "Animated Guardians deal 40% increased Damage", statOrder = { 3705 }, level = 75, group = "EnchantmentAnimateGuardianDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4157143640] = { "Animated Guardians deal 40% increased Damage" }, } }, + ["EnchantmentAnimateWeaponDamage1"] = { affix = "Enchantment Animate Weapon Damage 1", "Animated Weapons deal 25% increased Damage", statOrder = { 3627 }, level = 66, group = "EnchantmentAnimateWeaponDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1819674879] = { "Animated Weapons deal 25% increased Damage" }, } }, + ["EnchantmentAnimateWeaponDamage2"] = { affix = "Enchantment Animate Weapon Damage 2", "Animated Weapons deal 40% increased Damage", statOrder = { 3627 }, level = 75, group = "EnchantmentAnimateWeaponDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1819674879] = { "Animated Weapons deal 40% increased Damage" }, } }, + ["EnchantmentArcDamage1"] = { affix = "Enchantment Arc Damage 1", "25% increased Arc Damage", statOrder = { 3660 }, level = 66, group = "EnchantmentArcDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2740567252] = { "25% increased Arc Damage" }, } }, + ["EnchantmentArcDamage2"] = { affix = "Enchantment Arc Damage 2", "40% increased Arc Damage", statOrder = { 3660 }, level = 75, group = "EnchantmentArcDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2740567252] = { "40% increased Arc Damage" }, } }, + ["EnchantmentArcticBreathDamage1"] = { affix = "Enchantment Creeping Frost Damage 1", "25% increased Creeping Frost Damage", statOrder = { 3678 }, level = 66, group = "EnchantmentArcitcBreathDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2846773529] = { "25% increased Creeping Frost Damage" }, } }, + ["EnchantmentArcticBreathDamage2"] = { affix = "Enchantment Creeping Frost Damage 2", "40% increased Creeping Frost Damage", statOrder = { 3678 }, level = 75, group = "EnchantmentArcitcBreathDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2846773529] = { "40% increased Creeping Frost Damage" }, } }, + ["EnchantmentArmageddonBrandDamage1"] = { affix = "Enchantment Armageddon Brand Damage 1", "Armageddon Brand deals 25% increased Damage", statOrder = { 4746 }, level = 66, group = "EnchantmentArmageddonBrandDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1699139870] = { "Armageddon Brand deals 25% increased Damage" }, } }, + ["EnchantmentArmageddonBrandDamage2"] = { affix = "Enchantment Armageddon Brand Damage 2", "Armageddon Brand deals 40% increased Damage", statOrder = { 4746 }, level = 75, group = "EnchantmentArmageddonBrandDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1699139870] = { "Armageddon Brand deals 40% increased Damage" }, } }, + ["EnchantmentBaneDamage1"] = { affix = "Enchantment Bane Damage 1", "Bane deals 25% increased Damage", statOrder = { 6130 }, level = 66, group = "EnchantmentBaneDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2206071316] = { "Bane deals 25% increased Damage" }, } }, + ["EnchantmentBaneDamage2"] = { affix = "Enchantment Bane Damage 2", "Bane deals 40% increased Damage", statOrder = { 6130 }, level = 75, group = "EnchantmentBaneDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2206071316] = { "Bane deals 40% increased Damage" }, } }, + ["EnchantmentBarrageDamage1"] = { affix = "Enchantment Barrage Damage 1", "25% increased Barrage Damage", statOrder = { 3661 }, level = 66, group = "EnchantmentBarrageDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3685345485] = { "25% increased Barrage Damage" }, } }, + ["EnchantmentBarrageDamage2"] = { affix = "Enchantment Barrage Damage 2", "40% increased Barrage Damage", statOrder = { 3661 }, level = 75, group = "EnchantmentBarrageDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3685345485] = { "40% increased Barrage Damage" }, } }, + ["EnchantmentBearTrapDamage1"] = { affix = "Enchantment Bear Trap Damage 1", "25% increased Bear Trap Damage", statOrder = { 3706 }, level = 66, group = "EnchantmentBearTrapDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage" }, tradeHashes = { [1877863115] = { "25% increased Bear Trap Damage" }, } }, + ["EnchantmentBearTrapDamage2"] = { affix = "Enchantment Bear Trap Damage 2", "40% increased Bear Trap Damage", statOrder = { 3706 }, level = 75, group = "EnchantmentBearTrapDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage" }, tradeHashes = { [1877863115] = { "40% increased Bear Trap Damage" }, } }, + ["EnchantmentBladeTrapDamage1"] = { affix = "Enchantment Blade Trap Damage 1", "25% increased Blade Trap Damage", statOrder = { 5085 }, level = 66, group = "EnchantmentBladeTrapDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3676486210] = { "25% increased Blade Trap Damage" }, } }, + ["EnchantmentBladeTrapDamage2__"] = { affix = "Enchantment Blade Trap Damage 2", "40% increased Blade Trap Damage", statOrder = { 5085 }, level = 75, group = "EnchantmentBladeTrapDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3676486210] = { "40% increased Blade Trap Damage" }, } }, + ["EnchantmentBladeVortexDamage1"] = { affix = "Enchantment Blade Vortex Damage 1", "25% increased Blade Vortex Spell Damage", statOrder = { 3729 }, level = 66, group = "EnchantmentBladeVortexDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4221797807] = { "25% increased Blade Vortex Spell Damage" }, } }, + ["EnchantmentBladeVortexDamage2"] = { affix = "Enchantment Blade Vortex Damage 2", "40% increased Blade Vortex Spell Damage", statOrder = { 3729 }, level = 75, group = "EnchantmentBladeVortexDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4221797807] = { "40% increased Blade Vortex Spell Damage" }, } }, + ["EnchantmentBladefallDamage1"] = { affix = "Enchantment Bladefall Damage 1", "25% increased Bladefall Damage", statOrder = { 3730 }, level = 66, group = "EnchantmentBladefallDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3069740560] = { "25% increased Bladefall Damage" }, } }, + ["EnchantmentBladefallDamage2_"] = { affix = "Enchantment Bladefall Damage 2", "40% increased Bladefall Damage", statOrder = { 3730 }, level = 75, group = "EnchantmentBladefallDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3069740560] = { "40% increased Bladefall Damage" }, } }, + ["EnchantmentBlastRainDamage1"] = { affix = "Enchantment Blast Rain Damage 1", "Blast Rain deals 25% increased Damage", statOrder = { 3726 }, level = 66, group = "EnchantmentBlastRainDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4014289250] = { "Blast Rain deals 25% increased Damage" }, } }, + ["EnchantmentBlastRainDamage2"] = { affix = "Enchantment Blast Rain Damage 2", "Blast Rain deals 40% increased Damage", statOrder = { 3726 }, level = 75, group = "EnchantmentBlastRainDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4014289250] = { "Blast Rain deals 40% increased Damage" }, } }, + ["EnchantmentBlazingSalvoDamage1_"] = { affix = "Enchantment Blazing Salvo Damage 1", "Blazing Salvo deals 25% increased Damage", statOrder = { 5098 }, level = 66, group = "EnchantmentBlazingSalvoDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4102281803] = { "Blazing Salvo deals 25% increased Damage" }, } }, + ["EnchantmentBlazingSalvoDamage2"] = { affix = "Enchantment Blazing Salvo Damage 2", "Blazing Salvo deals 40% increased Damage", statOrder = { 5098 }, level = 75, group = "EnchantmentBlazingSalvoDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4102281803] = { "Blazing Salvo deals 40% increased Damage" }, } }, + ["EnchantmentBlightDamage1"] = { affix = "Enchantment Blight Damage 1", "25% increased Blight Damage", statOrder = { 3739 }, level = 66, group = "EnchantmentBlightDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1623552446] = { "25% increased Blight Damage" }, } }, + ["EnchantmentBlightDamage2"] = { affix = "Enchantment Blight Damage 2", "40% increased Blight Damage", statOrder = { 3739 }, level = 75, group = "EnchantmentBlightDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1623552446] = { "40% increased Blight Damage" }, } }, + ["EnchantmentBlinkArrowDamage1_"] = { affix = "Enchantment Blink Arrow Damage 1", "Blink Arrow and Blink Arrow Clones have 25% increased Damage", statOrder = { 3719 }, level = 66, group = "EnchantmentBlinkArrowDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1967878868] = { "Blink Arrow and Blink Arrow Clones have 25% increased Damage" }, } }, + ["EnchantmentBlinkArrowDamage2"] = { affix = "Enchantment Blink Arrow Damage 2", "Blink Arrow and Blink Arrow Clones have 40% increased Damage", statOrder = { 3719 }, level = 75, group = "EnchantmentBlinkArrowDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1967878868] = { "Blink Arrow and Blink Arrow Clones have 40% increased Damage" }, } }, + ["EnchantmentBloodreapDamage1_"] = { affix = "Enchantment Reap Damage 1", "Reap deals 25% increased Damage", statOrder = { 5240 }, level = 66, group = "EnchantmentBloodreapDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1545524769] = { "Reap deals 25% increased Damage" }, } }, + ["EnchantmentBloodreapDamage2_"] = { affix = "Enchantment Reap Damage 2", "Reap deals 40% increased Damage", statOrder = { 5240 }, level = 75, group = "EnchantmentBloodreapDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1545524769] = { "Reap deals 40% increased Damage" }, } }, + ["EnchantmentBurningArrowDamage1"] = { affix = "Enchantment Burning Arrow Damage 1", "25% increased Burning Arrow Damage", statOrder = { 3628 }, level = 66, group = "EnchantmentBurningArrowDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [696995312] = { "25% increased Burning Arrow Damage" }, } }, + ["EnchantmentBurningArrowDamage2"] = { affix = "Enchantment Burning Arrow Damage 2", "40% increased Burning Arrow Damage", statOrder = { 3628 }, level = 75, group = "EnchantmentBurningArrowDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [696995312] = { "40% increased Burning Arrow Damage" }, } }, + ["EnchantmentCausticArrowDamage1"] = { affix = "Enchantment Caustic Arrow Damage 1", "25% increased Caustic Arrow Damage", statOrder = { 3688 }, level = 66, group = "EnchantmentCausticArrowDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1496334795] = { "25% increased Caustic Arrow Damage" }, } }, + ["EnchantmentCausticArrowDamage2"] = { affix = "Enchantment Caustic Arrow Damage 2", "40% increased Caustic Arrow Damage", statOrder = { 3688 }, level = 75, group = "EnchantmentCausticArrowDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1496334795] = { "40% increased Caustic Arrow Damage" }, } }, + ["EnchantmentChargedAttackDamage1"] = { affix = "Enchantment Blade Flurry Damage 1", "25% increased Blade Flurry Damage", statOrder = { 4141 }, level = 66, group = "EnchantmentChargedAttackDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [754797886] = { "25% increased Blade Flurry Damage" }, } }, + ["EnchantmentChargedAttackDamage2"] = { affix = "Enchantment Blade Flurry Damage 2", "40% increased Blade Flurry Damage", statOrder = { 4141 }, level = 75, group = "EnchantmentChargedAttackDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [754797886] = { "40% increased Blade Flurry Damage" }, } }, + ["EnchantmentChargedDash1"] = { affix = "Enchantment Charged Dash Damage 1", "25% increased Charged Dash Damage", statOrder = { 3732 }, level = 66, group = "EnchantmentChargedDashDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1265055278] = { "25% increased Charged Dash Damage" }, } }, + ["EnchantmentChargedDash2"] = { affix = "Enchantment Charged Dash Damage 2", "40% increased Charged Dash Damage", statOrder = { 3732 }, level = 75, group = "EnchantmentChargedDashDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1265055278] = { "40% increased Charged Dash Damage" }, } }, + ["EnchantmentCleaveDamage1"] = { affix = "Enchantment Cleave Damage 1", "25% increased Cleave Damage", statOrder = { 3629 }, level = 66, group = "EnchantmentCleaveDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1359058534] = { "25% increased Cleave Damage" }, } }, + ["EnchantmentCleaveDamage2"] = { affix = "Enchantment Cleave Damage 2", "40% increased Cleave Damage", statOrder = { 3629 }, level = 75, group = "EnchantmentCleaveDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1359058534] = { "40% increased Cleave Damage" }, } }, + ["EnchantmentColdSnapDamage1"] = { affix = "Enchantment Cold Snap Damage 1", "25% increased Cold Snap Damage", statOrder = { 3703 }, level = 66, group = "EnchantmentColdSnapDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3729006707] = { "25% increased Cold Snap Damage" }, } }, + ["EnchantmentColdSnapDamage2"] = { affix = "Enchantment Cold Snap Damage 2", "40% increased Cold Snap Damage", statOrder = { 3703 }, level = 75, group = "EnchantmentColdSnapDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3729006707] = { "40% increased Cold Snap Damage" }, } }, + ["EnchantmentConsecratedPathDamage1"] = { affix = "Enchantment Consecrated Path Damage 1", "Consecrated Path deals 25% increased Damage", statOrder = { 5861 }, level = 66, group = "EnchantmentConsecratedPathDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4047323043] = { "Consecrated Path deals 25% increased Damage" }, } }, + ["EnchantmentConsecratedPathDamage2"] = { affix = "Enchantment Consecrated Path Damage 2", "Consecrated Path deals 40% increased Damage", statOrder = { 5861 }, level = 75, group = "EnchantmentConsecratedPathDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4047323043] = { "Consecrated Path deals 40% increased Damage" }, } }, + ["EnchantmentContagionDamage1"] = { affix = "Enchantment Contagion Damage 1", "25% increased Contagion Damage", statOrder = { 3728 }, level = 66, group = "EnchantmentContagionDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [277116504] = { "25% increased Contagion Damage" }, } }, + ["EnchantmentContagionDamage2"] = { affix = "Enchantment Contagion Damage 2", "40% increased Contagion Damage", statOrder = { 3728 }, level = 75, group = "EnchantmentContagionDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [277116504] = { "40% increased Contagion Damage" }, } }, + ["EnchantmentCorruptingFeverDamage1"] = { affix = "Enchantment Corrupting Fever Damage 1", "Corrupting Fever deals 25% increased Damage", statOrder = { 5882 }, level = 66, group = "EnchantmentCorruptingFeverDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage" }, tradeHashes = { [4010544321] = { "Corrupting Fever deals 25% increased Damage" }, } }, + ["EnchantmentCorruptingFeverDamage2__"] = { affix = "Enchantment Corrupting Fever Damage 2", "Corrupting Fever deals 40% increased Damage", statOrder = { 5882 }, level = 75, group = "EnchantmentCorruptingFeverDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage" }, tradeHashes = { [4010544321] = { "Corrupting Fever deals 40% increased Damage" }, } }, + ["EnchantmentConversionTrapDamage1"] = { affix = "Enchantment Conversion Trap Damage 1", "Converted Enemies have 25% increased Damage", statOrder = { 3723 }, level = 66, group = "EnchantmentConversionTrapDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage" }, tradeHashes = { [131320052] = { "Converted Enemies have 25% increased Damage" }, } }, + ["EnchantmentConversionTrapDamage2"] = { affix = "Enchantment Conversion Trap Damage 2", "Converted Enemies have 40% increased Damage", statOrder = { 3723 }, level = 75, group = "EnchantmentConversionTrapDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage" }, tradeHashes = { [131320052] = { "Converted Enemies have 40% increased Damage" }, } }, + ["EnchantmentCracklingLanceDamage1"] = { affix = "Enchantment Crackling Lance Damage 1", "Crackling Lance deals 25% increased Damage", statOrder = { 5900 }, level = 66, group = "EnchantmentCracklingLanceDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [435519320] = { "Crackling Lance deals 25% increased Damage" }, } }, + ["EnchantmentCracklingLanceDamage2_"] = { affix = "Enchantment Crackling Lance Damage 2", "Crackling Lance deals 40% increased Damage", statOrder = { 5900 }, level = 75, group = "EnchantmentCracklingLanceDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [435519320] = { "Crackling Lance deals 40% increased Damage" }, } }, + ["EnchantmentCycloneDamage1_"] = { affix = "Enchantment Cyclone Damage 1", "25% increased Cyclone Damage", statOrder = { 3676 }, level = 66, group = "EnchantmentCycloneDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1454162553] = { "25% increased Cyclone Damage" }, } }, + ["EnchantmentCycloneDamage2"] = { affix = "Enchantment Cyclone Damage 2", "40% increased Cyclone Damage", statOrder = { 3676 }, level = 75, group = "EnchantmentCycloneDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1454162553] = { "40% increased Cyclone Damage" }, } }, + ["EnchantmentDetonateDeadDamage1"] = { affix = "Enchantment Detonate Dead Damage 1", "25% increased Detonate Dead Damage", statOrder = { 3687 }, level = 66, group = "EnchantmentDetonateDeadDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3087527696] = { "25% increased Detonate Dead Damage" }, } }, + ["EnchantmentDetonateDeadDamage2"] = { affix = "Enchantment Detonate Dead Damage 2", "40% increased Detonate Dead Damage", statOrder = { 3687 }, level = 75, group = "EnchantmentDetonateDeadDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3087527696] = { "40% increased Detonate Dead Damage" }, } }, + ["EnchantmentDischargeDamage1"] = { affix = "Enchantment Discharge Damage 1", "25% increased Discharge Damage", statOrder = { 3414 }, level = 66, group = "EnchantmentDischargeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1935930829] = { "25% increased Discharge Damage" }, } }, + ["EnchantmentDischargeDamage2"] = { affix = "Enchantment Discharge Damage 2", "40% increased Discharge Damage", statOrder = { 3414 }, level = 75, group = "EnchantmentDischargeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1935930829] = { "40% increased Discharge Damage" }, } }, + ["EnchantmentDivineIreDamage1"] = { affix = "Enchantment Divine Ire Damage 1", "Divine Ire deals 25% increased Damage", statOrder = { 6255 }, level = 66, group = "EnchantmentDivineIreDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2584129062] = { "Divine Ire deals 25% increased Damage" }, } }, + ["EnchantmentDivineIreDamage2"] = { affix = "Enchantment Divine Ire Damage 2", "Divine Ire deals 40% increased Damage", statOrder = { 6255 }, level = 75, group = "EnchantmentDivineIreDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2584129062] = { "Divine Ire deals 40% increased Damage" }, } }, + ["EnchantmentDoubleSlashDamage1"] = { affix = "Enchantment Lacerate Damage 1", "25% increased Lacerate Damage", statOrder = { 4140 }, level = 66, group = "EnchantmentDoubleSlash", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1844721010] = { "25% increased Lacerate Damage" }, } }, + ["EnchantmentDoubleSlashDamage2"] = { affix = "Enchantment Lacerate Damage 2", "40% increased Lacerate Damage", statOrder = { 4140 }, level = 75, group = "EnchantmentDoubleSlash", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1844721010] = { "40% increased Lacerate Damage" }, } }, + ["EnchantmentDoubleStrikeDamage1"] = { affix = "Enchantment Double Strike Damage 1", "25% increased Double Strike Damage", statOrder = { 3630 }, level = 66, group = "EnchantmentDoubleStrikeDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1809965314] = { "25% increased Double Strike Damage" }, } }, + ["EnchantmentDoubleStrikeDamage2"] = { affix = "Enchantment Double Strike Damage 2", "40% increased Double Strike Damage", statOrder = { 3630 }, level = 75, group = "EnchantmentDoubleStrikeDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1809965314] = { "40% increased Double Strike Damage" }, } }, + ["EnchantmentDualStrikeDamage1"] = { affix = "Enchantment Dual Strike Damage 1", "25% increased Dual Strike Damage", statOrder = { 3631 }, level = 66, group = "EnchantmentDualStrikeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2094069860] = { "25% increased Dual Strike Damage" }, } }, + ["EnchantmentDualStrikeDamage2"] = { affix = "Enchantment Dual Strike Damage 2", "40% increased Dual Strike Damage", statOrder = { 3631 }, level = 75, group = "EnchantmentDualStrikeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2094069860] = { "40% increased Dual Strike Damage" }, } }, + ["EnchantmentEarthquakeDamage1"] = { affix = "Enchantment Earthquake Damage 1", "25% increased Earthquake Damage", statOrder = { 3733 }, level = 66, group = "EnchantmentEarthquakeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1697080607] = { "25% increased Earthquake Damage" }, } }, + ["EnchantmentEarthquakeDamage2_"] = { affix = "Enchantment Earthquake Damage 2", "40% increased Earthquake Damage", statOrder = { 3733 }, level = 75, group = "EnchantmentEarthquakeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1697080607] = { "40% increased Earthquake Damage" }, } }, + ["EnchantmentElementalHitDamage1"] = { affix = "Enchantment Elemental Hit Damage 1", "Elemental Hit deals 25% increased Damage", statOrder = { 3675 }, level = 66, group = "EnchantmentElementalHitDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4109038270] = { "Elemental Hit deals 25% increased Damage" }, } }, + ["EnchantmentElementalHitDamage2"] = { affix = "Enchantment Elemental Hit Damage 2", "Elemental Hit deals 40% increased Damage", statOrder = { 3675 }, level = 75, group = "EnchantmentElementalHitDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4109038270] = { "Elemental Hit deals 40% increased Damage" }, } }, + ["EnchantmentEssenceDrainDamage1"] = { affix = "Enchantment Essence Drain Damage 1", "25% increased Essence Drain Damage", statOrder = { 3727 }, level = 66, group = "EnchantmentEssenceDrainDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3469967347] = { "25% increased Essence Drain Damage" }, } }, + ["EnchantmentEssenceDrainDamage2"] = { affix = "Enchantment Essence Drain Damage 2", "40% increased Essence Drain Damage", statOrder = { 3727 }, level = 75, group = "EnchantmentEssenceDrainDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3469967347] = { "40% increased Essence Drain Damage" }, } }, + ["EnchantmentEtherealKnivesDamage1"] = { affix = "Enchantment Ethereal Knives Damage 1", "25% increased Ethereal Knives Damage", statOrder = { 3648 }, level = 66, group = "EnchantmentEtherealKnivesDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3514973342] = { "25% increased Ethereal Knives Damage" }, } }, + ["EnchantmentEtherealKnivesDamage2"] = { affix = "Enchantment Ethereal Knives Damage 2", "40% increased Ethereal Knives Damage", statOrder = { 3648 }, level = 75, group = "EnchantmentEtherealKnivesDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3514973342] = { "40% increased Ethereal Knives Damage" }, } }, + ["EnchantmentExplosiveArrowDamage1"] = { affix = "Enchantment Explosive Arrow Damage 1", "Explosive Arrow deals 25% increased Damage", statOrder = { 3679 }, level = 66, group = "EnchantmentExplosiveArrowDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3628984170] = { "Explosive Arrow deals 25% increased Damage" }, } }, + ["EnchantmentExplosiveArrowDamage2"] = { affix = "Enchantment Explosive Arrow Damage 2", "Explosive Arrow deals 40% increased Damage", statOrder = { 3679 }, level = 75, group = "EnchantmentExplosiveArrowDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3628984170] = { "Explosive Arrow deals 40% increased Damage" }, } }, + ["EnchantmentExplosiveConcoctionDamage1"] = { affix = "Enchantment Explosive Concoction Damage 1", "25% increased Explosive Concoction Damage", statOrder = { 6519 }, level = 66, group = "EnchantmentExplosiveConcoctionDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [383710904] = { "25% increased Explosive Concoction Damage" }, } }, + ["EnchantmentExplosiveConcoctionDamage2_"] = { affix = "Enchantment Explosive Concoction Damage 2", "40% increased Explosive Concoction Damage", statOrder = { 6519 }, level = 75, group = "EnchantmentExplosiveConcoctionDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [383710904] = { "40% increased Explosive Concoction Damage" }, } }, + ["EnchantmentExsanguinateDamage1_"] = { affix = "Enchantment Exsanguinate Damage 1", "Exsanguinate deals 25% increased Damage", statOrder = { 6527 }, level = 66, group = "EnchantmentExsanguinateDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2259734653] = { "Exsanguinate deals 25% increased Damage" }, } }, + ["EnchantmentExsanguinateDamage2"] = { affix = "Enchantment Exsanguinate Damage 2", "Exsanguinate deals 40% increased Damage", statOrder = { 6527 }, level = 75, group = "EnchantmentExsanguinateDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2259734653] = { "Exsanguinate deals 40% increased Damage" }, } }, + ["EnchantmentEyeOfWinterDamage1"] = { affix = "Enchantment Eye of Winter Damage 1", "25% increased Eye of Winter Damage", statOrder = { 6541 }, level = 66, group = "EnchantmentEyeOfWinterDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1015388938] = { "25% increased Eye of Winter Damage" }, } }, + ["EnchantmentEyeOfWinterDamage2____"] = { affix = "Enchantment Eye of Winter Damage 2", "40% increased Eye of Winter Damage", statOrder = { 6541 }, level = 75, group = "EnchantmentEyeOfWinterDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1015388938] = { "40% increased Eye of Winter Damage" }, } }, + ["EnchantmentFireNovaMineDamage1"] = { affix = "Enchantment Pyroclast Mine Damage 1", "Pyroclast Mine deals 25% increased Damage", statOrder = { 9401 }, level = 66, group = "EnchantmentMortarBarrageMineDamage", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4048820315] = { "Pyroclast Mine deals 25% increased Damage" }, } }, + ["EnchantmentFireNovaMineDamage2"] = { affix = "Enchantment Pyroclast Mine Damage 2", "Pyroclast Mine deals 40% increased Damage", statOrder = { 9401 }, level = 75, group = "EnchantmentMortarBarrageMineDamage", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4048820315] = { "Pyroclast Mine deals 40% increased Damage" }, } }, + ["EnchantmentFireStormDamage1"] = { affix = "Enchantment Firestorm Damage 1", "25% increased Firestorm Damage", statOrder = { 3663 }, level = 66, group = "EnchantmentFireStormDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2201904285] = { "25% increased Firestorm Damage" }, } }, + ["EnchantmentFireStormDamage2"] = { affix = "Enchantment Firestorm Damage 2", "40% increased Firestorm Damage", statOrder = { 3663 }, level = 75, group = "EnchantmentFireStormDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2201904285] = { "40% increased Firestorm Damage" }, } }, + ["EnchantmentFireTrapDamage1"] = { affix = "Enchantment Fire Trap Damage 1", "25% increased Fire Trap Damage", statOrder = { 3632 }, level = 66, group = "EnchantmentFireTrapDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [181307038] = { "25% increased Fire Trap Damage" }, } }, + ["EnchantmentFireTrapDamage2"] = { affix = "Enchantment Fire Trap Damage 2", "40% increased Fire Trap Damage", statOrder = { 3632 }, level = 75, group = "EnchantmentFireTrapDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [181307038] = { "40% increased Fire Trap Damage" }, } }, + ["EnchantmentFireballDamage1"] = { affix = "Enchantment Fireball Damage 1", "25% increased Fireball Damage", statOrder = { 3633 }, level = 66, group = "EnchantmentFireballDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2600498881] = { "25% increased Fireball Damage" }, } }, + ["EnchantmentFireballDamage2_"] = { affix = "Enchantment Fireball Damage 2", "40% increased Fireball Damage", statOrder = { 3633 }, level = 75, group = "EnchantmentFireballDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2600498881] = { "40% increased Fireball Damage" }, } }, + ["EnchantmentFireBeamDamage1"] = { affix = "Enchantment Scorching Ray Damage 1", "25% increased Scorching Ray Damage", statOrder = { 6555 }, level = 66, group = "EnchantmentFireBeamDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3395096718] = { "25% increased Scorching Ray Damage" }, } }, + ["EnchantmentFireBeamDamage2"] = { affix = "Enchantment Scorching Ray Damage 2", "40% increased Scorching Ray Damage", statOrder = { 6555 }, level = 75, group = "EnchantmentFireBeamDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3395096718] = { "40% increased Scorching Ray Damage" }, } }, + ["EnchantmentFlameDashDamage1"] = { affix = "Enchantment Flame Dash Damage 1", "25% increased Flame Dash Damage", statOrder = { 3712 }, level = 66, group = "EnchantmentFlameDashDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3013068851] = { "25% increased Flame Dash Damage" }, } }, + ["EnchantmentFlameDashDamage2"] = { affix = "Enchantment Flame Dash Damage 2", "40% increased Flame Dash Damage", statOrder = { 3712 }, level = 75, group = "EnchantmentFlameDashDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3013068851] = { "40% increased Flame Dash Damage" }, } }, + ["EnchantmentFlameSurgeDamage1"] = { affix = "Enchantment Flame Surge Damage 1", "25% increased Flame Surge Damage", statOrder = { 3664 }, level = 66, group = "EnchantmentFlameSurgeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1491182794] = { "25% increased Flame Surge Damage" }, } }, + ["EnchantmentFlameSurgeDamage2"] = { affix = "Enchantment Flame Surge Damage 2", "40% increased Flame Surge Damage", statOrder = { 3664 }, level = 75, group = "EnchantmentFlameSurgeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1491182794] = { "40% increased Flame Surge Damage" }, } }, + ["EnchantmentFlamethrowerTrapDamage1"] = { affix = "Enchantment Flamethrower Trap Damage 1", "Flamethrower Trap deals 25% increased Damage", statOrder = { 6628 }, level = 66, group = "EnchantmentFlamethrowerTrapDamage", weightKey = { "helmet", "default", }, weightVal = { 80, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4162139595] = { "Flamethrower Trap deals 25% increased Damage" }, } }, + ["EnchantmentFlamethrowerTrapDamage2"] = { affix = "Enchantment Flamethrower Trap Damage 2", "Flamethrower Trap deals 40% increased Damage", statOrder = { 6628 }, level = 75, group = "EnchantmentFlamethrowerTrapDamage", weightKey = { "helmet", "default", }, weightVal = { 80, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4162139595] = { "Flamethrower Trap deals 40% increased Damage" }, } }, + ["EnchantmentFlameTotemDamage1"] = { affix = "Enchantment Flame Totem Damage 1", "Holy Flame Totem deals 25% increased Damage", statOrder = { 3704 }, level = 66, group = "EnchantmentFlameTotemDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2801853811] = { "Holy Flame Totem deals 25% increased Damage" }, } }, + ["EnchantmentFlameTotemDamage2"] = { affix = "Enchantment Flame Totem Damage 2", "Holy Flame Totem deals 40% increased Damage", statOrder = { 3704 }, level = 75, group = "EnchantmentFlameTotemDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2801853811] = { "Holy Flame Totem deals 40% increased Damage" }, } }, + ["EnchantmentFlameblastDamage1"] = { affix = "Enchantment Flameblast Damage 1", "25% increased Flameblast Damage", statOrder = { 3680 }, level = 66, group = "EnchantmentFlameblastDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [169405468] = { "25% increased Flameblast Damage" }, } }, + ["EnchantmentFlameblastDamage2"] = { affix = "Enchantment Flameblast Damage 2", "40% increased Flameblast Damage", statOrder = { 3680 }, level = 75, group = "EnchantmentFlameblastDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [169405468] = { "40% increased Flameblast Damage" }, } }, + ["EnchantmentFlameWallDamage1"] = { affix = "Enchantment Flame Wall Damage 1", "Flame Wall deals 25% increased Damage", statOrder = { 6619 }, level = 66, group = "EnchantmentFlameWallDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2189364976] = { "Flame Wall deals 25% increased Damage" }, } }, + ["EnchantmentFlameWallDamage2"] = { affix = "Enchantment Flame Wall Damage 2", "Flame Wall deals 40% increased Damage", statOrder = { 6619 }, level = 75, group = "EnchantmentFlameWallDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2189364976] = { "Flame Wall deals 40% increased Damage" }, } }, + ["EnchantmentFlickerStrikeDamage1"] = { affix = "Enchantment Flicker Strike Damage 1", "25% increased Flicker Strike Damage", statOrder = { 3653 }, level = 66, group = "EnchantmentFlickerStrikeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [464448327] = { "25% increased Flicker Strike Damage" }, } }, + ["EnchantmentFlickerStrikeDamage2"] = { affix = "Enchantment Flicker Strike Damage 2", "40% increased Flicker Strike Damage", statOrder = { 3653 }, level = 75, group = "EnchantmentFlickerStrikeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [464448327] = { "40% increased Flicker Strike Damage" }, } }, + ["EnchantmentForbiddenRiteDamage1"] = { affix = "Enchantment Forbidden Rite Damage 1", "25% increased Forbidden Rite Damage", statOrder = { 6656 }, level = 66, group = "EnchantmentForbiddenRiteDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3383175526] = { "25% increased Forbidden Rite Damage" }, } }, + ["EnchantmentForbiddenRiteDamage2"] = { affix = "Enchantment Forbidden Rite Damage 2", "40% increased Forbidden Rite Damage", statOrder = { 6656 }, level = 75, group = "EnchantmentForbiddenRiteDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3383175526] = { "40% increased Forbidden Rite Damage" }, } }, + ["EnchantmentFreezingPulseDamage1"] = { affix = "Enchantment Freezing Pulse Damage 1", "25% increased Freezing Pulse Damage", statOrder = { 3634 }, level = 66, group = "EnchantmentFreezingPulseDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [819852672] = { "25% increased Freezing Pulse Damage" }, } }, + ["EnchantmentFreezingPulseDamage2"] = { affix = "Enchantment Freezing Pulse Damage 2", "40% increased Freezing Pulse Damage", statOrder = { 3634 }, level = 75, group = "EnchantmentFreezingPulseDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [819852672] = { "40% increased Freezing Pulse Damage" }, } }, + ["EnchantmentFrenzyDamage1"] = { affix = "Enchantment Frenzy Damage 1", "25% increased Frenzy Damage", statOrder = { 3673 }, level = 66, group = "EnchantmentFrenzyDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [522780692] = { "25% increased Frenzy Damage" }, } }, + ["EnchantmentFrenzyDamage2"] = { affix = "Enchantment Frenzy Damage 2", "40% increased Frenzy Damage", statOrder = { 3673 }, level = 75, group = "EnchantmentFrenzyDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [522780692] = { "40% increased Frenzy Damage" }, } }, + ["EnchantmentFrostBoltDamage1"] = { affix = "Enchantment Frost Bolt Damage 1", "25% increased Frostbolt Damage", statOrder = { 4138 }, level = 66, group = "EnchantmentFrostBoltDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2078274993] = { "25% increased Frostbolt Damage" }, } }, + ["EnchantmentFrostBoltDamage2"] = { affix = "Enchantment Frost Bolt Damage 2", "40% increased Frostbolt Damage", statOrder = { 4138 }, level = 75, group = "EnchantmentFrostBoltDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2078274993] = { "40% increased Frostbolt Damage" }, } }, + ["EnchantmentFrostBombDamage1"] = { affix = "Enchantment Frost Bomb Damage 1", "25% increased Frost Bomb Damage", statOrder = { 3736 }, level = 66, group = "EnchantmentFrostBombDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2380598805] = { "25% increased Frost Bomb Damage" }, } }, + ["EnchantmentFrostBombDamage2"] = { affix = "Enchantment Frost Bomb Damage 2", "40% increased Frost Bomb Damage", statOrder = { 3736 }, level = 75, group = "EnchantmentFrostBombDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2380598805] = { "40% increased Frost Bomb Damage" }, } }, + ["EnchantmentGlacialCascadeDamage1"] = { affix = "Enchantment Glacial Cascade Damage 1", "25% increased Glacial Cascade Damage", statOrder = { 3681 }, level = 66, group = "EnchantmentGlacialCascadeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [451037529] = { "25% increased Glacial Cascade Damage" }, } }, + ["EnchantmentGlacialCascadeDamage2"] = { affix = "Enchantment Glacial Cascade Damage 2", "40% increased Glacial Cascade Damage", statOrder = { 3681 }, level = 75, group = "EnchantmentGlacialCascadeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [451037529] = { "40% increased Glacial Cascade Damage" }, } }, + ["EnchantmentGlacialHammerDamage1"] = { affix = "Enchantment Glacial Hammer Damage 1", "25% increased Glacial Hammer Damage", statOrder = { 3635 }, level = 66, group = "EnchantmentGlacialHammerDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2732675053] = { "25% increased Glacial Hammer Damage" }, } }, + ["EnchantmentGlacialHammerDamage2"] = { affix = "Enchantment Glacial Hammer Damage 2", "40% increased Glacial Hammer Damage", statOrder = { 3635 }, level = 75, group = "EnchantmentGlacialHammerDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2732675053] = { "40% increased Glacial Hammer Damage" }, } }, + ["EnchantmentGroundSlamDamage1"] = { affix = "Enchantment Ground Slam Damage 1", "25% increased Ground Slam Damage", statOrder = { 3636 }, level = 66, group = "EnchantmentGroundSlamDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [108883700] = { "25% increased Ground Slam Damage" }, } }, + ["EnchantmentGroundSlamDamage2"] = { affix = "Enchantment Ground Slam Damage 2", "40% increased Ground Slam Damage", statOrder = { 3636 }, level = 75, group = "EnchantmentGroundSlamDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [108883700] = { "40% increased Ground Slam Damage" }, } }, + ["EnchantmentHeavyStrikeDamage1"] = { affix = "Enchantment Heavy Strike Damage 1", "25% increased Heavy Strike Damage", statOrder = { 3637 }, level = 66, group = "EnchantmentHeavyStrikeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [954135826] = { "25% increased Heavy Strike Damage" }, } }, + ["EnchantmentHeavyStrikeDamage2"] = { affix = "Enchantment Heavy Strike Damage 2", "40% increased Heavy Strike Damage", statOrder = { 3637 }, level = 75, group = "EnchantmentHeavyStrikeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [954135826] = { "40% increased Heavy Strike Damage" }, } }, + ["EnchantmentHeraldOfAshDamage1"] = { affix = "Enchantment Herald Of Ash Damage 1", "25% increased Herald of Ash Damage", statOrder = { 3714 }, level = 66, group = "EnchantmentHeraldOfAshDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage" }, tradeHashes = { [767884542] = { "25% increased Herald of Ash Damage" }, } }, + ["EnchantmentHeraldOfAshDamage2"] = { affix = "Enchantment Herald Of Ash Damage 2", "40% increased Herald of Ash Damage", statOrder = { 3714 }, level = 75, group = "EnchantmentHeraldOfAshDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage" }, tradeHashes = { [767884542] = { "40% increased Herald of Ash Damage" }, } }, + ["EnchantmentHeraldOfIceDamage1_"] = { affix = "Enchantment Herald Of Ice Damage 1", "25% increased Herald of Ice Damage", statOrder = { 3715 }, level = 66, group = "EnchantmentHeraldOfIceDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage" }, tradeHashes = { [3910961021] = { "25% increased Herald of Ice Damage" }, } }, + ["EnchantmentHeraldOfIceDamage2"] = { affix = "Enchantment Herald Of Ice Damage 2", "40% increased Herald of Ice Damage", statOrder = { 3715 }, level = 75, group = "EnchantmentHeraldOfIceDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage" }, tradeHashes = { [3910961021] = { "40% increased Herald of Ice Damage" }, } }, + ["EnchantmentHeraldOfThunderDamage1"] = { affix = "Enchantment Herald Of Thunder Damage 1", "25% increased Herald of Thunder Damage", statOrder = { 3716 }, level = 66, group = "EnchantmentHeraldOfThunderDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage" }, tradeHashes = { [558298545] = { "25% increased Herald of Thunder Damage" }, } }, + ["EnchantmentHeraldOfThunderDamage2_"] = { affix = "Enchantment Herald Of Thunder Damage 2", "40% increased Herald of Thunder Damage", statOrder = { 3716 }, level = 75, group = "EnchantmentHeraldOfThunderDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage" }, tradeHashes = { [558298545] = { "40% increased Herald of Thunder Damage" }, } }, + ["EnchantmentHexblastDamage1"] = { affix = "Enchantment Hexblast Damage 1", "Hexblast deals 25% increased Damage", statOrder = { 7136 }, level = 66, group = "EnchantmentHexblastDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage" }, tradeHashes = { [2318562335] = { "Hexblast deals 25% increased Damage" }, } }, + ["EnchantmentHexblastDamage2_"] = { affix = "Enchantment Hexblast Damage 2", "Hexblast deals 40% increased Damage", statOrder = { 7136 }, level = 75, group = "EnchantmentHexblastDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage" }, tradeHashes = { [2318562335] = { "Hexblast deals 40% increased Damage" }, } }, + ["EnchantmentHolyRelicDamage1"] = { affix = "Enchantment Holy Relic Damage 1", "Summoned Holy Relics deal 25% increased Damage", statOrder = { 7180 }, level = 66, group = "EnchantmentHolyRelicDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1152784934] = { "Summoned Holy Relics deal 25% increased Damage" }, } }, + ["EnchantmentHolyRelicDamage2"] = { affix = "Enchantment Holy Relic Damage 2", "Summoned Holy Relics deal 40% increased Damage", statOrder = { 7180 }, level = 75, group = "EnchantmentHolyRelicDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1152784934] = { "Summoned Holy Relics deal 40% increased Damage" }, } }, + ["EnchantmentIceCrashDamage1"] = { affix = "Enchantment Ice Crash Damage 1", "25% increased Ice Crash Damage", statOrder = { 3682 }, level = 66, group = "EnchantmentIceCrashDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1794090421] = { "25% increased Ice Crash Damage" }, } }, + ["EnchantmentIceCrashDamage2"] = { affix = "Enchantment Ice Crash Damage 2", "40% increased Ice Crash Damage", statOrder = { 3682 }, level = 75, group = "EnchantmentIceCrashDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1794090421] = { "40% increased Ice Crash Damage" }, } }, + ["EnchantmentIceNovaDamage1"] = { affix = "Enchantment Ice Nova Damage 1", "25% increased Ice Nova Damage", statOrder = { 3665 }, level = 66, group = "EnchantmentIceNovaDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1086309398] = { "25% increased Ice Nova Damage" }, } }, + ["EnchantmentIceNovaDamage2"] = { affix = "Enchantment Ice Nova Damage 2", "40% increased Ice Nova Damage", statOrder = { 3665 }, level = 75, group = "EnchantmentIceNovaDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1086309398] = { "40% increased Ice Nova Damage" }, } }, + ["EnchantmentIceShotDamage1"] = { affix = "Enchantment Ice Shot Damage 1", "25% increased Ice Shot Damage", statOrder = { 3649 }, level = 66, group = "EnchantmentIceShotDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3026752303] = { "25% increased Ice Shot Damage" }, } }, + ["EnchantmentIceShotDamage2"] = { affix = "Enchantment Ice Shot Damage 2", "40% increased Ice Shot Damage", statOrder = { 3649 }, level = 75, group = "EnchantmentIceShotDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3026752303] = { "40% increased Ice Shot Damage" }, } }, + ["EnchantmentIceSiphonTrapDamage1"] = { affix = "Enchantment Ice Siphon Trap Damage 1", "Siphoning Trap deals 25% increased Damage", statOrder = { 7195 }, level = 66, group = "EnchantmentIceSiphonTrapDamage", weightKey = { "helmet", "default", }, weightVal = { 67, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3686368306] = { "Siphoning Trap deals 25% increased Damage" }, } }, + ["EnchantmentIceSiphonTrapDamage2____"] = { affix = "Enchantment Ice Siphon Trap Damage 2", "Siphoning Trap deals 40% increased Damage", statOrder = { 7195 }, level = 75, group = "EnchantmentIceSiphonTrapDamage", weightKey = { "helmet", "default", }, weightVal = { 67, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3686368306] = { "Siphoning Trap deals 40% increased Damage" }, } }, + ["EnchantmentIceSpearDamage1"] = { affix = "Enchantment Ice Spear Damage 1", "25% increased Ice Spear Damage", statOrder = { 3666 }, level = 66, group = "EnchantmentIceSpearDamage", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2423221070] = { "25% increased Ice Spear Damage" }, } }, + ["EnchantmentIceSpearDamage2"] = { affix = "Enchantment Ice Spear Damage 2", "40% increased Ice Spear Damage", statOrder = { 3666 }, level = 75, group = "EnchantmentIceSpearDamage", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2423221070] = { "40% increased Ice Spear Damage" }, } }, + ["EnchantmentIceTrapDamage1"] = { affix = "Enchantment Ice Trap Damage 1", "25% increased Ice Trap Damage", statOrder = { 3731 }, level = 66, group = "EnchantmentIceTrapDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4224384031] = { "25% increased Ice Trap Damage" }, } }, + ["EnchantmentIceTrapDamage2"] = { affix = "Enchantment Ice Trap Damage 2", "40% increased Ice Trap Damage", statOrder = { 3731 }, level = 75, group = "EnchantmentIceTrapDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4224384031] = { "40% increased Ice Trap Damage" }, } }, + ["EnchantmentIncinerateDamage1"] = { affix = "Enchantment Incinerate Damage 1", "25% increased Incinerate Damage", statOrder = { 3667 }, level = 66, group = "EnchantmentIncinerateDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2246425134] = { "25% increased Incinerate Damage" }, } }, + ["EnchantmentIncinerateDamage2"] = { affix = "Enchantment Incinerate Damage 2", "40% increased Incinerate Damage", statOrder = { 3667 }, level = 75, group = "EnchantmentIncinerateDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2246425134] = { "40% increased Incinerate Damage" }, } }, + ["EnchantmentInfernalBlowDamage1"] = { affix = "Enchantment Infernal Blow Damage 1", "25% increased Infernal Blow Damage", statOrder = { 3638 }, level = 66, group = "EnchantmentInfernalBlowDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [242838571] = { "25% increased Infernal Blow Damage" }, } }, + ["EnchantmentInfernalBlowDamage2"] = { affix = "Enchantment Infernal Blow Damage 2", "40% increased Infernal Blow Damage", statOrder = { 3638 }, level = 75, group = "EnchantmentInfernalBlowDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [242838571] = { "40% increased Infernal Blow Damage" }, } }, + ["EnchantmentKineticBlastDamage1"] = { affix = "Enchantment Kinetic Blast Damage 1", "25% increased Kinetic Blast Damage", statOrder = { 3683 }, level = 66, group = "EnchantmentKineticBlastDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1007135105] = { "25% increased Kinetic Blast Damage" }, } }, + ["EnchantmentKineticBlastDamage2"] = { affix = "Enchantment Kinetic Blast Damage 2", "40% increased Kinetic Blast Damage", statOrder = { 3683 }, level = 75, group = "EnchantmentKineticBlastDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1007135105] = { "40% increased Kinetic Blast Damage" }, } }, + ["EnchantmentLancingSteelDamage1"] = { affix = "Enchantment Lancing Steel Damage 1", "Lancing Steel deals 25% increased Damage", statOrder = { 7332 }, level = 66, group = "EnchantmentLancingSteelDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2159486200] = { "Lancing Steel deals 25% increased Damage" }, } }, + ["EnchantmentLancingSteelDamage2"] = { affix = "Enchantment Lancing Steel Damage 2", "Lancing Steel deals 40% increased Damage", statOrder = { 7332 }, level = 75, group = "EnchantmentLancingSteelDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2159486200] = { "Lancing Steel deals 40% increased Damage" }, } }, + ["EnchantmentLeapSlamDamage1"] = { affix = "Enchantment Leap Slam Damage 1", "25% increased Leap Slam Damage", statOrder = { 3654 }, level = 66, group = "EnchantmentLeapSlamDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3850775143] = { "25% increased Leap Slam Damage" }, } }, + ["EnchantmentLeapSlamDamage2"] = { affix = "Enchantment Leap Slam Damage 2", "40% increased Leap Slam Damage", statOrder = { 3654 }, level = 75, group = "EnchantmentLeapSlamDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3850775143] = { "40% increased Leap Slam Damage" }, } }, + ["EnchantmentLightningArrowDamage1"] = { affix = "Enchantment Lightning Arrow Damage 1", "25% increased Lightning Arrow Damage", statOrder = { 3655 }, level = 66, group = "EnchantmentLightningArrowDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2896672990] = { "25% increased Lightning Arrow Damage" }, } }, + ["EnchantmentLightningArrowDamage2"] = { affix = "Enchantment Lightning Arrow Damage 2", "40% increased Lightning Arrow Damage", statOrder = { 3655 }, level = 75, group = "EnchantmentLightningArrowDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2896672990] = { "40% increased Lightning Arrow Damage" }, } }, + ["EnchantmentLightningStrikeDamage1__"] = { affix = "Enchantment Lightning Strike Damage 1", "25% increased Lightning Strike Damage", statOrder = { 3639 }, level = 66, group = "EnchantmentLightningStrikeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3630274354] = { "25% increased Lightning Strike Damage" }, } }, + ["EnchantmentLightningStrikeDamage2"] = { affix = "Enchantment Lightning Strike Damage 2", "40% increased Lightning Strike Damage", statOrder = { 3639 }, level = 75, group = "EnchantmentLightningStrikeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3630274354] = { "40% increased Lightning Strike Damage" }, } }, + ["EnchantmentLightningTendrilsDamage1"] = { affix = "Enchantment Lightning Tendrils Damage 1", "25% increased Lightning Tendrils Damage", statOrder = { 3640 }, level = 66, group = "EnchantmentLightningTendrilsDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [39356080] = { "25% increased Lightning Tendrils Damage" }, } }, + ["EnchantmentLightningTendrilsDamage2"] = { affix = "Enchantment Lightning Tendrils Damage 2", "40% increased Lightning Tendrils Damage", statOrder = { 3640 }, level = 75, group = "EnchantmentLightningTendrilsDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [39356080] = { "40% increased Lightning Tendrils Damage" }, } }, + ["EnchantmentLightningTowerTrapDamage1"] = { affix = "Enchantment Lightning Tower Trap Damage 1", "Lightning Spire Trap deals 25% increased Damage", statOrder = { 7478 }, level = 66, group = "EnchantmentLightningTowerTrapDamage", weightKey = { "helmet", "default", }, weightVal = { 60, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [982975385] = { "Lightning Spire Trap deals 25% increased Damage" }, } }, + ["EnchantmentLightningTowerTrapDamage2_"] = { affix = "Enchantment Lightning Tower Trap Damage 2", "Lightning Spire Trap deals 40% increased Damage", statOrder = { 7478 }, level = 75, group = "EnchantmentLightningTowerTrapDamage", weightKey = { "helmet", "default", }, weightVal = { 60, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [982975385] = { "Lightning Spire Trap deals 40% increased Damage" }, } }, + ["EnchantmentLightningTrapDamage1"] = { affix = "Enchantment Lightning Trap Damage 1", "25% increased Lightning Trap Damage", statOrder = { 3418 }, level = 66, group = "EnchantmentLightningTrapDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3131492956] = { "25% increased Lightning Trap Damage" }, } }, + ["EnchantmentLightningTrapDamage2"] = { affix = "Enchantment Lightning Trap Damage 2", "40% increased Lightning Trap Damage", statOrder = { 3418 }, level = 75, group = "EnchantmentLightningTrapDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3131492956] = { "40% increased Lightning Trap Damage" }, } }, + ["EnchantmentLightningWarpDamage1"] = { affix = "Enchantment Lightning Warp Damage 1", "25% increased Lightning Warp Damage", statOrder = { 3656 }, level = 66, group = "EnchantmentLightningWarpDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [209345940] = { "25% increased Lightning Warp Damage" }, } }, + ["EnchantmentLightningWarpDamage2"] = { affix = "Enchantment Lightning Warp Damage 2", "40% increased Lightning Warp Damage", statOrder = { 3656 }, level = 75, group = "EnchantmentLightningWarpDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [209345940] = { "40% increased Lightning Warp Damage" }, } }, + ["EnchantmentMagmaOrbDamage1"] = { affix = "Enchantment Rolling Magma Damage 1", "25% increased Rolling Magma Damage", statOrder = { 3641 }, level = 66, group = "EnchantmentMagmaOrbDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [600891507] = { "25% increased Rolling Magma Damage" }, } }, + ["EnchantmentMagmaOrbDamage2"] = { affix = "Enchantment Rolling Magma Damage 2", "40% increased Rolling Magma Damage", statOrder = { 3641 }, level = 75, group = "EnchantmentMagmaOrbDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [600891507] = { "40% increased Rolling Magma Damage" }, } }, + ["EnchantmentManabondDamage1_"] = { affix = "Enchantment Manabond Damage 1", "25% increased Manabond Damage", statOrder = { 8222 }, level = 66, group = "EnchantmentManabondDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1609869231] = { "25% increased Manabond Damage" }, } }, + ["EnchantmentManabondDamage2_"] = { affix = "Enchantment Manabond Damage 2", "40% increased Manabond Damage", statOrder = { 8222 }, level = 75, group = "EnchantmentManabondDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1609869231] = { "40% increased Manabond Damage" }, } }, + ["EnchantmentMirrorArrowDamage1"] = { affix = "Enchantment Mirror Arrow Damage 1", "Mirror Arrow and Mirror Arrow Clones deal 25% increased Damage", statOrder = { 3720 }, level = 66, group = "EnchantmentMirrorArrowDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4136186767] = { "Mirror Arrow and Mirror Arrow Clones deal 25% increased Damage" }, } }, + ["EnchantmentMirrorArrowDamage2"] = { affix = "Enchantment Mirror Arrow Damage 2", "Mirror Arrow and Mirror Arrow Clones deal 40% increased Damage", statOrder = { 3720 }, level = 75, group = "EnchantmentMirrorArrowDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4136186767] = { "Mirror Arrow and Mirror Arrow Clones deal 40% increased Damage" }, } }, + ["EnchantmentMoltenShellDamage1"] = { affix = "Enchantment Molten Shell Duration 1", "Molten Shell has 25% increased Skill Effect Duration", statOrder = { 9388 }, level = 66, group = "EnchantmentMoltenShellDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [4255043252] = { "Molten Shell has 25% increased Skill Effect Duration" }, } }, + ["EnchantmentMoltenShellDamage2"] = { affix = "Enchantment Molten Shell Duration 2", "Molten Shell has 40% increased Skill Effect Duration", statOrder = { 9388 }, level = 75, group = "EnchantmentMoltenShellDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [4255043252] = { "Molten Shell has 40% increased Skill Effect Duration" }, } }, + ["EnchantmentMoltenShellArmour1"] = { affix = "Enchantment Molten Shell Armour 1", "100% increased Molten Shell Buff Effect", statOrder = { 4024 }, level = 66, group = "EnchantmentMoltenShellArmour", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1949390531] = { "100% increased Molten Shell Buff Effect" }, } }, + ["EnchantmentMoltenShellArmour2"] = { affix = "Enchantment Molten Shell Armour 2", "150% increased Molten Shell Buff Effect", statOrder = { 4024 }, level = 75, group = "EnchantmentMoltenShellArmour", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1949390531] = { "150% increased Molten Shell Buff Effect" }, } }, + ["EnchantmentMoltenStrikeDamage1"] = { affix = "Enchantment Molten Strike Damage 1", "25% increased Molten Strike Damage", statOrder = { 3642 }, level = 66, group = "EnchantmentMoltenStrikeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2038865857] = { "25% increased Molten Strike Damage" }, } }, + ["EnchantmentMoltenStrikeDamage2"] = { affix = "Enchantment Molten Strike Damage 2", "40% increased Molten Strike Damage", statOrder = { 3642 }, level = 75, group = "EnchantmentMoltenStrikeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2038865857] = { "40% increased Molten Strike Damage" }, } }, + ["EnchantmentOrbOfStormsDamage1"] = { affix = "Enchantment Orb Of Storms Damage 1", "Orb of Storms deals 25% increased Damage", statOrder = { 3737 }, level = 66, group = "EnchantmentOrbOfStormsDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4084540709] = { "Orb of Storms deals 25% increased Damage" }, } }, + ["EnchantmentOrbOfStormsDamage2"] = { affix = "Enchantment Orb Of Storms Damage 2", "Orb of Storms deals 40% increased Damage", statOrder = { 3737 }, level = 75, group = "EnchantmentOrbOfStormsDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4084540709] = { "Orb of Storms deals 40% increased Damage" }, } }, + ["EnchantmentOrbOfStormsCastSpeed1"] = { affix = "Enchantment Orb Of Storms Cast Speed 1", "Orb of Storms has 20% increased Cast Speed", statOrder = { 9562 }, level = 66, group = "EnchantmentOrbOfStormsCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2778301298] = { "Orb of Storms has 20% increased Cast Speed" }, } }, + ["EnchantmentOrbOfStormsCastSpeed2"] = { affix = "Enchantment Orb Of Storms Cast Speed 2", "Orb of Storms has 30% increased Cast Speed", statOrder = { 9562 }, level = 75, group = "EnchantmentOrbOfStormsCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2778301298] = { "Orb of Storms has 30% increased Cast Speed" }, } }, + ["EnchantmentPhysicalCascadeTrapDamage1"] = { affix = "Enchantment Physical Cascade Trap Damage 1", "Seismic Trap deals 25% increased Damage", statOrder = { 9619 }, level = 66, group = "EnchantmentPhysicalCascadeTrapDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1175282728] = { "Seismic Trap deals 25% increased Damage" }, } }, + ["EnchantmentPhysicalCascadeTrapDamage2"] = { affix = "Enchantment Physical Cascade Trap Damage 2", "Seismic Trap deals 40% increased Damage", statOrder = { 9619 }, level = 75, group = "EnchantmentPhysicalCascadeTrapDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1175282728] = { "Seismic Trap deals 40% increased Damage" }, } }, + ["EnchantmentPoisonousConcoctionDamage1_"] = { affix = "Enchantment Poisonous Concoction Damage 1", "25% increased Poisonous Concoction Damage", statOrder = { 9694 }, level = 66, group = "EnchantmentPoisonousConcoctionDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [295557151] = { "25% increased Poisonous Concoction Damage" }, } }, + ["EnchantmentPoisonousConcoctionDamage2"] = { affix = "Enchantment Poisonous Concoction Damage 2", "40% increased Poisonous Concoction Damage", statOrder = { 9694 }, level = 75, group = "EnchantmentPoisonousConcoctionDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [295557151] = { "40% increased Poisonous Concoction Damage" }, } }, + ["EnchantmentPowerSiphonDamage1"] = { affix = "Enchantment Power Siphon Damage 1", "25% increased Power Siphon Damage", statOrder = { 3668 }, level = 66, group = "EnchantmentPowerSiphonDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [78767457] = { "25% increased Power Siphon Damage" }, } }, + ["EnchantmentPowerSiphonDamage2"] = { affix = "Enchantment Power Siphon Damage 2", "40% increased Power Siphon Damage", statOrder = { 3668 }, level = 75, group = "EnchantmentPowerSiphonDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [78767457] = { "40% increased Power Siphon Damage" }, } }, + ["EnchantmentPunctureDamage1"] = { affix = "Enchantment Puncture Damage 1", "25% increased Puncture Damage", statOrder = { 3657 }, level = 66, group = "EnchantmentPunctureDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3496292484] = { "25% increased Puncture Damage" }, } }, + ["EnchantmentPunctureDamage2"] = { affix = "Enchantment Puncture Damage 2", "40% increased Puncture Damage", statOrder = { 3657 }, level = 75, group = "EnchantmentPunctureDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3496292484] = { "40% increased Puncture Damage" }, } }, + ["EnchantmentPurifyingFlameDamage1"] = { affix = "Enchantment Purifying Flame Damage 1", "Purifying Flame deals 25% increased Damage", statOrder = { 9960 }, level = 66, group = "EnchantmentPurifyingFlameDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [944311193] = { "Purifying Flame deals 25% increased Damage" }, } }, + ["EnchantmentPurifyingFlameDamage2"] = { affix = "Enchantment Purifying Flame Damage 2", "Purifying Flame deals 40% increased Damage", statOrder = { 9960 }, level = 75, group = "EnchantmentPurifyingFlameDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [944311193] = { "Purifying Flame deals 40% increased Damage" }, } }, + ["EnchantmentRainOfArrowsDamage1"] = { affix = "Enchantment Rain Of Arrows Damage 1", "25% increased Rain of Arrows Damage", statOrder = { 3650 }, level = 66, group = "EnchantmentRainOfArrowsDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3432170876] = { "25% increased Rain of Arrows Damage" }, } }, + ["EnchantmentRainOfArrowsDamage2"] = { affix = "Enchantment Rain Of Arrows Damage 2", "40% increased Rain of Arrows Damage", statOrder = { 3650 }, level = 75, group = "EnchantmentRainOfArrowsDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3432170876] = { "40% increased Rain of Arrows Damage" }, } }, + ["EnchantmentRaiseSpectreDamage1"] = { affix = "Enchantment Raise Spectre Damage 1", "Raised Spectres have 25% increased Damage", statOrder = { 3457 }, level = 66, group = "EnchantmentRaiseSpectreDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3645693773] = { "Raised Spectres have 25% increased Damage" }, } }, + ["EnchantmentRaiseSpectreDamage2"] = { affix = "Enchantment Raise Spectre Damage 2", "Raised Spectres have 40% increased Damage", statOrder = { 3457 }, level = 75, group = "EnchantmentRaiseSpectreDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3645693773] = { "Raised Spectres have 40% increased Damage" }, } }, + ["EnchantmentRaiseZombieDamage1"] = { affix = "Enchantment Raise Zombie Damage 1", "Raised Zombies deal 25% increased Damage", statOrder = { 3643 }, level = 66, group = "EnchantmentRaiseZombieDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [2228518621] = { "Raised Zombies deal 25% increased Damage" }, } }, + ["EnchantmentRaiseZombieDamage2"] = { affix = "Enchantment Raise Zombie Damage 2", "Raised Zombies deal 40% increased Damage", statOrder = { 3643 }, level = 75, group = "EnchantmentRaiseZombieDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [2228518621] = { "Raised Zombies deal 40% increased Damage" }, } }, + ["EnchantmentRallyingCryBuffEffect1"] = { affix = "Enchantment Rallying Cry Buff Effect 1", "10% increased Rallying Cry Buff Effect", statOrder = { 9824 }, level = 66, group = "EnchantmentRallyingCryBuffEffectOldDivide5", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [865263728] = { "10% increased Rallying Cry Buff Effect" }, } }, + ["EnchantmentRallyingCryBuffEffect2"] = { affix = "Enchantment Rallying Cry Buff Effect 2", "15% increased Rallying Cry Buff Effect", statOrder = { 9824 }, level = 75, group = "EnchantmentRallyingCryBuffEffectOldDivide5", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [865263728] = { "15% increased Rallying Cry Buff Effect" }, } }, + ["EnchantmentReaveDamage1"] = { affix = "Enchantment Reave Damage 1", "25% increased Reave Damage", statOrder = { 3644 }, level = 66, group = "EnchantmentReaveDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [862824495] = { "25% increased Reave Damage" }, } }, + ["EnchantmentReaveDamage2"] = { affix = "Enchantment Reave Damage 2", "40% increased Reave Damage", statOrder = { 3644 }, level = 75, group = "EnchantmentReaveDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [862824495] = { "40% increased Reave Damage" }, } }, + ["EnchantmentReckoningDamage1"] = { affix = "Enchantment Reckoning Damage 1", "25% increased Reckoning Damage", statOrder = { 3709 }, level = 66, group = "EnchantmentReckoningDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [308326229] = { "25% increased Reckoning Damage" }, } }, + ["EnchantmentReckoningDamage2"] = { affix = "Enchantment Reckoning Damage 2", "40% increased Reckoning Damage", statOrder = { 3709 }, level = 75, group = "EnchantmentReckoningDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [308326229] = { "40% increased Reckoning Damage" }, } }, + ["EnchantmentRighteousFireDamage1"] = { affix = "Enchantment Righteous Fire Damage 1", "25% increased Righteous Fire Damage", statOrder = { 3674 }, level = 66, group = "EnchantmentRighteousFireDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage" }, tradeHashes = { [3359178310] = { "25% increased Righteous Fire Damage" }, } }, + ["EnchantmentRighteousFireDamage2"] = { affix = "Enchantment Righteous Fire Damage 2", "40% increased Righteous Fire Damage", statOrder = { 3674 }, level = 75, group = "EnchantmentRighteousFireDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage" }, tradeHashes = { [3359178310] = { "40% increased Righteous Fire Damage" }, } }, + ["EnchantmentRiposteDamage1"] = { affix = "Enchantment Riposte Damage 1", "25% increased Riposte Damage", statOrder = { 3721 }, level = 66, group = "EnchantmentRiposteDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4071708873] = { "25% increased Riposte Damage" }, } }, + ["EnchantmentRiposteDamage2"] = { affix = "Enchantment Riposte Damage 2", "40% increased Riposte Damage", statOrder = { 3721 }, level = 75, group = "EnchantmentRiposteDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4071708873] = { "40% increased Riposte Damage" }, } }, + ["EnchantmentScourgeArrowDamage1_"] = { affix = "Enchantment Scourge Arrow Damage 1", "Scourge Arrow deals 25% increased Damage", statOrder = { 9966 }, level = 66, group = "EnchantmentScourgeArrowDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [192534517] = { "Scourge Arrow deals 25% increased Damage" }, } }, + ["EnchantmentScourgeArrowDamage2"] = { affix = "Enchantment Scourge Arrow Damage 2", "Scourge Arrow deals 40% increased Damage", statOrder = { 9966 }, level = 75, group = "EnchantmentScourgeArrowDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [192534517] = { "Scourge Arrow deals 40% increased Damage" }, } }, + ["EnchantmentSearingBondDamage1"] = { affix = "Enchantment Searing Bond Damage 1", "25% increased Searing Bond Damage", statOrder = { 3669 }, level = 66, group = "EnchantmentSearingBondDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage" }, tradeHashes = { [2298223148] = { "25% increased Searing Bond Damage" }, } }, + ["EnchantmentSearingBondDamage2"] = { affix = "Enchantment Searing Bond Damage 2", "40% increased Searing Bond Damage", statOrder = { 3669 }, level = 75, group = "EnchantmentSearingBondDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage" }, tradeHashes = { [2298223148] = { "40% increased Searing Bond Damage" }, } }, + ["EnchantmentShieldChargeDamage1"] = { affix = "Enchantment Shield Charge Damage 1", "25% increased Shield Charge Damage", statOrder = { 3658 }, level = 66, group = "EnchantmentShieldChargeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3490662882] = { "25% increased Shield Charge Damage" }, } }, + ["EnchantmentShieldChargeDamage2"] = { affix = "Enchantment Shield Charge Damage 2", "40% increased Shield Charge Damage", statOrder = { 3658 }, level = 75, group = "EnchantmentShieldChargeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3490662882] = { "40% increased Shield Charge Damage" }, } }, + ["EnchantmentShockNovaDamage1"] = { affix = "Enchantment Shock Nova Damage 1", "25% increased Shock Nova Damage", statOrder = { 3684 }, level = 66, group = "EnchantmentShockNovaDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3948894096] = { "25% increased Shock Nova Damage" }, } }, + ["EnchantmentShockNovaDamage2_"] = { affix = "Enchantment Shock Nova Damage 2", "40% increased Shock Nova Damage", statOrder = { 3684 }, level = 75, group = "EnchantmentShockNovaDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3948894096] = { "40% increased Shock Nova Damage" }, } }, + ["EnchantmentShrapnelTrapDamage1"] = { affix = "Enchantment Shrapnel Trap Damage 1", "Explosive Trap deals 25% increased Damage", statOrder = { 10030 }, level = 66, group = "EnchantmentShrapnelTrapDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4207255685] = { "Explosive Trap deals 25% increased Damage" }, } }, + ["EnchantmentShrapnelTrapDamage2"] = { affix = "Enchantment Shrapnel Trap Damage 2", "Explosive Trap deals 40% increased Damage", statOrder = { 10030 }, level = 75, group = "EnchantmentShrapnelTrapDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4207255685] = { "Explosive Trap deals 40% increased Damage" }, } }, + ["EnchantmentSunderDamage1"] = { affix = "Enchantment Sunder Damage 1", "Sunder has 25% increased Damage", statOrder = { 3740 }, level = 66, group = "EnchantmentSunderDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4033078288] = { "Sunder has 25% increased Damage" }, } }, + ["EnchantmentSunderDamage2_"] = { affix = "Enchantment Sunder Damage 2", "Sunder has 40% increased Damage", statOrder = { 3740 }, level = 75, group = "EnchantmentSunderDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4033078288] = { "Sunder has 40% increased Damage" }, } }, + ["EnchantmentShatteringSteelDamage1_"] = { affix = "Enchantment Shattering Steel Damage 1", "Shattering Steel deals 25% increased Damage", statOrder = { 9994 }, level = 66, group = "EnchantmentShatteringSteelDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2313072099] = { "Shattering Steel deals 25% increased Damage" }, } }, + ["EnchantmentShatteringSteelDamage2_"] = { affix = "Enchantment Shattering Steel Damage 2", "Shattering Steel deals 40% increased Damage", statOrder = { 9994 }, level = 75, group = "EnchantmentShatteringSteelDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2313072099] = { "Shattering Steel deals 40% increased Damage" }, } }, + ["EnchantmentShockwaveTotemDamage1"] = { affix = "Enchantment Shockwave Totem Damage 1", "25% increased Shockwave Totem Damage", statOrder = { 3685 }, level = 66, group = "EnchantmentShockwaveTotemDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2440551805] = { "25% increased Shockwave Totem Damage" }, } }, + ["EnchantmentShockwaveTotemDamage2"] = { affix = "Enchantment Shockwave Totem Damage 2", "40% increased Shockwave Totem Damage", statOrder = { 3685 }, level = 75, group = "EnchantmentShockwaveTotemDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2440551805] = { "40% increased Shockwave Totem Damage" }, } }, + ["EnchantmentShrapnelShotDamage1"] = { affix = "Enchantment Shrapnel Shot Damage 1", "25% increased Galvanic Arrow Damage", statOrder = { 3725 }, level = 66, group = "EnchantmentShrapnelShotDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2634945088] = { "25% increased Galvanic Arrow Damage" }, } }, + ["EnchantmentShrapnelShotDamage2"] = { affix = "Enchantment Shrapnel Shot Damage 2", "40% increased Galvanic Arrow Damage", statOrder = { 3725 }, level = 75, group = "EnchantmentShrapnelShotDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2634945088] = { "40% increased Galvanic Arrow Damage" }, } }, + ["EnchantmentSiegeBallistaDamage1"] = { affix = "Enchantment Siege Ballista Damage 1", "Siege Ballista deals 25% increased Damage", statOrder = { 3738 }, level = 66, group = "EnchantmentSiegeBallistaDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [840189382] = { "Siege Ballista deals 25% increased Damage" }, } }, + ["EnchantmentSiegeBallistaDamage2"] = { affix = "Enchantment Siege Ballista Damage 2", "Siege Ballista deals 40% increased Damage", statOrder = { 3738 }, level = 75, group = "EnchantmentSiegeBallistaDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [840189382] = { "Siege Ballista deals 40% increased Damage" }, } }, + ["EnchantmentSkeletalChainsDamage1"] = { affix = "Enchantment Dark Pact Damage 1", "25% increased Dark Pact Damage", statOrder = { 3734 }, level = 66, group = "EnchantmentSkeletalChainsDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1573799461] = { "25% increased Dark Pact Damage" }, } }, + ["EnchantmentSkeletalChainsDamage2"] = { affix = "Enchantment Dark Pact Damage 2", "40% increased Dark Pact Damage", statOrder = { 3734 }, level = 75, group = "EnchantmentSkeletalChainsDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1573799461] = { "40% increased Dark Pact Damage" }, } }, + ["EnchantmentSkeletalChainsCastSpeed1"] = { affix = "Enchantment Dack Pact Cast Speed 1", "8% increased Dark Pact Cast Speed", statOrder = { 10046 }, level = 66, group = "EnchantmentSkeletalChainsCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [1549594869] = { "8% increased Dark Pact Cast Speed" }, } }, + ["EnchantmentSkeletalChainsCastSpeed2_"] = { affix = "Enchantment Dack Pact Cast Speed 2", "12% increased Dark Pact Cast Speed", statOrder = { 10046 }, level = 75, group = "EnchantmentSkeletalChainsCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [1549594869] = { "12% increased Dark Pact Cast Speed" }, } }, + ["EnchantmentSkeletalChainsAreaOfEffect1_"] = { affix = "Enchantment Dark Pact Area Of Effect 1", "16% increased Dark Pact Area of Effect", statOrder = { 10045 }, level = 66, group = "EnchantmentSkeletalChainsAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [957864706] = { "16% increased Dark Pact Area of Effect" }, } }, + ["EnchantmentSkeletalChainsAreaOfEffect2"] = { affix = "Enchantment Dark Pact Area Of Effect 2", "24% increased Dark Pact Area of Effect", statOrder = { 10045 }, level = 75, group = "EnchantmentSkeletalChainsAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [957864706] = { "24% increased Dark Pact Area of Effect" }, } }, + ["EnchantmentSmiteDamage1"] = { affix = "Enchantment Smite Damage 1", "Smite deals 25% increased Damage", statOrder = { 10083 }, level = 66, group = "EnchantmentSmiteDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3901016205] = { "Smite deals 25% increased Damage" }, } }, + ["EnchantmentSmiteDamage2_"] = { affix = "Enchantment Smite Damage 2", "Smite deals 40% increased Damage", statOrder = { 10083 }, level = 75, group = "EnchantmentSmiteDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3901016205] = { "Smite deals 40% increased Damage" }, } }, + ["EnchantmentSoulrendDamage1"] = { affix = "Enchantment Soulrend Damage 1", "Soulrend deals 25% increased Damage", statOrder = { 10096 }, level = 66, group = "EnchantmentSoulrendDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4117042530] = { "Soulrend deals 25% increased Damage" }, } }, + ["EnchantmentSoulrendDamage2"] = { affix = "Enchantment Soulrend Damage 2", "Soulrend deals 40% increased Damage", statOrder = { 10096 }, level = 75, group = "EnchantmentSoulrendDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4117042530] = { "Soulrend deals 40% increased Damage" }, } }, + ["EnchantmentSparkDamage1"] = { affix = "Enchantment Spark Damage 1", "25% increased Spark Damage", statOrder = { 3645 }, level = 66, group = "EnchantmentSparkDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1208019382] = { "25% increased Spark Damage" }, } }, + ["EnchantmentSparkDamage2"] = { affix = "Enchantment Spark Damage 2", "40% increased Spark Damage", statOrder = { 3645 }, level = 75, group = "EnchantmentSparkDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1208019382] = { "40% increased Spark Damage" }, } }, + ["EnchantmentSpectralHelixDamage1"] = { affix = "Enchantment Spectral Helix Damage 1", "25% increased Spectral Helix Damage", statOrder = { 10102 }, level = 66, group = "EnchantmentSpectralHelixDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [183131376] = { "25% increased Spectral Helix Damage" }, } }, + ["EnchantmentSpectralHelixDamage2"] = { affix = "Enchantment Spectral Helix Damage 2", "40% increased Spectral Helix Damage", statOrder = { 10102 }, level = 75, group = "EnchantmentSpectralHelixDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [183131376] = { "40% increased Spectral Helix Damage" }, } }, + ["EnchantmentSpectralShieldThrowDamage1"] = { affix = "Enchantment Spectral Shield Throw Damage 1", "25% increased Spectral Shield Throw Damage", statOrder = { 10106 }, level = 66, group = "EnchantmentSpectralShieldThrowDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1891516164] = { "25% increased Spectral Shield Throw Damage" }, } }, + ["EnchantmentSpectralShieldThrowDamage2"] = { affix = "Enchantment Spectral Shield Throw Damage 2", "40% increased Spectral Shield Throw Damage", statOrder = { 10106 }, level = 75, group = "EnchantmentSpectralShieldThrowDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1891516164] = { "40% increased Spectral Shield Throw Damage" }, } }, + ["EnchantmentSpectralThrowDamage1"] = { affix = "Enchantment Spectral Throw Damage 1", "25% increased Spectral Throw Damage", statOrder = { 3646 }, level = 66, group = "EnchantmentSpectralThrowDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3755794090] = { "25% increased Spectral Throw Damage" }, } }, + ["EnchantmentSpectralThrowDamage2"] = { affix = "Enchantment Spectral Throw Damage 2", "40% increased Spectral Throw Damage", statOrder = { 3646 }, level = 75, group = "EnchantmentSpectralThrowDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3755794090] = { "40% increased Spectral Throw Damage" }, } }, + ["EnchantmentSplitArrowDamage1"] = { affix = "Enchantment Split Arrow Damage 1", "25% increased Split Arrow Damage", statOrder = { 3647 }, level = 66, group = "EnchantmentSplitArrowDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2555469486] = { "25% increased Split Arrow Damage" }, } }, + ["EnchantmentSplitArrowDamage2"] = { affix = "Enchantment Split Arrow Damage 2", "40% increased Split Arrow Damage", statOrder = { 3647 }, level = 75, group = "EnchantmentSplitArrowDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2555469486] = { "40% increased Split Arrow Damage" }, } }, + ["EnchantmentSplittingSteelDamage1"] = { affix = "Enchantment Splitting Steel 1", "Splitting Steel deals 25% increased Damage", statOrder = { 10212 }, level = 66, group = "EnchantmentSplittingSteelDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [866725377] = { "Splitting Steel deals 25% increased Damage" }, } }, + ["EnchantmentSplittingSteelDamage2"] = { affix = "Enchantment Splitting Steel 2", "Splitting Steel deals 40% increased Damage", statOrder = { 10212 }, level = 75, group = "EnchantmentSplittingSteelDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [866725377] = { "Splitting Steel deals 40% increased Damage" }, } }, + ["EnchantmentStaticStrikeDamage1"] = { affix = "Enchantment Static Strike Damage 1", "25% increased Static Strike Damage", statOrder = { 3670 }, level = 66, group = "EnchantmentStaticStrikeDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [551375258] = { "25% increased Static Strike Damage" }, } }, + ["EnchantmentStaticStrikeDamage2"] = { affix = "Enchantment Static Strike Damage 2", "40% increased Static Strike Damage", statOrder = { 3670 }, level = 75, group = "EnchantmentStaticStrikeDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [551375258] = { "40% increased Static Strike Damage" }, } }, + ["EnchantmentStormBrandDamage1"] = { affix = "Enchantment Storm Brand Damage 1", "Storm Brand deals 25% increased Damage", statOrder = { 10244 }, level = 66, group = "EnchantmentStormBrandDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [531461618] = { "Storm Brand deals 25% increased Damage" }, } }, + ["EnchantmentStormBrandDamage2"] = { affix = "Enchantment Storm Brand Damage 2", "Storm Brand deals 40% increased Damage", statOrder = { 10244 }, level = 75, group = "EnchantmentStormBrandDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [531461618] = { "Storm Brand deals 40% increased Damage" }, } }, + ["EnchantmentStormBurstDamage1"] = { affix = "Enchantment Storm Burst Damage 1", "25% increased Storm Burst Damage", statOrder = { 3735 }, level = 66, group = "EnchantmentStormBurstDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2948719994] = { "25% increased Storm Burst Damage" }, } }, + ["EnchantmentStormBurstDamage2_"] = { affix = "Enchantment Storm Burst Damage 2", "40% increased Storm Burst Damage", statOrder = { 3735 }, level = 75, group = "EnchantmentStormBurstDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2948719994] = { "40% increased Storm Burst Damage" }, } }, + ["EnchantmentStormCallDamage1"] = { affix = "Enchantment Storm Call Damage 1", "25% increased Storm Call Damage", statOrder = { 3671 }, level = 66, group = "EnchantmentStormCallDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3359777583] = { "25% increased Storm Call Damage" }, } }, + ["EnchantmentStormCallDamage2"] = { affix = "Enchantment Storm Call Damage 2", "40% increased Storm Call Damage", statOrder = { 3671 }, level = 75, group = "EnchantmentStormCallDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3359777583] = { "40% increased Storm Call Damage" }, } }, + ["EnchantmentSumonChaosGolemDamage1"] = { affix = "Enchantment Sumon Chaos Golem Damage 1", "Chaos Golems deal 25% increased Damage", statOrder = { 3697 }, level = 66, group = "EnchantmentSumonChaosGolemDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [2505115650] = { "Chaos Golems deal 25% increased Damage" }, } }, + ["EnchantmentSumonChaosGolemDamage2"] = { affix = "Enchantment Sumon Chaos Golem Damage 2", "Chaos Golems deal 40% increased Damage", statOrder = { 3697 }, level = 75, group = "EnchantmentSumonChaosGolemDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [2505115650] = { "Chaos Golems deal 40% increased Damage" }, } }, + ["EnchantmentSummonFlameGolemDamage1"] = { affix = "Enchantment Summon Flame Golem Damage 1", "Flame Golems have 25% increased Damage", statOrder = { 3694 }, level = 66, group = "EnchantmentSummonFlameGolemDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1575282859] = { "Flame Golems have 25% increased Damage" }, } }, + ["EnchantmentSummonFlameGolemDamage2"] = { affix = "Enchantment Summon Flame Golem Damage 2", "Flame Golems have 40% increased Damage", statOrder = { 3694 }, level = 75, group = "EnchantmentSummonFlameGolemDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1575282859] = { "Flame Golems have 40% increased Damage" }, } }, + ["EnchantmentSummonIceGolemDamage1"] = { affix = "Enchantment Summon Ice Golem Damage 1", "Ice Golems deal 25% increased Damage", statOrder = { 3695 }, level = 66, group = "EnchantmentSummonIceGolemDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3816405721] = { "Ice Golems deal 25% increased Damage" }, } }, + ["EnchantmentSummonIceGolemDamage2"] = { affix = "Enchantment Summon Ice Golem Damage 2", "Ice Golems deal 40% increased Damage", statOrder = { 3695 }, level = 75, group = "EnchantmentSummonIceGolemDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3816405721] = { "Ice Golems deal 40% increased Damage" }, } }, + ["EnchantmentSummonLightningGolemDamage1__"] = { affix = "Enchantment Summon Lightning Golem Damage 1", "Lightning Golems deal 25% increased Damage", statOrder = { 3696 }, level = 66, group = "EnchantmentSummonLightningGolemDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3280107027] = { "Lightning Golems deal 25% increased Damage" }, } }, + ["EnchantmentSummonLightningGolemDamage2_"] = { affix = "Enchantment Summon Lightning Golem Damage 2", "Lightning Golems deal 40% increased Damage", statOrder = { 3696 }, level = 75, group = "EnchantmentSummonLightningGolemDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3280107027] = { "Lightning Golems deal 40% increased Damage" }, } }, + ["EnchantmentSummonRagingSpiritDamage1"] = { affix = "Enchantment Summon Raging Spirit Damage 1", "Summoned Raging Spirits deal 25% increased Damage", statOrder = { 3651 }, level = 66, group = "EnchantmentSummonRagingSpiritDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [2085855914] = { "Summoned Raging Spirits deal 25% increased Damage" }, } }, + ["EnchantmentSummonRagingSpiritDamage2_"] = { affix = "Enchantment Summon Raging Spirit Damage 2", "Summoned Raging Spirits deal 40% increased Damage", statOrder = { 3651 }, level = 75, group = "EnchantmentSummonRagingSpiritDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [2085855914] = { "Summoned Raging Spirits deal 40% increased Damage" }, } }, + ["EnchantmentSummonSkeletonsDamage1"] = { affix = "Enchantment Summon Skeletons Damage 1", "Skeletons deal 25% increased Damage", statOrder = { 3659 }, level = 66, group = "EnchantmentSummonSkeletonsDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3059357595] = { "Skeletons deal 25% increased Damage" }, } }, + ["EnchantmentSummonSkeletonsDamage2"] = { affix = "Enchantment Summon Skeletons Damage 2", "Skeletons deal 40% increased Damage", statOrder = { 3659 }, level = 75, group = "EnchantmentSummonSkeletonsDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3059357595] = { "Skeletons deal 40% increased Damage" }, } }, + ["EnchantmentSummonStoneGolemDamage1"] = { affix = "Enchantment Summon Stone Golem Damage 1", "Stone Golems deal 25% increased Damage", statOrder = { 3693 }, level = 66, group = "EnchantmentSummonStoneGolemDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1171483499] = { "Stone Golems deal 25% increased Damage" }, } }, + ["EnchantmentSummonStoneGolemDamage2"] = { affix = "Enchantment Summon Stone Golem Damage 2", "Stone Golems deal 40% increased Damage", statOrder = { 3693 }, level = 75, group = "EnchantmentSummonStoneGolemDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1171483499] = { "Stone Golems deal 40% increased Damage" }, } }, + ["EnchantmentSweepDamage1"] = { affix = "Enchantment Sweep Damage 1", "25% increased Holy Sweep Damage", statOrder = { 3672 }, level = 66, group = "EnchantmentSweepDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [253870897] = { "25% increased Holy Sweep Damage" }, } }, + ["EnchantmentSweepDamage2__"] = { affix = "Enchantment Sweep Damage 2", "40% increased Holy Sweep Damage", statOrder = { 3672 }, level = 75, group = "EnchantmentSweepDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [253870897] = { "40% increased Holy Sweep Damage" }, } }, + ["EnchantmentTectonicSlamDamage1"] = { affix = "Enchantment Tectonic Slam Damage 1", "Tectonic Slam deals 25% increased Damage", statOrder = { 10362 }, level = 66, group = "EnchantmentTectonicSlamDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3999206457] = { "Tectonic Slam deals 25% increased Damage" }, } }, + ["EnchantmentTectonicSlamDamage2"] = { affix = "Enchantment Tectonic Slam Damage 2", "Tectonic Slam deals 40% increased Damage", statOrder = { 10362 }, level = 75, group = "EnchantmentTectonicSlamDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3999206457] = { "Tectonic Slam deals 40% increased Damage" }, } }, + ["EnchantmentTempestShieldDamage1__"] = { affix = "Enchantment Tempest Shield Damage 1", "25% increased Tempest Shield Damage", statOrder = { 3717 }, level = 66, group = "EnchantmentTempestShieldDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2121581717] = { "25% increased Tempest Shield Damage" }, } }, + ["EnchantmentTempestShieldDamage2"] = { affix = "Enchantment Tempest Shield Damage 2", "40% increased Tempest Shield Damage", statOrder = { 3717 }, level = 75, group = "EnchantmentTempestShieldDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2121581717] = { "40% increased Tempest Shield Damage" }, } }, + ["EnchantmentTornadoDamage1__"] = { affix = "Enchantment Tornado Damage 1", "25% increased Tornado Damage", statOrder = { 10385 }, level = 66, group = "EnchantmentTornadoDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2681941384] = { "25% increased Tornado Damage" }, } }, + ["EnchantmentTornadoDamage2"] = { affix = "Enchantment Tornado Damage 2", "40% increased Tornado Damage", statOrder = { 10385 }, level = 75, group = "EnchantmentTornadoDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2681941384] = { "40% increased Tornado Damage" }, } }, + ["EnchantmentTornadoShotDamage1"] = { affix = "Enchantment Tornado Shot Damage 1", "25% increased Tornado Shot Damage", statOrder = { 3677 }, level = 66, group = "EnchantmentTornadoShotDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3555919553] = { "25% increased Tornado Shot Damage" }, } }, + ["EnchantmentTornadoShotDamage2"] = { affix = "Enchantment Tornado Shot Damage 2", "40% increased Tornado Shot Damage", statOrder = { 3677 }, level = 75, group = "EnchantmentTornadoShotDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3555919553] = { "40% increased Tornado Shot Damage" }, } }, + ["EnchantmentToxicRainDamage1"] = { affix = "Enchantment Toxic Rain Damage 1", "Toxic Rain deals 25% increased Damage", statOrder = { 10410 }, level = 66, group = "EnchantmentToxicRainDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [865511246] = { "Toxic Rain deals 25% increased Damage" }, } }, + ["EnchantmentToxicRainDamage2"] = { affix = "Enchantment Toxic Rain Damage 2", "Toxic Rain deals 40% increased Damage", statOrder = { 10410 }, level = 75, group = "EnchantmentToxicRainDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [865511246] = { "Toxic Rain deals 40% increased Damage" }, } }, + ["EnchantmentVengeanceDamage1"] = { affix = "Enchantment Vengeance Damage 1", "25% increased Vengeance Damage", statOrder = { 3722 }, level = 66, group = "EnchantmentVengeanceDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1972101281] = { "25% increased Vengeance Damage" }, } }, + ["EnchantmentVengeanceDamage2"] = { affix = "Enchantment Vengeance Damage 2", "40% increased Vengeance Damage", statOrder = { 3722 }, level = 75, group = "EnchantmentVengeanceDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1972101281] = { "40% increased Vengeance Damage" }, } }, + ["EnchantmentVigilantStrikeDamage1"] = { affix = "Enchantment Vigilant Strike Damage 1", "25% increased Vigilant Strike Damage", statOrder = { 3710 }, level = 66, group = "EnchantmentVigilantStrikeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2287764959] = { "25% increased Vigilant Strike Damage" }, } }, + ["EnchantmentVigilantStrikeDamage2"] = { affix = "Enchantment Vigilant Strike Damage 2", "40% increased Vigilant Strike Damage", statOrder = { 3710 }, level = 75, group = "EnchantmentVigilantStrikeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2287764959] = { "40% increased Vigilant Strike Damage" }, } }, + ["EnchantmentViperStrikeDamage1"] = { affix = "Enchantment Viper Strike Damage 1", "25% increased Viper Strike Damage", statOrder = { 3652 }, level = 66, group = "EnchantmentViperStrikeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2585271359] = { "25% increased Viper Strike Damage" }, } }, + ["EnchantmentViperStrikeDamage2"] = { affix = "Enchantment Viper Strike Damage 2", "40% increased Viper Strike Damage", statOrder = { 3652 }, level = 75, group = "EnchantmentViperStrikeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2585271359] = { "40% increased Viper Strike Damage" }, } }, + ["EnchantmentVoltaxicBurstDamage1__"] = { affix = "Enchantment Voltaxic Burst Damage 1", "25% increased Voltaxic Burst Damage", statOrder = { 10548 }, level = 66, group = "EnchantmentVoltaxicBurstDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2913890852] = { "25% increased Voltaxic Burst Damage" }, } }, + ["EnchantmentVoltaxicBurstDamage2"] = { affix = "Enchantment Voltaxic Burst Damage 2", "40% increased Voltaxic Burst Damage", statOrder = { 10548 }, level = 75, group = "EnchantmentVoltaxicBurstDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2913890852] = { "40% increased Voltaxic Burst Damage" }, } }, + ["EnchantmentVortexDamage1"] = { affix = "Enchantment Vortex Damage 1", "25% increased Vortex Damage", statOrder = { 4139 }, level = 66, group = "EnchantmentVortexDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [200942664] = { "25% increased Vortex Damage" }, } }, + ["EnchantmentVortexDamage2"] = { affix = "Enchantment Vortex Damage 2", "40% increased Vortex Damage", statOrder = { 4139 }, level = 75, group = "EnchantmentVortexDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [200942664] = { "40% increased Vortex Damage" }, } }, + ["EnchantmentWaterSphereDamage1"] = { affix = "Enchantment Hydrosphere Damage 1", "Hydrosphere deals 25% increased Damage", statOrder = { 10586 }, level = 66, group = "EnchantmentWaterSphereDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1040582501] = { "Hydrosphere deals 25% increased Damage" }, } }, + ["EnchantmentWaterSphereDamage2"] = { affix = "Enchantment Hydrosphere Damage 2", "Hydrosphere deals 40% increased Damage", statOrder = { 10586 }, level = 75, group = "EnchantmentWaterSphereDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1040582501] = { "Hydrosphere deals 40% increased Damage" }, } }, + ["EnchantmentWaveOfConvictionDamage1"] = { affix = "Enchantment Wave Of Conviction Damage 1", "Wave of Conviction deals 25% increased Damage", statOrder = { 9762 }, level = 66, group = "EnchantmentWaveOfConvictionDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [309198891] = { "Wave of Conviction deals 25% increased Damage" }, } }, + ["EnchantmentWaveOfConvictionDamage2"] = { affix = "Enchantment Wave Of Conviction Damage 2", "Wave of Conviction deals 40% increased Damage", statOrder = { 9762 }, level = 75, group = "EnchantmentWaveOfConvictionDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [309198891] = { "Wave of Conviction deals 40% increased Damage" }, } }, + ["EnchantmentWhirlingBladesDamage1"] = { affix = "Enchantment Whirling Blades Damage 1", "25% increased Whirling Blades Damage", statOrder = { 3711 }, level = 66, group = "EnchantmentWhirlingBladesDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3723124286] = { "25% increased Whirling Blades Damage" }, } }, + ["EnchantmentWhirlingBladesDamage2"] = { affix = "Enchantment Whirling Blades Damage 2", "40% increased Whirling Blades Damage", statOrder = { 3711 }, level = 75, group = "EnchantmentWhirlingBladesDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3723124286] = { "40% increased Whirling Blades Damage" }, } }, + ["EnchantmentWildStrikeDamage1"] = { affix = "Enchantment Wild Strike Damage 1", "25% increased Wild Strike Damage", statOrder = { 3686 }, level = 66, group = "EnchantmentWildStrikeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1666713639] = { "25% increased Wild Strike Damage" }, } }, + ["EnchantmentWildStrikeDamage2"] = { affix = "Enchantment Wild Strike Damage 2", "40% increased Wild Strike Damage", statOrder = { 3686 }, level = 75, group = "EnchantmentWildStrikeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1666713639] = { "40% increased Wild Strike Damage" }, } }, + ["EnchantmentWinterOrbDamage1"] = { affix = "Enchantment Winter Orb Damage 1", "Winter Orb deals 25% increased Damage", statOrder = { 6681 }, level = 66, group = "EnchantmentWinterOrbDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2200744772] = { "Winter Orb deals 25% increased Damage" }, } }, + ["EnchantmentWinterOrbDamage2"] = { affix = "Enchantment Winter Orb Damage 2", "Winter Orb deals 40% increased Damage", statOrder = { 6681 }, level = 75, group = "EnchantmentWinterOrbDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2200744772] = { "Winter Orb deals 40% increased Damage" }, } }, + ["EnchantmentAbsolutionDuration1_"] = { affix = "Enchantment Absolution Duration 1", "20% increased Sentinel of Absolution Duration", statOrder = { 4505 }, level = 66, group = "EnchantmentAbsolutionDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "minion" }, tradeHashes = { [1778800422] = { "20% increased Sentinel of Absolution Duration" }, } }, + ["EnchantmentAbsolutionDuration2_"] = { affix = "Enchantment Absolution Duration 2", "30% increased Sentinel of Absolution Duration", statOrder = { 4505 }, level = 75, group = "EnchantmentAbsolutionDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "minion" }, tradeHashes = { [1778800422] = { "30% increased Sentinel of Absolution Duration" }, } }, + ["EnchantmentAbsolutionCastSpeed1"] = { affix = "Enchantment Absolution Cast Speed 1", "8% increased Absolution Cast Speed", statOrder = { 4504 }, level = 66, group = "EnchantmentAbsolutionCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "minion" }, tradeHashes = { [2558170600] = { "8% increased Absolution Cast Speed" }, } }, + ["EnchantmentAbsolutionCastSpeed2_"] = { affix = "Enchantment Absolution Cast Speed 2", "12% increased Absolution Cast Speed", statOrder = { 4504 }, level = 75, group = "EnchantmentAbsolutionCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "minion" }, tradeHashes = { [2558170600] = { "12% increased Absolution Cast Speed" }, } }, + ["EnchantmentAbsolutionMinionAreaOfEffect1_"] = { affix = "Enchantment Absolution Minion Area of Effect 1", "Summoned Sentinels of Absolution have 16% increased Area of Effect", statOrder = { 4506 }, level = 66, group = "EnchantmentAbsolutionMinionAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "minion" }, tradeHashes = { [771292654] = { "Summoned Sentinels of Absolution have 16% increased Area of Effect" }, } }, + ["EnchantmentAbsolutionMinionAreaOfEffect2"] = { affix = "Enchantment Absolution Minion Area of Effect 2", "Summoned Sentinels of Absolution have 24% increased Area of Effect", statOrder = { 4506 }, level = 75, group = "EnchantmentAbsolutionMinionAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "minion" }, tradeHashes = { [771292654] = { "Summoned Sentinels of Absolution have 24% increased Area of Effect" }, } }, + ["EnchantmentAbyssalCryDuration1"] = { affix = "Enchantment Infernal Cry Cooldown Speed 1", "Infernal Cry has 24% increased Cooldown Recovery Rate", statOrder = { 7269 }, level = 66, group = "EnchantmentInfernalCryCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2702698464] = { "Infernal Cry has 24% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentAbyssalCryDuration2"] = { affix = "Enchantment Infernal Cry Cooldown Speed 2", "Infernal Cry has 36% increased Cooldown Recovery Rate", statOrder = { 7269 }, level = 75, group = "EnchantmentInfernalCryCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2702698464] = { "Infernal Cry has 36% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentAnimateGuardianElementalResistances1"] = { affix = "Enchantment Animate Guardian Elemental Resistances 1", "+24% to Animated Guardian Elemental Resistances", statOrder = { 3989 }, level = 66, group = "EnchantmentAnimateGuardianElementalResistances", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [2094281311] = { "+24% to Animated Guardian Elemental Resistances" }, } }, + ["EnchantmentAnimateGuardianElementalResistances2__"] = { affix = "Enchantment Animate Guardian Elemental Resistances 2", "+36% to Animated Guardian Elemental Resistances", statOrder = { 3989 }, level = 75, group = "EnchantmentAnimateGuardianElementalResistances", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [2094281311] = { "+36% to Animated Guardian Elemental Resistances" }, } }, + ["EnchantmentAnimateWeaponDuration1_"] = { affix = "Enchantment Animate Weapon Duration 1", "20% increased Animate Weapon Duration", statOrder = { 2796 }, level = 66, group = "EnchantmentAnimateWeaponDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [3338074370] = { "20% increased Animate Weapon Duration" }, } }, + ["EnchantmentAnimateWeaponDuration2_"] = { affix = "Enchantment Animate Weapon Duration 2", "30% increased Animate Weapon Duration", statOrder = { 2796 }, level = 75, group = "EnchantmentAnimateWeaponDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [3338074370] = { "30% increased Animate Weapon Duration" }, } }, + ["EnchantmentAnimateWeaponChanceToCreateAdditionalCopy1"] = { affix = "Enchantment Animate Weapon Chance To Create Additional Copy 1", "16% chance to create an additional Animate Weapon copy", statOrder = { 3995 }, level = 66, group = "EnchantmentAnimateWeaponChanceToCreateAdditionalCopy", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [3711386843] = { "16% chance to create an additional Animate Weapon copy" }, } }, + ["EnchantmentAnimateWeaponChanceToCreateAdditionalCopy2"] = { affix = "Enchantment Animate Weapon Chance To Create Additional Copy 2", "24% chance to create an additional Animate Weapon copy", statOrder = { 3995 }, level = 75, group = "EnchantmentAnimateWeaponChanceToCreateAdditionalCopy", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [3711386843] = { "24% chance to create an additional Animate Weapon copy" }, } }, + ["EnchantmentArcNumOfAdditionalProjectilesInChain1"] = { affix = "", "Arc Chains an additional time", statOrder = { 3952 }, level = 66, group = "EnchantmentArcNumOfAdditionalProjectilesInChain", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster" }, tradeHashes = { [2461552986] = { "Arc Chains an additional time" }, } }, + ["EnchantmentArcNumOfAdditionalProjectilesInChain2"] = { affix = "Enchantment Arc Num Of Additional Projectiles In Chain 1", "Arc Chains an additional time", statOrder = { 3952 }, level = 75, group = "EnchantmentArcNumOfAdditionalProjectilesInChain", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [2461552986] = { "Arc Chains an additional time" }, } }, + ["EnchantmentArcShockChance1"] = { affix = "Enchantment Arc Shock Chance 1", "Arc has +20% chance to Shock", statOrder = { 3967 }, level = 66, group = "EnchantmentArcShockChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "lightning", "caster", "ailment" }, tradeHashes = { [195463427] = { "Arc has +20% chance to Shock" }, } }, + ["EnchantmentArcShockChance2"] = { affix = "Enchantment Arc Shock Chance 2", "Arc has +30% chance to Shock", statOrder = { 3967 }, level = 75, group = "EnchantmentArcShockChance", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "elemental", "lightning", "caster", "ailment" }, tradeHashes = { [195463427] = { "Arc has +30% chance to Shock" }, } }, + ["EnchantmentArcDamagePerChain1__"] = { affix = "Enchantment Arc Damage Per Chain 1", "Arc deals 8% increased Damage for each time it has Chained", statOrder = { 4701 }, level = 66, group = "EnchantmentArcDamagePerChain", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3998182656] = { "Arc deals 8% increased Damage for each time it has Chained" }, } }, + ["EnchantmentArcDamagePerChain2"] = { affix = "Enchantment Arc Damage Per Chain 2", "Arc deals 12% increased Damage for each time it has Chained", statOrder = { 4701 }, level = 75, group = "EnchantmentArcDamagePerChain", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3998182656] = { "Arc deals 12% increased Damage for each time it has Chained" }, } }, + ["EnchantmentArcaneCloakAdditionalManaSpent1"] = { affix = "Enchantment Arcane Cloak Additional Mana Spent 1", "Arcane Cloak Spends an additional 10% of current Mana", statOrder = { 4702 }, level = 66, group = "EnchantmentArcaneCloakAdditionalManaSpent", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [122106412] = { "Arcane Cloak Spends an additional 10% of current Mana" }, } }, + ["EnchantmentArcaneCloakAdditionalManaSpent2"] = { affix = "Enchantment Arcane Cloak Additional Mana Spent 2", "Arcane Cloak Spends an additional 15% of current Mana", statOrder = { 4702 }, level = 75, group = "EnchantmentArcaneCloakAdditionalManaSpent", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [122106412] = { "Arcane Cloak Spends an additional 15% of current Mana" }, } }, + ["EnchantmentArcaneCloakGrantsLifeRegeneration1"] = { affix = "Enchantment Arcane Cloak Grants Life Regeneration 1", "Arcane Cloak grants Life Regeneration equal to 15% of Mana Spent per Second", statOrder = { 4703 }, level = 75, group = "EnchantmentArcaneCloakGrantsLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3606492882] = { "Arcane Cloak grants Life Regeneration equal to 15% of Mana Spent per Second" }, } }, + ["EnchantmentBaneAreaOfEffect1_"] = { affix = "Enchantment Bane Area Of Effect 1", "Bane has 16% increased Area of Effect", statOrder = { 6129 }, level = 66, group = "EnchantmentBaneAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [4224588066] = { "Bane has 16% increased Area of Effect" }, } }, + ["EnchantmentBaneAreaOfEffect2"] = { affix = "Enchantment Bane Area Of Effect 2", "Bane has 24% increased Area of Effect", statOrder = { 6129 }, level = 75, group = "EnchantmentBaneAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [4224588066] = { "Bane has 24% increased Area of Effect" }, } }, + ["EnchantmentBaneLinkedCurseEffect1_"] = { affix = "Enchantment Bane Linked Curse Effect 1", "10% increased Effect of Curses applied by Bane", statOrder = { 6131 }, level = 66, group = "EnchantmentBaneLinkedCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2843908086] = { "10% increased Effect of Curses applied by Bane" }, } }, + ["EnchantmentBaneLinkedCurseEffect2_"] = { affix = "Enchantment Bane Linked Curse Effect 2", "10% increased Effect of Curses applied by Bane", statOrder = { 6131 }, level = 75, group = "EnchantmentBaneLinkedCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2843908086] = { "10% increased Effect of Curses applied by Bane" }, } }, + ["ArmageddonBrandRepeatFrequency1"] = { affix = "Armageddon Brand Repeat Frequency 1", "Armageddon Brand has 8% increased Activation Frequency", statOrder = { 4747 }, level = 66, group = "ArmageddonBrandRepeatFrequency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2512194486] = { "Armageddon Brand has 8% increased Activation Frequency" }, } }, + ["ArmageddonBrandRepeatFrequency2"] = { affix = "Armageddon Brand Repeat Frequency 2", "Armageddon Brand has 12% increased Activation Frequency", statOrder = { 4747 }, level = 75, group = "ArmageddonBrandRepeatFrequency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2512194486] = { "Armageddon Brand has 12% increased Activation Frequency" }, } }, + ["ArmageddonBrandAttachedTargetFirePenetration1"] = { affix = "Armageddon Brand Attached Target Fire Penetration 1", "Armageddon Brand Damage Penetrates 8% of Branded Enemy's Fire Resistance", statOrder = { 4745 }, level = 66, group = "ArmageddonBrandAttachedTargetFirePenetration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1715805151] = { "Armageddon Brand Damage Penetrates 8% of Branded Enemy's Fire Resistance" }, } }, + ["ArmageddonBrandAttachedTargetFirePenetration2"] = { affix = "Armageddon Brand Attached Target Fire Penetration 2", "Armageddon Brand Damage Penetrates 12% of Branded Enemy's Fire Resistance", statOrder = { 4745 }, level = 75, group = "ArmageddonBrandAttachedTargetFirePenetration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1715805151] = { "Armageddon Brand Damage Penetrates 12% of Branded Enemy's Fire Resistance" }, } }, + ["EnchantmentAncestorTotemSlamRadius1"] = { affix = "Enchantment Ancestor Warchief Area Of Effect 1", "16% increased Ancestral Warchief Totem Area of Effect", statOrder = { 4145 }, level = 66, group = "EnchantmentAncestorTotemSlamRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3320271130] = { "16% increased Ancestral Warchief Totem Area of Effect" }, } }, + ["EnchantmentAncestorTotemSlamRadius2"] = { affix = "Enchantment Ancestor Warchief Area Of Effect 2", "24% increased Ancestral Warchief Totem Area of Effect", statOrder = { 4145 }, level = 75, group = "EnchantmentAncestorTotemSlamRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3320271130] = { "24% increased Ancestral Warchief Totem Area of Effect" }, } }, + ["EnchantmentAncestorTotemSlamMeleeDamage1"] = { affix = "Enchantment Ancestor Warchief Melee Damage 1", "Ancestral Warchief Totem grants 20% increased Melee Damage while Active", statOrder = { 3804 }, level = 66, group = "EnchantmentAncestorTotemSlamMeleeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3543257184] = { "Ancestral Warchief Totem grants 20% increased Melee Damage while Active" }, } }, + ["EnchantmentAncestorTotemSlamMeleeDamage2"] = { affix = "Enchantment Ancestor Warchief Melee Damage 2", "Ancestral Warchief Totem grants 30% increased Melee Damage while Active", statOrder = { 3804 }, level = 75, group = "EnchantmentAncestorTotemSlamMeleeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3543257184] = { "Ancestral Warchief Totem grants 30% increased Melee Damage while Active" }, } }, + ["EnchantmentAncestorTotemSlashRadius1_"] = { affix = "", "8% increased Ancestral Blademaster Totem Area of Effect", statOrder = { 4144 }, level = 66, group = "EnchantmentAncestorTotemSlashRadius", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3171507121] = { "8% increased Ancestral Blademaster Totem Area of Effect" }, } }, + ["EnchantmentAncestorTotemSlashRadius2"] = { affix = "", "12% increased Ancestral Blademaster Totem Area of Effect", statOrder = { 4144 }, level = 75, group = "EnchantmentAncestorTotemSlashRadius", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3171507121] = { "12% increased Ancestral Blademaster Totem Area of Effect" }, } }, + ["EnchantmentAncestorTotemSlashAddedFireDamage1"] = { affix = "", "Ancestral Blademaster Totem grants 3% of Physical Damage as Extra Fire Damage while Active", statOrder = { 3803 }, level = 66, group = "EnchantmentAncestorTotemSlashAddedFireDamage", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [3682503175] = { "Ancestral Blademaster Totem grants 3% of Physical Damage as Extra Fire Damage while Active" }, } }, + ["EnchantmentAncestorTotemSlashAddedFireDamage2"] = { affix = "", "Ancestral Blademaster Totem grants 5% of Physical Damage as Extra Fire Damage while Active", statOrder = { 3803 }, level = 75, group = "EnchantmentAncestorTotemSlashAddedFireDamage", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [3682503175] = { "Ancestral Blademaster Totem grants 5% of Physical Damage as Extra Fire Damage while Active" }, } }, + ["EnchantmentAncestralCryExertedDamage1"] = { affix = "Enchantment Ancestral Cry Exerted Attack Damage 1", "Attacks Exerted by Ancestral Cry deal 35% increased Damage", statOrder = { 4670 }, level = 66, group = "EnchantmentAncestralCryExertedDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal 35% increased Damage" }, } }, + ["EnchantmentAncestralCryExertedDamage2"] = { affix = "Enchantment Ancestral Cry Exerted Attack Damage 2", "Attacks Exerted by Ancestral Cry deal 50% increased Damage", statOrder = { 4670 }, level = 75, group = "EnchantmentAncestralCryExertedDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal 50% increased Damage" }, } }, + ["EnchantmentAncestralCryMinimumPower1__"] = { affix = "Enchantment Ancestral Cry Minimum Power 1", "Ancestral Cry has a minimum of 10 Power", statOrder = { 4671 }, level = 75, group = "EnchantmentAncestralCryMinimumPower", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [988554168] = { "Ancestral Cry has a minimum of 10 Power" }, } }, + ["EnchantmentArcticArmourBuffEffect1"] = { affix = "Enchantment Arctic Armour Buff Effect 1", "24% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 66, group = "EnchantmentArcticArmourBuffEffect", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "24% increased Arctic Armour Buff Effect" }, } }, + ["EnchantmentArcticArmourBuffEffect2"] = { affix = "Enchantment Arctic Armour Buff Effect 2", "36% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "EnchantmentArcticArmourBuffEffect", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "36% increased Arctic Armour Buff Effect" }, } }, + ["EnchantmentArcticArmourManaReservation1"] = { affix = "Enchantment Arctic Armour Mana Reservation 1", "Arctic Armour has 40% increased Mana Reservation Efficiency", statOrder = { 4714 }, level = 66, group = "EnchantmentArcticArmourManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2605040931] = { "Arctic Armour has 40% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentArcticArmourManaReservation2"] = { affix = "Enchantment Arctic Armour Mana Reservation 2", "Arctic Armour has 60% increased Mana Reservation Efficiency", statOrder = { 4714 }, level = 75, group = "EnchantmentArcticArmourManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2605040931] = { "Arctic Armour has 60% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentArcticArmourManaReservationEfficiency1_"] = { affix = "Enchantment Arctic Armour Mana Reservation 1", "Arctic Armour has 50% increased Mana Reservation Efficiency", statOrder = { 4715 }, level = 66, group = "EnchantmentArcticArmourManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2351239732] = { "Arctic Armour has 50% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentArcticArmourManaReservationEfficiency2"] = { affix = "Enchantment Arctic Armour Mana Reservation 2", "Arctic Armour has 75% increased Mana Reservation Efficiency", statOrder = { 4715 }, level = 75, group = "EnchantmentArcticArmourManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2351239732] = { "Arctic Armour has 75% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentArcticBreathDuration1"] = { affix = "Enchantment Creeping Frost Duration 1", "24% increased Creeping Frost Duration", statOrder = { 3932 }, level = 66, group = "EnchantmentArcticBreathDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3804575865] = { "24% increased Creeping Frost Duration" }, } }, + ["EnchantmentArcticBreathDuration2"] = { affix = "Enchantment Creeping Frost Duration 2", "36% increased Creeping Frost Duration", statOrder = { 3932 }, level = 75, group = "EnchantmentArcticBreathDuration", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [3804575865] = { "36% increased Creeping Frost Duration" }, } }, + ["EnchantmentArcticBreathRadius1"] = { affix = "Enchantment Creeping Frost Area Of Effect 1", "16% increased Creeping Frost Area of Effect", statOrder = { 3823 }, level = 66, group = "EnchantmentArcticBreathRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3816022821] = { "16% increased Creeping Frost Area of Effect" }, } }, + ["EnchantmentArcticBreathRadius2"] = { affix = "Enchantment Creeping Frost Area Of Effect 2", "24% increased Creeping Frost Area of Effect", statOrder = { 3823 }, level = 75, group = "EnchantmentArcticBreathRadius", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [3816022821] = { "24% increased Creeping Frost Area of Effect" }, } }, + ["EnchantmentArcticBreathChillingAreaMovementVelocity1"] = { affix = "Enchantment Creeping Frost Chilling Area Movement Velocity 1", "Creeping Frost's Chilling Area has 38% increased Movement Speed", statOrder = { 4717 }, level = 75, group = "EnchantmentArcticBreathChillingAreaMovementVelocity", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2781179464] = { "Creeping Frost's Chilling Area has 38% increased Movement Speed" }, } }, + ["EnchantmentAssassinsMarkCurseEffect1"] = { affix = "Enchantment Assassins Mark Curse Effect 1", "20% increased Assassin's Mark Curse Effect", statOrder = { 4009 }, level = 66, group = "EnchantmentAssassinsMarkCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1961975107] = { "20% increased Assassin's Mark Curse Effect" }, } }, + ["EnchantmentAssassinsMarkCurseEffect2"] = { affix = "Enchantment Assassins Mark Curse Effect 2", "30% increased Assassin's Mark Curse Effect", statOrder = { 4009 }, level = 75, group = "EnchantmentAssassinsMarkCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1961975107] = { "30% increased Assassin's Mark Curse Effect" }, } }, + ["EnchantmentAssassinsMarkDuration1"] = { affix = "Enchantment Assassins Mark Duration 1", "30% increased Assassin's Mark Duration", statOrder = { 3918 }, level = 66, group = "EnchantmentAssassinsMarkDuration", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1609523492] = { "30% increased Assassin's Mark Duration" }, } }, + ["EnchantmentAssassinsMarkDuration2"] = { affix = "Enchantment Assassins Mark Duration 2", "45% increased Assassin's Mark Duration", statOrder = { 3918 }, level = 75, group = "EnchantmentAssassinsMarkDuration", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1609523492] = { "45% increased Assassin's Mark Duration" }, } }, + ["EnchantmentBallLightningProjectileSpeed1"] = { affix = "", "30% reduced Ball Lightning Projectile Speed", statOrder = { 3891 }, level = 66, group = "EnchantmentBallLightningProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [1243906675] = { "30% reduced Ball Lightning Projectile Speed" }, } }, + ["EnchantmentBallLightningProjectileSpeed2"] = { affix = "", "45% reduced Ball Lightning Projectile Speed", statOrder = { 3891 }, level = 75, group = "EnchantmentBallLightningProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [1243906675] = { "45% reduced Ball Lightning Projectile Speed" }, } }, + ["EnchantmentBallLightningRadius1_"] = { affix = "Enchantment Ball Lightning Area Of Effect 1", "16% increased Ball Lightning Area of Effect", statOrder = { 3824 }, level = 66, group = "EnchantmentBallLightningRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [788307702] = { "16% increased Ball Lightning Area of Effect" }, } }, + ["EnchantmentBallLightningRadius2"] = { affix = "Enchantment Ball Lightning Area Of Effect 2", "24% increased Ball Lightning Area of Effect", statOrder = { 3824 }, level = 75, group = "EnchantmentBallLightningRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [788307702] = { "24% increased Ball Lightning Area of Effect" }, } }, + ["EnchantmentBallLightningAdditionalProjectiles1"] = { affix = "Enchantment Ball Lightning Additional Projectiles 1", "Ball Lightning fires an additional Projectile", statOrder = { 4961 }, level = 75, group = "EnchantmentBallLightningAdditionalProjectiles", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3420683028] = { "Ball Lightning fires an additional Projectile" }, } }, + ["EnchantmentBarrageAttackSpeed1"] = { affix = "Enchantment Barrage Attack Speed 1", "10% increased Barrage Attack Speed", statOrder = { 3860 }, level = 66, group = "EnchantmentBarrageAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2523298357] = { "10% increased Barrage Attack Speed" }, } }, + ["EnchantmentBarrageAttackSpeed2"] = { affix = "Enchantment Barrage Attack Speed 2", "15% increased Barrage Attack Speed", statOrder = { 3860 }, level = 75, group = "EnchantmentBarrageAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2523298357] = { "15% increased Barrage Attack Speed" }, } }, + ["EnchantmentBarrageNumOfAdditionalProjectiles1"] = { affix = "", "Barrage fires an additional Projectile", statOrder = { 3949 }, level = 66, group = "EnchantmentBarrageNumOfAdditionalProjectiles", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3009270704] = { "Barrage fires an additional Projectile" }, } }, + ["EnchantmentBarrageNumOfAdditionalProjectiles2_"] = { affix = "Enchantment Barrage Num Of Additional Projectiles 1", "Barrage fires an additional Projectile", statOrder = { 3949 }, level = 75, group = "EnchantmentBarrageNumOfAdditionalProjectiles", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3009270704] = { "Barrage fires an additional Projectile" }, } }, + ["EnchantmentBattlemagesCryBuffEffect1__"] = { affix = "Enchantment Battlemage's Cry Buff Effect 1", "10% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 66, group = "EnchantmentBattlemagesCryBuffEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "10% increased Battlemage's Cry Buff Effect" }, } }, + ["EnchantmentBattlemagesCryBuffEffect2"] = { affix = "Enchantment Battlemage's Cry Buff Effect 2", "15% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "EnchantmentBattlemagesCryBuffEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "15% increased Battlemage's Cry Buff Effect" }, } }, + ["EnchantmentBattlemagesCryAdditionalExert"] = { affix = "Enchantment Battlemage's Cry Additional Exert", "Battlemage's Cry Exerts 1 additional Attack", statOrder = { 5060 }, level = 75, group = "EnchantmentBattlemagesCryAdditionalExert", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [931713173] = { "Battlemage's Cry Exerts 1 additional Attack" }, } }, + ["EnchantmentBearTrapCooldownSpeed1"] = { affix = "Enchantment Bear Trap Cooldown Speed 1", "Bear Trap has 10% increased Cooldown Recovery Rate", statOrder = { 3878 }, level = 66, group = "EnchantmentBearTrapCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [918308703] = { "Bear Trap has 10% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentBearTrapCooldownSpeed2"] = { affix = "Enchantment Bear Trap Cooldown Speed 2", "Bear Trap has 15% increased Cooldown Recovery Rate", statOrder = { 3878 }, level = 75, group = "EnchantmentBearTrapCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [918308703] = { "Bear Trap has 15% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentBearTrapDamageTaken1"] = { affix = "Enchantment Bear Trap Damage Taken 1", "Enemies affected by Bear Trap take 5% increased Damage from Trap or Mine Hits", statOrder = { 5064 }, level = 66, group = "EnchantmentBearTrapDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage" }, tradeHashes = { [1678345858] = { "Enemies affected by Bear Trap take 5% increased Damage from Trap or Mine Hits" }, } }, + ["EnchantmentBearTrapDamageTaken2"] = { affix = "Enchantment Bear Trap Damage Taken 2", "Enemies affected by Bear Trap take 10% increased Damage from Trap or Mine Hits", statOrder = { 5064 }, level = 75, group = "EnchantmentBearTrapDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage" }, tradeHashes = { [1678345858] = { "Enemies affected by Bear Trap take 10% increased Damage from Trap or Mine Hits" }, } }, + ["EnchantmentBladefallCriticalStrikeChance1"] = { affix = "Enchantment Bladefall Critical Strike Chance 1", "60% increased Bladefall Critical Strike Chance", statOrder = { 3944 }, level = 66, group = "EnchantmentBladefallCriticalStrikeChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [2833482311] = { "60% increased Bladefall Critical Strike Chance" }, } }, + ["EnchantmentBladefallCriticalStrikeChance2"] = { affix = "Enchantment Bladefall Critical Strike Chance 2", "90% increased Bladefall Critical Strike Chance", statOrder = { 3944 }, level = 75, group = "EnchantmentBladefallCriticalStrikeChance", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [2833482311] = { "90% increased Bladefall Critical Strike Chance" }, } }, + ["EnchantmentBladefallRadius1"] = { affix = "Enchantment Bladefall Area Of Effect 1", "16% increased Bladefall Area of Effect", statOrder = { 3842 }, level = 66, group = "EnchantmentBladefallRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2413715772] = { "16% increased Bladefall Area of Effect" }, } }, + ["EnchantmentBladefallRadius2"] = { affix = "Enchantment Bladefall Area Of Effect 2", "24% increased Bladefall Area of Effect", statOrder = { 3842 }, level = 75, group = "EnchantmentBladefallRadius", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [2413715772] = { "24% increased Bladefall Area of Effect" }, } }, + ["EnchantmentBladefallAdditionalVolley"] = { affix = "Enchantment Bladefall Additional Volley", "Bladefall has an additional Volley", statOrder = { 5091 }, level = 75, group = "EnchantmentBladefallAdditionalVolley", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [3808171722] = { "Bladefall has an additional Volley" }, } }, + ["EnchantmentBladeTrapRadius1__"] = { affix = "Enchantment Blade Trap Area Of Effect 1", "16% increased Blade Trap Area of Effect", statOrder = { 5086 }, level = 66, group = "EnchantmentBladeTrapRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1502095380] = { "16% increased Blade Trap Area of Effect" }, } }, + ["EnchantmentBladeTrapRadius2_"] = { affix = "Enchantment Blade Trap Area Of Effect 2", "24% increased Blade Trap Area of Effect", statOrder = { 5086 }, level = 75, group = "EnchantmentBladeTrapRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1502095380] = { "24% increased Blade Trap Area of Effect" }, } }, + ["EnchantmentBladeTrapAdditionalRotation_"] = { affix = "Enchantment Blade Trap Additional Rotation", "Blade Trap rotates +1 times", statOrder = { 5057 }, level = 75, group = "EnchantmentBladeTrapAdditionalRotation", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [4195549152] = { "Blade Trap rotates +1 times" }, } }, + ["EnchantmentBladeVortexDuration1"] = { affix = "Enchantment Blade Vortex Duration 1", "20% increased Blade Vortex Duration", statOrder = { 3925 }, level = 66, group = "EnchantmentBladeVortexDuration", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [3024867180] = { "20% increased Blade Vortex Duration" }, } }, + ["EnchantmentBladeVortexDuration2"] = { affix = "Enchantment Blade Vortex Duration 2", "30% increased Blade Vortex Duration", statOrder = { 3925 }, level = 75, group = "EnchantmentBladeVortexDuration", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [3024867180] = { "30% increased Blade Vortex Duration" }, } }, + ["EnchantmentBladeVortexRadius1"] = { affix = "Enchantment Blade Vortex Area Of Effect 1", "16% increased Blade Vortex Area of Effect", statOrder = { 3841 }, level = 66, group = "EnchantmentBladeVortexRadius", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [2748553775] = { "16% increased Blade Vortex Area of Effect" }, } }, + ["EnchantmentBladeVortexRadius2"] = { affix = "Enchantment Blade Vortex Area Of Effect 2", "24% increased Blade Vortex Area of Effect", statOrder = { 3841 }, level = 75, group = "EnchantmentBladeVortexRadius", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [2748553775] = { "24% increased Blade Vortex Area of Effect" }, } }, + ["EnchantmentBladeVortexCritMultiPerBlade1_"] = { affix = "Enchantment Blade Vortex Crit Multi Per Blade 1", "Blade Vortex has +2% to Critical Strike Multiplier for each blade", statOrder = { 5090 }, level = 66, group = "EnchantmentBladeVortexCritMultiPerBlade", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [2583039202] = { "Blade Vortex has +2% to Critical Strike Multiplier for each blade" }, } }, + ["EnchantmentBladeVortexCritMultiPerBlade2"] = { affix = "Enchantment Blade Vortex Crit Multi Per Blade 2", "Blade Vortex has +3% to Critical Strike Multiplier for each blade", statOrder = { 5090 }, level = 75, group = "EnchantmentBladeVortexCritMultiPerBlade", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [2583039202] = { "Blade Vortex has +3% to Critical Strike Multiplier for each blade" }, } }, + ["EnchantmentBlastRainRadius1_"] = { affix = "Enchantment Blast Rain Area Of Effect 1", "Blast Rain has 16% increased Area of Effect", statOrder = { 3838 }, level = 66, group = "EnchantmentBlastRainRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [574378310] = { "Blast Rain has 16% increased Area of Effect" }, } }, + ["EnchantmentBlastRainRadius2_"] = { affix = "Enchantment Blast Rain Area Of Effect 2", "Blast Rain has 24% increased Area of Effect", statOrder = { 3838 }, level = 75, group = "EnchantmentBlastRainRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [574378310] = { "Blast Rain has 24% increased Area of Effect" }, } }, + ["EnchantmentBlastRainAdditionalBlast1"] = { affix = "Enchantment Blast Rain Additional Blast 1", "Blast Rain fires an additional Arrow", statOrder = { 3992 }, level = 66, group = "EnchantmentBlastRainAdditionalProjectile", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3519675720] = { "Blast Rain fires an additional Arrow" }, } }, + ["EnchantmentBlastRainAdditionalBlast2"] = { affix = "Enchantment Blast Rain Additional Blast 2", "Blast Rain fires an additional Arrow", statOrder = { 3992 }, level = 75, group = "EnchantmentBlastRainAdditionalProjectile", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3519675720] = { "Blast Rain fires an additional Arrow" }, } }, + ["EnchantmentBlazingSalvoNumberOfAdditionalProjectiles1"] = { affix = "Enchantment Blazing Salvo Num of Additional Projectiles 1", "Blazing Salvo fires an additional Projectile", statOrder = { 5099 }, level = 75, group = "EnchantmentBlazingSalvoNumberOfAdditionalProjectiles", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3908539803] = { "Blazing Salvo fires an additional Projectile" }, } }, + ["EnchantmentBlazingSalvoProjectileSpreadArea1_"] = { affix = "Enchantment Blazing Salvo Spread Area 1", "Blazing Salvo Projectiles land in a 20% increased Area", statOrder = { 6355 }, level = 66, group = "EnchantmentBlazingSalvoProjectileSpreadArea", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1785831895] = { "Blazing Salvo Projectiles land in a 20% increased Area" }, } }, + ["EnchantmentBlazingSalvoProjectileSpreadArea2_"] = { affix = "Enchantment Blazing Salvo Spread Area 2", "Blazing Salvo Projectiles land in a 30% increased Area", statOrder = { 6355 }, level = 75, group = "EnchantmentBlazingSalvoProjectileSpreadArea", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1785831895] = { "Blazing Salvo Projectiles land in a 30% increased Area" }, } }, + ["EnchantmentBlightRadius1"] = { affix = "Enchantment Blight Area Of Effect 1", "16% increased Blight Area of Effect", statOrder = { 3847 }, level = 66, group = "EnchantmentBlightRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2511915418] = { "16% increased Blight Area of Effect" }, } }, + ["EnchantmentBlightRadius2"] = { affix = "Enchantment Blight Area Of Effect 2", "24% increased Blight Area of Effect", statOrder = { 3847 }, level = 75, group = "EnchantmentBlightRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2511915418] = { "24% increased Blight Area of Effect" }, } }, + ["EnchantmentBlightSecondarySkillDuration1"] = { affix = "Enchantment Blight Secondary Skill Duration 1", "Blight has 20% increased Hinder Duration", statOrder = { 5171 }, level = 66, group = "EnchantmentBlightSecondarySkillDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [4170725899] = { "Blight has 20% increased Hinder Duration" }, } }, + ["EnchantmentBlightSecondarySkillDuration2"] = { affix = "Enchantment Blight Secondary Skill Duration 2", "Blight has 30% increased Hinder Duration", statOrder = { 5171 }, level = 75, group = "EnchantmentBlightSecondarySkillDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [4170725899] = { "Blight has 30% increased Hinder Duration" }, } }, + ["EnchantmentBlinkArrowAttackSpeed1"] = { affix = "Enchantment Blink Arrow Attack Speed 1", "Blink Arrow and Blink Arrow Clones have 10% increased Attack Speed", statOrder = { 3867 }, level = 66, group = "EnchantmentBlinkArrowAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed", "minion" }, tradeHashes = { [1554597333] = { "Blink Arrow and Blink Arrow Clones have 10% increased Attack Speed" }, } }, + ["EnchantmentBlinkArrowAttackSpeed2"] = { affix = "Enchantment Blink Arrow Attack Speed 2", "Blink Arrow and Blink Arrow Clones have 15% increased Attack Speed", statOrder = { 3867 }, level = 75, group = "EnchantmentBlinkArrowAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed", "minion" }, tradeHashes = { [1554597333] = { "Blink Arrow and Blink Arrow Clones have 15% increased Attack Speed" }, } }, + ["EnchantmentBlinkArrowCooldownSpeed1"] = { affix = "Enchantment Blink Arrow Cooldown Speed 1", "Blink Arrow has 20% increased Cooldown Recovery Rate", statOrder = { 3883 }, level = 66, group = "EnchantmentBlinkArrowCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2983274404] = { "Blink Arrow has 20% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentBlinkArrowCooldownSpeed2"] = { affix = "Enchantment Blink Arrow Cooldown Speed 2", "Blink Arrow has 30% increased Cooldown Recovery Rate", statOrder = { 3883 }, level = 75, group = "EnchantmentBlinkArrowCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2983274404] = { "Blink Arrow has 30% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentBloodRageAttackSpeed1"] = { affix = "Enchantment Blood Rage Attack Speed 1", "Blood Rage grants additional 8% increased Attack Speed", statOrder = { 4104 }, level = 66, group = "EnchantmentBloodRageAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3418033798] = { "Blood Rage grants additional 8% increased Attack Speed" }, } }, + ["EnchantmentBloodRageAttackSpeed2"] = { affix = "Enchantment Blood Rage Attack Speed 2", "Blood Rage grants additional 12% increased Attack Speed", statOrder = { 4104 }, level = 75, group = "EnchantmentBloodRageAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3418033798] = { "Blood Rage grants additional 12% increased Attack Speed" }, } }, + ["EnchantmentBloodRageFrenzyOnKill1"] = { affix = "Enchantment Blood Rage Frenzy On Kill 1", "Blood Rage grants additional 20% chance to gain a Frenzy Charge on Kill", statOrder = { 4105 }, level = 66, group = "EnchantmentBloodRageFrenzyOnKill", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [3152806535] = { "Blood Rage grants additional 20% chance to gain a Frenzy Charge on Kill" }, } }, + ["EnchantmentBloodRageFrenzyOnKill2"] = { affix = "Enchantment Blood Rage Frenzy On Kill 2", "Blood Rage grants additional 30% chance to gain a Frenzy Charge on Kill", statOrder = { 4105 }, level = 75, group = "EnchantmentBloodRageFrenzyOnKill", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [3152806535] = { "Blood Rage grants additional 30% chance to gain a Frenzy Charge on Kill" }, } }, + ["EnchantmentBloodreapRadius1"] = { affix = "Enchantment Reap Area Of Effect 1", "16% increased Reap Area of Effect", statOrder = { 5241 }, level = 66, group = "EnchantmentBloodreapRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [647221668] = { "16% increased Reap Area of Effect" }, } }, + ["EnchantmentBloodreapRadius2___"] = { affix = "Enchantment Reap Area Of Effect 2", "24% increased Reap Area of Effect", statOrder = { 5241 }, level = 75, group = "EnchantmentBloodreapRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [647221668] = { "24% increased Reap Area of Effect" }, } }, + ["EnchantmentBloodreapMaxBloodCharge1"] = { affix = "Enchantment Reap Maximum Blood Charges 1", "+1 to Maximum Blood Charges", statOrder = { 4355 }, level = 75, group = "EnchantmentBloodreapMaxBloodCharge", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [4218649240] = { "+1 to Maximum Blood Charges" }, } }, + ["EnchantmentBoneOfferingDuration1"] = { affix = "Enchantment Bone Offering Duration 1", "30% increased Bone Offering Duration", statOrder = { 3901 }, level = 66, group = "EnchantmentBoneOfferingDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [1607493537] = { "30% increased Bone Offering Duration" }, } }, + ["EnchantmentBoneOfferingDuration2"] = { affix = "Enchantment Bone Offering Duration 2", "45% increased Bone Offering Duration", statOrder = { 3901 }, level = 75, group = "EnchantmentBoneOfferingDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [1607493537] = { "45% increased Bone Offering Duration" }, } }, + ["EnchantmentBoneOfferingBlockChance1"] = { affix = "Enchantment Bone Offering Block Chance 1", "Bone Offering grants an additional +6% Chance to Block Attack Damage", statOrder = { 4120 }, level = 66, group = "EnchantmentBoneOfferingBlockChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "block", "minion" }, tradeHashes = { [3233607638] = { "Bone Offering grants an additional +6% Chance to Block Attack Damage" }, } }, + ["EnchantmentBoneOfferingBlockChance2"] = { affix = "Enchantment Bone Offering Block Chance 2", "Bone Offering grants an additional +9% Chance to Block Attack Damage", statOrder = { 4120 }, level = 75, group = "EnchantmentBoneOfferingBlockChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "block", "minion" }, tradeHashes = { [3233607638] = { "Bone Offering grants an additional +9% Chance to Block Attack Damage" }, } }, + ["EnchantmentBurningArrowIgniteChance1"] = { affix = "Enchantment Burning Arrow Ignite Chance 1", "Burning Arrow has +20% chance to Ignite", statOrder = { 3956 }, level = 66, group = "EnchantmentBurningArrowIgniteChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "fire", "attack", "ailment" }, tradeHashes = { [2226973351] = { "Burning Arrow has +20% chance to Ignite" }, } }, + ["EnchantmentBurningArrowIgniteChance2"] = { affix = "Enchantment Burning Arrow Ignite Chance 2", "Burning Arrow has +30% chance to Ignite", statOrder = { 3956 }, level = 75, group = "EnchantmentBurningArrowIgniteChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "fire", "attack", "ailment" }, tradeHashes = { [2226973351] = { "Burning Arrow has +30% chance to Ignite" }, } }, + ["EnchantmentBurningArrowPhysicalDamagePercentToAddAsFireDamage1"] = { affix = "Enchantment Burning Arrow Physical Damage Percent To Add As Fire Damage 1", "10% of Burning Arrow Physical Damage gained as Extra Fire Damage", statOrder = { 3957 }, level = 66, group = "EnchantmentBurningArrowPhysicalDamagePercentToAddAsFireDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [3229580299] = { "10% of Burning Arrow Physical Damage gained as Extra Fire Damage" }, } }, + ["EnchantmentBurningArrowPhysicalDamagePercentToAddAsFireDamage2"] = { affix = "Enchantment Burning Arrow Physical Damage Percent To Add As Fire Damage 2", "15% of Burning Arrow Physical Damage gained as Extra Fire Damage", statOrder = { 3957 }, level = 75, group = "EnchantmentBurningArrowPhysicalDamagePercentToAddAsFireDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [3229580299] = { "15% of Burning Arrow Physical Damage gained as Extra Fire Damage" }, } }, + ["EnchantmentCausticArrowDuration1"] = { affix = "Enchantment Caustic Arrow Duration 1", "20% increased Caustic Arrow Duration", statOrder = { 3935 }, level = 66, group = "EnchantmentCausticArrowDuration", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack" }, tradeHashes = { [387490713] = { "20% increased Caustic Arrow Duration" }, } }, + ["EnchantmentCausticArrowDuration2"] = { affix = "Enchantment Caustic Arrow Duration 2", "30% increased Caustic Arrow Duration", statOrder = { 3935 }, level = 75, group = "EnchantmentCausticArrowDuration", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack" }, tradeHashes = { [387490713] = { "30% increased Caustic Arrow Duration" }, } }, + ["EnchantmentCausticArrowRadius1"] = { affix = "Enchantment Caustic Arrow Area Of Effect 1", "16% increased Caustic Arrow Area of Effect", statOrder = { 3832 }, level = 66, group = "EnchantmentCausticArrowRadius", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack" }, tradeHashes = { [3854556792] = { "16% increased Caustic Arrow Area of Effect" }, } }, + ["EnchantmentCausticArrowRadius2"] = { affix = "Enchantment Caustic Arrow Area Of Effect 2", "24% increased Caustic Arrow Area of Effect", statOrder = { 3832 }, level = 75, group = "EnchantmentCausticArrowRadius", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack" }, tradeHashes = { [3854556792] = { "24% increased Caustic Arrow Area of Effect" }, } }, + ["EnchantmentCausticArrowWitherOnHit1"] = { affix = "Enchantment Caustic Arrow Wither On Hit 1", "Caustic Arrow has 14% chance to inflict Withered on Hit for 2 seconds base Duration", statOrder = { 3689 }, level = 66, group = "EnchantmentCausticArrowWitherOnHit", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack" }, tradeHashes = { [1993913925] = { "Caustic Arrow has 14% chance to inflict Withered on Hit for 2 seconds base Duration" }, } }, + ["EnchantmentCausticArrowWitherOnHit2"] = { affix = "Enchantment Caustic Arrow Wither On Hit 2", "Caustic Arrow has 20% chance to inflict Withered on Hit for 2 seconds base Duration", statOrder = { 3689 }, level = 75, group = "EnchantmentCausticArrowWitherOnHit", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack" }, tradeHashes = { [1993913925] = { "Caustic Arrow has 20% chance to inflict Withered on Hit for 2 seconds base Duration" }, } }, + ["EnchantmentChaosGolemPercentAdditionalPhysicalDamageReduction1_"] = { affix = "Enchantment Chaos Golem Percent Additional Physical Damage Reduction 1", "75% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 66, group = "EnchantmentChaosGolemGrantedBuffEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [1648511635] = { "75% increased Effect of the Buff granted by your Chaos Golems" }, } }, + ["EnchantmentChaosGolemPercentAdditionalPhysicalDamageReduction2"] = { affix = "Enchantment Chaos Golem Percent Additional Physical Damage Reduction 2", "100% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "EnchantmentChaosGolemGrantedBuffEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [1648511635] = { "100% increased Effect of the Buff granted by your Chaos Golems" }, } }, + ["EnchantmentChaosGolemElementalResistances1"] = { affix = "Enchantment Chaos Golem Elemental Resistances 1", "+24% to Chaos Golem Elemental Resistances", statOrder = { 3988 }, level = 66, group = "EnchantmentChaosGolemElementalResistances", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1946386823] = { "+24% to Chaos Golem Elemental Resistances" }, } }, + ["EnchantmentChaosGolemElementalResistances2"] = { affix = "Enchantment Chaos Golem Elemental Resistances 2", "+36% to Chaos Golem Elemental Resistances", statOrder = { 3988 }, level = 75, group = "EnchantmentChaosGolemElementalResistances", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1946386823] = { "+36% to Chaos Golem Elemental Resistances" }, } }, + ["EnchantmentChargedAttackRadius1_"] = { affix = "Enchantment Blade Flurry Area Of Effect 1", "16% increased Blade Flurry Area of Effect", statOrder = { 4148 }, level = 66, group = "EnchantmentChargedAttackRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2746213081] = { "16% increased Blade Flurry Area of Effect" }, } }, + ["EnchantmentChargedAttackRadius2"] = { affix = "Enchantment Blade Flurry Area Of Effect 2", "24% increased Blade Flurry Area of Effect", statOrder = { 4148 }, level = 75, group = "EnchantmentChargedAttackRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2746213081] = { "24% increased Blade Flurry Area of Effect" }, } }, + ["EnchantmentChargedAttackDodgePerStack1"] = { affix = "Enchantment Blade Flurry Maximum Stage 1", "+1 to maximum Blade Flurry stages", statOrder = { 9679 }, level = 66, group = "EnchantmentChargedAttackMaxStage", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [865345996] = { "+1 to maximum Blade Flurry stages" }, } }, + ["EnchantmentChargedAttackDodgePerStack2"] = { affix = "Enchantment Blade Flurry Maximum Stage 1", "+1 to maximum Blade Flurry stages", statOrder = { 9679 }, level = 75, group = "EnchantmentChargedAttackMaxStage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [865345996] = { "+1 to maximum Blade Flurry stages" }, } }, + ["EnchantmentChargedDashDodgeWhenFinishedChannelling1_"] = { affix = "Enchantment Charged Dash Radius Final Explosion 1", "Charged Dash has +0.4 metres to radius of each Wave's last damage Area", statOrder = { 3851 }, level = 66, group = "EnchantmentChargedDashRadiusFinalExplosion", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [2898302567] = { "Charged Dash has +0.4 metres to radius of each Wave's last damage Area" }, } }, + ["EnchantmentChargedDashDodgeWhenFinishedChannelling2"] = { affix = "Enchantment Charged Dash Radius Final Explosion 2", "Charged Dash has +0.6 metres to radius of each Wave's last damage Area", statOrder = { 3851 }, level = 75, group = "EnchantmentChargedDashRadiusFinalExplosion", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [2898302567] = { "Charged Dash has +0.6 metres to radius of each Wave's last damage Area" }, } }, + ["EnchantmentChargedDashRadiusFinalExplosion1"] = { affix = "Enchantment Charged Dash Radius Final Explosion 1", "Charged Dash has +0.4 metres to radius of each Wave's last damage Area", statOrder = { 3851 }, level = 66, group = "EnchantmentChargedDashRadiusFinalExplosion", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack" }, tradeHashes = { [2898302567] = { "Charged Dash has +0.4 metres to radius of each Wave's last damage Area" }, } }, + ["EnchantmentChargedDashRadiusFinalExplosion2"] = { affix = "Enchantment Charged Dash Radius Final Explosion 2", "Charged Dash has +0.6 metres to radius of each Wave's last damage Area", statOrder = { 3851 }, level = 75, group = "EnchantmentChargedDashRadiusFinalExplosion", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack" }, tradeHashes = { [2898302567] = { "Charged Dash has +0.6 metres to radius of each Wave's last damage Area" }, } }, + ["EnchantmentChargedDashMovementSpeed1_"] = { affix = "Enchantment Charged Dash Movement Speed 1", "Charged Dash has 10% more Movement Speed", statOrder = { 5758 }, level = 66, group = "EnchantmentChargedDashMovementSpeed", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [797408710] = { "Charged Dash has 10% more Movement Speed" }, } }, + ["EnchantmentChargedDashMovementSpeed2_"] = { affix = "Enchantment Charged Dash Movement Speed 2", "Charged Dash has 15% more Movement Speed", statOrder = { 5758 }, level = 75, group = "EnchantmentChargedDashMovementSpeed", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [797408710] = { "Charged Dash has 15% more Movement Speed" }, } }, + ["EnchantmentClarityManaReservation1"] = { affix = "Enchantment Clarity Mana Reservation 1", "Clarity has 40% increased Mana Reservation Efficiency", statOrder = { 5784 }, level = 66, group = "EnchantmentClarityManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2668611054] = { "Clarity has 40% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentClarityManaReservation2"] = { affix = "Enchantment Clarity Mana Reservation 2", "Clarity has 60% increased Mana Reservation Efficiency", statOrder = { 5784 }, level = 75, group = "EnchantmentClarityManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2668611054] = { "Clarity has 60% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentClarityManaReservationEfficiency1___"] = { affix = "Enchantment Clarity Mana Reservation 1", "Clarity has 50% increased Mana Reservation Efficiency", statOrder = { 5785 }, level = 66, group = "EnchantmentClarityManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [453778214] = { "Clarity has 50% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentClarityManaReservationEfficiency2___"] = { affix = "Enchantment Clarity Mana Reservation 2", "Clarity has 75% increased Mana Reservation Efficiency", statOrder = { 5785 }, level = 75, group = "EnchantmentClarityManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [453778214] = { "Clarity has 75% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentCleaveAttackSpeed1"] = { affix = "Enchantment Cleave Attack Speed 1", "10% increased Cleave Attack Speed", statOrder = { 3852 }, level = 66, group = "EnchantmentCleaveAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3106577499] = { "10% increased Cleave Attack Speed" }, } }, + ["EnchantmentCleaveAttackSpeed2"] = { affix = "Enchantment Cleave Attack Speed 2", "15% increased Cleave Attack Speed", statOrder = { 3852 }, level = 75, group = "EnchantmentCleaveAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3106577499] = { "15% increased Cleave Attack Speed" }, } }, + ["EnchantmentCleaveRadius1"] = { affix = "Enchantment Cleave Area Of Effect 1", "16% increased Cleave Area of Effect", statOrder = { 3806 }, level = 66, group = "EnchantmentCleaveRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3172519570] = { "16% increased Cleave Area of Effect" }, } }, + ["EnchantmentCleaveRadius2"] = { affix = "Enchantment Cleave Area Of Effect 2", "24% increased Cleave Area of Effect", statOrder = { 3806 }, level = 75, group = "EnchantmentCleaveRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3172519570] = { "24% increased Cleave Area of Effect" }, } }, + ["EnchantmentColdSnapCooldownSpeed1"] = { affix = "Enchantment Cold Snap Cooldown Speed 1", "Cold Snap has 20% increased Cooldown Recovery Rate", statOrder = { 3876 }, level = 66, group = "EnchantmentColdSnapCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2289367813] = { "Cold Snap has 20% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentColdSnapCooldownSpeed2"] = { affix = "Enchantment Cold Snap Cooldown Speed 2", "Cold Snap has 30% increased Cooldown Recovery Rate", statOrder = { 3876 }, level = 75, group = "EnchantmentColdSnapCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2289367813] = { "Cold Snap has 30% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentColdSnapRadius1"] = { affix = "Enchantment Cold Snap Area Of Effect 1", "16% increased Cold Snap Area of Effect", statOrder = { 3833 }, level = 66, group = "EnchantmentColdSnapRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3371538704] = { "16% increased Cold Snap Area of Effect" }, } }, + ["EnchantmentColdSnapRadius2"] = { affix = "Enchantment Cold Snap Area Of Effect 2", "24% increased Cold Snap Area of Effect", statOrder = { 3833 }, level = 75, group = "EnchantmentColdSnapRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3371538704] = { "24% increased Cold Snap Area of Effect" }, } }, + ["EnchantmentConductivityCurseEffect1"] = { affix = "Enchantment Conductivity Curse Effect 1", "10% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 66, group = "EnchantmentConductivityCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "10% increased Conductivity Curse Effect" }, } }, + ["EnchantmentConductivityCurseEffect2"] = { affix = "Enchantment Conductivity Curse Effect 2", "15% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "EnchantmentConductivityCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "15% increased Conductivity Curse Effect" }, } }, + ["EnchantmentConductivityDuration1"] = { affix = "Enchantment Conductivity Duration 1", "30% increased Conductivity Duration", statOrder = { 3917 }, level = 66, group = "EnchantmentConductivityDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [819890745] = { "30% increased Conductivity Duration" }, } }, + ["EnchantmentConductivityDuration2"] = { affix = "Enchantment Conductivity Duration 2", "45% increased Conductivity Duration", statOrder = { 3917 }, level = 75, group = "EnchantmentConductivityDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [819890745] = { "45% increased Conductivity Duration" }, } }, + ["EnchantmentConsecratedPathRange1"] = { affix = "Enchantment Consecrated Path Range 1", "Consecrated Path has 10% increased teleport range", statOrder = { 7176 }, level = 66, group = "EnchantmentConsecratedPathRange", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2048678824] = { "Consecrated Path has 10% increased teleport range" }, } }, + ["EnchantmentConsecratedPathRange2"] = { affix = "Enchantment Consecrated Path Range 2", "Consecrated Path has 15% increased teleport range", statOrder = { 7176 }, level = 75, group = "EnchantmentConsecratedPathRange", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2048678824] = { "Consecrated Path has 15% increased teleport range" }, } }, + ["EnchantmentContagionDuration1"] = { affix = "Enchantment Contagion Duration 1", "20% increased Contagion Duration", statOrder = { 3922 }, level = 66, group = "EnchantmentContagionDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2565809961] = { "20% increased Contagion Duration" }, } }, + ["EnchantmentContagionDuration2"] = { affix = "Enchantment Contagion Duration 2", "30% increased Contagion Duration", statOrder = { 3922 }, level = 75, group = "EnchantmentContagionDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2565809961] = { "30% increased Contagion Duration" }, } }, + ["EnchantmentContagionRadius1"] = { affix = "Enchantment Contagion Radius 1", "16% increased Contagion Area of Effect", statOrder = { 3839 }, level = 66, group = "EnchantmentContagionRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1056396846] = { "16% increased Contagion Area of Effect" }, } }, + ["EnchantmentContagionRadius2"] = { affix = "Enchantment Contagion Radius 2", "24% increased Contagion Area of Effect", statOrder = { 3839 }, level = 75, group = "EnchantmentContagionRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1056396846] = { "24% increased Contagion Area of Effect" }, } }, + ["EnchantmentConsecratedPathRadius1"] = { affix = "Enchantment Consecrated Path Area Of Effect 1", "Consecrated Path has 16% increased Area of Effect", statOrder = { 5860 }, level = 66, group = "EnchantmentConsecratedPathRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3285061858] = { "Consecrated Path has 16% increased Area of Effect" }, } }, + ["EnchantmentConsecratedPathRadius2"] = { affix = "Enchantment Consecrated Path Area Of Effect 2", "Consecrated Path has 24% increased Area of Effect", statOrder = { 5860 }, level = 75, group = "EnchantmentConsecratedPathRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3285061858] = { "Consecrated Path has 24% increased Area of Effect" }, } }, + ["EnchantmentCorruptingFeverDuration1_"] = { affix = "Enchantment Corrupting Fever Duration 1", "20% increased Corrupting Fever Duration", statOrder = { 5883 }, level = 66, group = "EnchantmentCorruptingFeverDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3529090048] = { "20% increased Corrupting Fever Duration" }, } }, + ["EnchantmentCorruptingFeverDuration2"] = { affix = "Enchantment Corrupting Fever Duration 2", "30% increased Corrupting Fever Duration", statOrder = { 5883 }, level = 75, group = "EnchantmentCorruptingFeverDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3529090048] = { "30% increased Corrupting Fever Duration" }, } }, + ["EnchantmentCorruptingFeverAdditionalStack1"] = { affix = "Enchantment Corrupting Fever Additional Corrupted Blood 1", "Corrupting Fever has +50% chance to inflict an additional Corrupted Blood Debuff", statOrder = { 5881 }, level = 75, group = "EnchantmentCorruptingFeverAdditionalStack", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3513613206] = { "Corrupting Fever has +50% chance to inflict an additional Corrupted Blood Debuff" }, } }, + ["EnchantmentConversionTrapCooldownSpeed1"] = { affix = "Enchantment Conversion Trap Cooldown Speed 1", "Conversion Trap 20% increased Cooldown Recovery Rate", statOrder = { 3889 }, level = 66, group = "EnchantmentConversionTrapCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2143519574] = { "Conversion Trap 20% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentConversionTrapCooldownSpeed2"] = { affix = "Enchantment Conversion Trap Cooldown Speed 2", "Conversion Trap 30% increased Cooldown Recovery Rate", statOrder = { 3889 }, level = 75, group = "EnchantmentConversionTrapCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2143519574] = { "Conversion Trap 30% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentConvocationCooldownSpeed1"] = { affix = "Enchantment Convocation Cooldown Speed 1", "Convocation has 20% increased Cooldown Recovery Rate", statOrder = { 3877 }, level = 66, group = "EnchantmentConvocationCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [2680060124] = { "Convocation has 20% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentConvocationCooldownSpeed2"] = { affix = "Enchantment Convocation Cooldown Speed 2", "Convocation has 30% increased Cooldown Recovery Rate", statOrder = { 3877 }, level = 75, group = "EnchantmentConvocationCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [2680060124] = { "Convocation has 30% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentConvocationLifeRegeneration1"] = { affix = "Enchantment Convocation Life Regeneration 1", "24% increased Convocation Buff Effect", statOrder = { 4023 }, level = 66, group = "EnchantmentConvocationLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [2054059315] = { "24% increased Convocation Buff Effect" }, } }, + ["EnchantmentConvocationLifeRegeneration2"] = { affix = "Enchantment Convocation Life Regeneration 2", "36% increased Convocation Buff Effect", statOrder = { 4023 }, level = 75, group = "EnchantmentConvocationLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [2054059315] = { "36% increased Convocation Buff Effect" }, } }, + ["EnchantmentCracklingLanceBaseCastSpeed1_"] = { affix = "Enchantment Crackling Lance Cast Speed 1", "Crackling Lance has 8% increased Cast Speed", statOrder = { 5899 }, level = 66, group = "EnchantmentCracklingLanceBaseCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [617228927] = { "Crackling Lance has 8% increased Cast Speed" }, } }, + ["EnchantmentCracklingLanceBaseCastSpeed2"] = { affix = "Enchantment Crackling Lance Cast Speed 2", "Crackling Lance has 16% increased Cast Speed", statOrder = { 5899 }, level = 75, group = "EnchantmentCracklingLanceBaseCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [617228927] = { "Crackling Lance has 16% increased Cast Speed" }, } }, + ["EnchantmentCracklingLanceSecondaryBeamAngle1"] = { affix = "Enchantment Crackling Lance Beam Angle 1", "Crackling Lance has 24% increased branching angle", statOrder = { 6191 }, level = 66, group = "EnchantmentCracklingLanceSecondaryBeamAngle", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2896346908] = { "Crackling Lance has 24% increased branching angle" }, } }, + ["EnchantmentCracklingLanceSecondaryBeamAngle2___"] = { affix = "Enchantment Crackling Lance Beam Angle 2", "Crackling Lance has 36% increased branching angle", statOrder = { 6191 }, level = 75, group = "EnchantmentCracklingLanceSecondaryBeamAngle", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2896346908] = { "Crackling Lance has 36% increased branching angle" }, } }, + ["EnchantmentCycloneAttackSpeed1"] = { affix = "Enchantment Cyclone Attack Speed 1", "10% increased Cyclone Attack Speed", statOrder = { 3862 }, level = 66, group = "EnchantmentCycloneAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [835592326] = { "10% increased Cyclone Attack Speed" }, } }, + ["EnchantmentCycloneAttackSpeed2"] = { affix = "Enchantment Cyclone Attack Speed 2", "15% increased Cyclone Attack Speed", statOrder = { 3862 }, level = 75, group = "EnchantmentCycloneAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [835592326] = { "15% increased Cyclone Attack Speed" }, } }, + ["EnchantmentDarkPactCastSpeed1"] = { affix = "", "8% increased Dark Pact Cast Speed", statOrder = { 10046 }, level = 66, group = "EnchantmentDarkPactCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [1549594869] = { "8% increased Dark Pact Cast Speed" }, } }, + ["EnchantmentDarkPactCastSpeed2"] = { affix = "", "12% increased Dark Pact Cast Speed", statOrder = { 10046 }, level = 75, group = "EnchantmentDarkPactCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [1549594869] = { "12% increased Dark Pact Cast Speed" }, } }, + ["EnchantmentDarkPactRadius1__"] = { affix = "", "16% increased Dark Pact Area of Effect", statOrder = { 10045 }, level = 66, group = "EnchantmentDarkPactRadius", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster" }, tradeHashes = { [957864706] = { "16% increased Dark Pact Area of Effect" }, } }, + ["EnchantmentDarkPactRadius2"] = { affix = "", "24% increased Dark Pact Area of Effect", statOrder = { 10045 }, level = 75, group = "EnchantmentDarkPactRadius", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster" }, tradeHashes = { [957864706] = { "24% increased Dark Pact Area of Effect" }, } }, + ["EnchantmentDecoyTotemLife1"] = { affix = "Enchantment Decoy Totem Life 1", "40% increased Decoy Totem Life", statOrder = { 3996 }, level = 66, group = "EnchantmentDecoyTotemLife", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1631824124] = { "40% increased Decoy Totem Life" }, } }, + ["EnchantmentDecoyTotemLife2"] = { affix = "Enchantment Decoy Totem Life 2", "60% increased Decoy Totem Life", statOrder = { 3996 }, level = 75, group = "EnchantmentDecoyTotemLife", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1631824124] = { "60% increased Decoy Totem Life" }, } }, + ["EnchantmentDecoyTotemRadius1"] = { affix = "Enchantment Decoy Totem Area Of Effect 1", "16% increased Decoy Totem Area of Effect", statOrder = { 3834 }, level = 66, group = "EnchantmentDecoyTotemRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1686675991] = { "16% increased Decoy Totem Area of Effect" }, } }, + ["EnchantmentDecoyTotemRadius2"] = { affix = "Enchantment Decoy Totem Area Of Effect 2", "24% increased Decoy Totem Area of Effect", statOrder = { 3834 }, level = 75, group = "EnchantmentDecoyTotemRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1686675991] = { "24% increased Decoy Totem Area of Effect" }, } }, + ["EnchantmentDesecrateCooldownSpeed1"] = { affix = "Enchantment Desecrate Duration 1", "20% increased Desecrate Duration", statOrder = { 3919 }, level = 66, group = "EnchantmentDesecrateDuration", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster" }, tradeHashes = { [2679945072] = { "20% increased Desecrate Duration" }, } }, + ["EnchantmentDesecrateCooldownSpeed2"] = { affix = "Enchantment Desecrate Duration 2", "30% increased Desecrate Duration", statOrder = { 3919 }, level = 75, group = "EnchantmentDesecrateDuration", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster" }, tradeHashes = { [2679945072] = { "30% increased Desecrate Duration" }, } }, + ["EnchantmentDesecrateAdditionalCorpse1"] = { affix = "Enchantment Desecrate Additional Corpse 1", "Desecrate Spawns 2 additional corpses", statOrder = { 4121 }, level = 66, group = "EnchantmentDesecrateAdditionalCorpse", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3655654928] = { "Desecrate Spawns 2 additional corpses" }, } }, + ["EnchantmentDesecrateAdditionalCorpse2"] = { affix = "Enchantment Desecrate Additional Corpse 2", "Desecrate Spawns 3 additional corpses", statOrder = { 4121 }, level = 75, group = "EnchantmentDesecrateAdditionalCorpse", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3655654928] = { "Desecrate Spawns 3 additional corpses" }, } }, + ["EnchantmentDespairDuration1"] = { affix = "Enchantment Despair Duration 1", "30% increased Despair Duration", statOrder = { 6169 }, level = 66, group = "EnchantmentDespairDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [683073695] = { "30% increased Despair Duration" }, } }, + ["EnchantmentDespairDuration2"] = { affix = "Enchantment Despair Duration 2", "45% increased Despair Duration", statOrder = { 6169 }, level = 75, group = "EnchantmentDespairDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [683073695] = { "45% increased Despair Duration" }, } }, + ["EnchantmentDespairEffect1_"] = { affix = "Enchantment Despair Effect 1", "10% increased Despair Curse Effect", statOrder = { 6168 }, level = 66, group = "EnchantmentDespairEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3185156108] = { "10% increased Despair Curse Effect" }, } }, + ["EnchantmentDespairEffect2"] = { affix = "Enchantment Despair Effect 2", "15% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "EnchantmentDespairEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3185156108] = { "15% increased Despair Curse Effect" }, } }, + ["EnchantmentDeterminationManaReservation1"] = { affix = "Enchantment Determination Mana Reservation 1", "Determination has 20% increased Mana Reservation Efficiency", statOrder = { 6172 }, level = 66, group = "EnchantmentDeterminationManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2721871046] = { "Determination has 20% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentDeterminationManaReservation2"] = { affix = "Enchantment Determination Mana Reservation 2", "Determination has 30% increased Mana Reservation Efficiency", statOrder = { 6172 }, level = 75, group = "EnchantmentDeterminationManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2721871046] = { "Determination has 30% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentDeterminationManaReservationEfficiency1"] = { affix = "Enchantment Determination Mana Reservation 1", "Determination has 20% increased Mana Reservation Efficiency", statOrder = { 6173 }, level = 66, group = "EnchantmentDeterminationManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [325889252] = { "Determination has 20% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentDeterminationManaReservationEfficiency2"] = { affix = "Enchantment Determination Mana Reservation 2", "Determination has 30% increased Mana Reservation Efficiency", statOrder = { 6173 }, level = 75, group = "EnchantmentDeterminationManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [325889252] = { "Determination has 30% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentDetonateDeadPercentChanceToDetonateAdditionalCorpse1"] = { affix = "Enchantment Detonate Dead Percent Chance To Detonate Additional Corpse 1", "Detonate Dead has a 30% chance to detonate an additional corpse", statOrder = { 3994 }, level = 66, group = "EnchantmentDetonateDeadPercentChanceToDetonateAdditionalCorpse", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1539846779] = { "Detonate Dead has a 30% chance to detonate an additional corpse" }, } }, + ["EnchantmentDetonateDeadPercentChanceToDetonateAdditionalCorpse2"] = { affix = "Enchantment Detonate Dead Percent Chance To Detonate Additional Corpse 2", "Detonate Dead has a 45% chance to detonate an additional corpse", statOrder = { 3994 }, level = 75, group = "EnchantmentDetonateDeadPercentChanceToDetonateAdditionalCorpse", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1539846779] = { "Detonate Dead has a 45% chance to detonate an additional corpse" }, } }, + ["EnchantmentDetonateDeadRadius1"] = { affix = "Enchantment Detonate Dead Area Of Effect 1", "16% increased Detonate Dead Area of Effect", statOrder = { 3829 }, level = 66, group = "EnchantmentDetonateDeadRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [482660590] = { "16% increased Detonate Dead Area of Effect" }, } }, + ["EnchantmentDetonateDeadRadius2"] = { affix = "Enchantment Detonate Dead Area Of Effect 2", "24% increased Detonate Dead Area of Effect", statOrder = { 3829 }, level = 75, group = "EnchantmentDetonateDeadRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [482660590] = { "24% increased Detonate Dead Area of Effect" }, } }, + ["EnchantmentDestructiveLinkDuration1"] = { affix = "Enchantment Destructive Link Duration 1", "20% increased Destructive Link Duration", statOrder = { 6171 }, level = 66, group = "EnchantmentDestructiveLinkDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [728213819] = { "20% increased Destructive Link Duration" }, } }, + ["EnchantmentDestructiveLinkDuration2_"] = { affix = "Enchantment Destructive Link Duration 2", "30% increased Destructive Link Duration", statOrder = { 6171 }, level = 75, group = "EnchantmentDestructiveLinkDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [728213819] = { "30% increased Destructive Link Duration" }, } }, + ["EnchantmentDevouringTotemPercentChanceToConsumeAdditionalCorpse1"] = { affix = "Enchantment Devouring Totem Percent Chance To Consume Additional Corpse 1", "Devouring Totem has 40% Chance to Consume an additional corpse", statOrder = { 4003 }, level = 66, group = "EnchantmentDevouringTotemPercentChanceToConsumeAdditionalCorpse", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [4189505564] = { "Devouring Totem has 40% Chance to Consume an additional corpse" }, } }, + ["EnchantmentDevouringTotemPercentChanceToConsumeAdditionalCorpse2"] = { affix = "Enchantment Devouring Totem Percent Chance To Consume Additional Corpse 2", "Devouring Totem has 60% Chance to Consume an additional corpse", statOrder = { 4003 }, level = 75, group = "EnchantmentDevouringTotemPercentChanceToConsumeAdditionalCorpse", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [4189505564] = { "Devouring Totem has 60% Chance to Consume an additional corpse" }, } }, + ["EnchantmentDevouringTotemLeechPerSecond1"] = { affix = "Enchantment Devouring Totem Leech Per Second 1", "24% increased Devouring Totem Leech per second", statOrder = { 3997 }, level = 66, group = "EnchantmentDevouringTotemLeechPerSecond", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3317752680] = { "24% increased Devouring Totem Leech per second" }, } }, + ["EnchantmentDevouringTotemLeechPerSecond2"] = { affix = "Enchantment Devouring Totem Leech Per Second 2", "36% increased Devouring Totem Leech per second", statOrder = { 3997 }, level = 75, group = "EnchantmentDevouringTotemLeechPerSecond", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3317752680] = { "36% increased Devouring Totem Leech per second" }, } }, + ["EnchantmentDisciplineManaReservation1"] = { affix = "Enchantment Discipline Mana Reservation 1", "Discipline has 28% increased Mana Reservation Efficiency", statOrder = { 6188 }, level = 66, group = "EnchantmentDisciplineManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1692887998] = { "Discipline has 28% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentDisciplineManaReservation2"] = { affix = "Enchantment Discipline Mana Reservation 2", "Discipline has 40% increased Mana Reservation Efficiency", statOrder = { 6188 }, level = 75, group = "EnchantmentDisciplineManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1692887998] = { "Discipline has 40% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentDisciplineManaReservationEfficiency1"] = { affix = "Enchantment Discipline Mana Reservation 1", "Discipline has 30% increased Mana Reservation Efficiency", statOrder = { 6189 }, level = 66, group = "EnchantmentDisciplineManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2081344089] = { "Discipline has 30% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentDisciplineManaReservationEfficiency2__"] = { affix = "Enchantment Discipline Mana Reservation 2", "Discipline has 45% increased Mana Reservation Efficiency", statOrder = { 6189 }, level = 75, group = "EnchantmentDisciplineManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2081344089] = { "Discipline has 45% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentDivineIreBeamWidth1"] = { affix = "Enchantment Divine Ire Beam Width 1", "Divine Ire's beam has 10% increased width", statOrder = { 6254 }, level = 66, group = "EnchantmentDivineIreBeamWidth", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2212298325] = { "Divine Ire's beam has 10% increased width" }, } }, + ["EnchantmentDivineIreBeamWidth2_"] = { affix = "Enchantment Divine Ire Beam Width 2", "Divine Ire's beam has 15% increased width", statOrder = { 6254 }, level = 75, group = "EnchantmentDivineIreBeamWidth", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2212298325] = { "Divine Ire's beam has 15% increased width" }, } }, + ["EnchantmentDivineIreNumberOfAdditionalNearbyEnemiesToZap1"] = { affix = "Enchantment Divine Ire Number Of Additional Nearby Enemies To Zap 1", "Divine Ire Damages an additional nearby Enemy when gaining Stages", statOrder = { 6256 }, level = 66, group = "EnchantmentDivineIreNumberOfAdditionalNearbyEnemiesToZap", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1477213724] = { "Divine Ire Damages an additional nearby Enemy when gaining Stages" }, } }, + ["EnchantmentDivineIreNumberOfAdditionalNearbyEnemiesToZap2"] = { affix = "Enchantment Divine Ire Number Of Additional Nearby Enemies To Zap 2", "Divine Ire Damages 2 additional nearby Enemies when gaining Stages", statOrder = { 6256 }, level = 75, group = "EnchantmentDivineIreNumberOfAdditionalNearbyEnemiesToZap", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1477213724] = { "Divine Ire Damages 2 additional nearby Enemies when gaining Stages" }, } }, + ["EnchantmentDominatingBlowDuration1"] = { affix = "Enchantment Dominating Blow Duration 1", "20% increased Sentinel of Dominance Duration", statOrder = { 3898 }, level = 66, group = "EnchantmentDominatingBlowDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "red_herring", "attack", "minion" }, tradeHashes = { [3772643988] = { "20% increased Sentinel of Dominance Duration" }, } }, + ["EnchantmentDominatingBlowDuration2"] = { affix = "Enchantment Dominating Blow Duration 2", "30% increased Sentinel of Dominance Duration", statOrder = { 3898 }, level = 75, group = "EnchantmentDominatingBlowDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "red_herring", "attack", "minion" }, tradeHashes = { [3772643988] = { "30% increased Sentinel of Dominance Duration" }, } }, + ["EnchantmentDominatingBlowMinionDamage1"] = { affix = "", "Summoned Sentinels of Dominance deal 20% increased Damage", statOrder = { 3701 }, level = 66, group = "EnchantmentDominatingBlowMinionDamage", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack", "minion" }, tradeHashes = { [4040760803] = { "Summoned Sentinels of Dominance deal 20% increased Damage" }, } }, + ["EnchantmentDominatingBlowMinionDamage2_"] = { affix = "", "Summoned Sentinels of Dominance deal 30% increased Damage", statOrder = { 3701 }, level = 75, group = "EnchantmentDominatingBlowMinionDamage", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack", "minion" }, tradeHashes = { [4040760803] = { "Summoned Sentinels of Dominance deal 30% increased Damage" }, } }, + ["EnchantmentDominatingBlowAttackDamage1"] = { affix = "", "24% increased Dominating Blow Damage", statOrder = { 3702 }, level = 66, group = "EnchantmentDominatingBlowAttackDamage", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2661979205] = { "24% increased Dominating Blow Damage" }, } }, + ["EnchantmentDominatingBlowAttackDamage2"] = { affix = "", "36% increased Dominating Blow Damage", statOrder = { 3702 }, level = 75, group = "EnchantmentDominatingBlowAttackDamage", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2661979205] = { "36% increased Dominating Blow Damage" }, } }, + ["EnchantmentDominatingBlowAdditionalMagic1"] = { affix = "Enchantment Dominating Blow Additional Magic 1", "Dominating Blow can summon 2 additional Magic Sentinels of Dominance", statOrder = { 4557 }, level = 66, group = "EnchantmentDominatingBlowAdditionalMagic", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1095160683] = { "Dominating Blow can summon 2 additional Magic Sentinels of Dominance" }, } }, + ["EnchantmentDominatingBlowAdditionalMagic2__"] = { affix = "Enchantment Dominating Blow Additional Magic 2", "Dominating Blow can summon 3 additional Magic Sentinels of Dominance", statOrder = { 4557 }, level = 75, group = "EnchantmentDominatingBlowAdditionalMagic", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1095160683] = { "Dominating Blow can summon 3 additional Magic Sentinels of Dominance" }, } }, + ["EnchantmentDominatingBlowAdditionalRare1"] = { affix = "Enchantment Dominating Blow Additional Rare 1", "Dominating Blow can summon an additional Rare Sentinel of Dominance", statOrder = { 4558 }, level = 75, group = "EnchantmentDominatingBlowAdditionalRare", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [2337005967] = { "Dominating Blow can summon an additional Rare Sentinel of Dominance" }, } }, + ["EnchantmentDoubleSlashCriticalStrikes1"] = { affix = "Enchantment Double Slash Critical Strikes 1", "40% increased Lacerate Critical Strike Chance", statOrder = { 4147 }, level = 66, group = "EnchantmentDoubleSlashCriticalStrikes", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [578067404] = { "40% increased Lacerate Critical Strike Chance" }, } }, + ["EnchantmentDoubleSlashCriticalStrikes2"] = { affix = "Enchantment Double Slash Critical Strikes 2", "60% increased Lacerate Critical Strike Chance", statOrder = { 4147 }, level = 75, group = "EnchantmentDoubleSlashCriticalStrikes", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [578067404] = { "60% increased Lacerate Critical Strike Chance" }, } }, + ["EnchantmentDoubleSlashRadius1"] = { affix = "Enchantment Double Slash Area Of Effect 1", "16% increased Lacerate Area of Effect", statOrder = { 4149 }, level = 66, group = "EnchantmentDoubleSlashRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3854723321] = { "16% increased Lacerate Area of Effect" }, } }, + ["EnchantmentDoubleSlashRadius2"] = { affix = "Enchantment Double Slash Area Of Effect 2", "24% increased Lacerate Area of Effect", statOrder = { 4149 }, level = 75, group = "EnchantmentDoubleSlashRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3854723321] = { "24% increased Lacerate Area of Effect" }, } }, + ["EnchantmentDoubleSlashAddedPhysToBleeding1"] = { affix = "Enchantment Double Slash Added Phys To Bleeding 1", "Lacerate deals (4-8) to (10-15) added Physical Damage against Bleeding Enemies", statOrder = { 6266 }, level = 66, group = "EnchantmentDoubleSlashAddedPhysToBleeding", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [732320584] = { "Lacerate deals (4-8) to (10-15) added Physical Damage against Bleeding Enemies" }, } }, + ["EnchantmentDoubleSlashAddedPhysToBleeding2"] = { affix = "Enchantment Double Slash Added Phys To Bleeding 2", "Lacerate deals (14-18) to (20-25) added Physical Damage against Bleeding Enemies", statOrder = { 6266 }, level = 75, group = "EnchantmentDoubleSlashAddedPhysToBleeding", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [732320584] = { "Lacerate deals (14-18) to (20-25) added Physical Damage against Bleeding Enemies" }, } }, + ["EnchantmentDoubleStrikeAttackSpeed1"] = { affix = "Enchantment Double Strike Attack Speed 1", "10% increased Double Strike Attack Speed", statOrder = { 3853 }, level = 66, group = "EnchantmentDoubleStrikeAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2779309910] = { "10% increased Double Strike Attack Speed" }, } }, + ["EnchantmentDoubleStrikeAttackSpeed2"] = { affix = "Enchantment Double Strike Attack Speed 2", "15% increased Double Strike Attack Speed", statOrder = { 3853 }, level = 75, group = "EnchantmentDoubleStrikeAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2779309910] = { "15% increased Double Strike Attack Speed" }, } }, + ["EnchantmentDoubleStrikeCriticalStrikeChance1"] = { affix = "Enchantment Double Strike Critical Strike Chance 1", "60% increased Double Strike Critical Strike Chance", statOrder = { 3936 }, level = 66, group = "EnchantmentDoubleStrikeCriticalStrikeChance", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1201942540] = { "60% increased Double Strike Critical Strike Chance" }, } }, + ["EnchantmentDoubleStrikeCriticalStrikeChance2"] = { affix = "Enchantment Double Strike Critical Strike Chance 2", "90% increased Double Strike Critical Strike Chance", statOrder = { 3936 }, level = 75, group = "EnchantmentDoubleStrikeCriticalStrikeChance", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1201942540] = { "90% increased Double Strike Critical Strike Chance" }, } }, + ["EnchantmentDoubleStrikeDoubleDamageVsBleeding1___"] = { affix = "Enchantment Double Strike Double Damage Vs Bleeding 1", "Double Strike has a 10% chance to deal Double Damage to Bleeding Enemies", statOrder = { 6267 }, level = 66, group = "EnchantmentDoubleStrikeDoubleDamageVsBleeding", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3125201823] = { "Double Strike has a 10% chance to deal Double Damage to Bleeding Enemies" }, } }, + ["EnchantmentDoubleStrikeDoubleDamageVsBleeding2"] = { affix = "Enchantment Double Strike Double Damage Vs Bleeding 2", "Double Strike has a 15% chance to deal Double Damage to Bleeding Enemies", statOrder = { 6267 }, level = 75, group = "EnchantmentDoubleStrikeDoubleDamageVsBleeding", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3125201823] = { "Double Strike has a 15% chance to deal Double Damage to Bleeding Enemies" }, } }, + ["EnchantmentDreadBannerEffect1"] = { affix = "Enchantment Dread Banner Effect 1", "Dread Banner has 25% increased Aura Effect", statOrder = { 6269 }, level = 66, group = "EnchantmentDreadBannerEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "aura" }, tradeHashes = { [287319069] = { "Dread Banner has 25% increased Aura Effect" }, } }, + ["EnchantmentDreadBannerEffect2"] = { affix = "Enchantment Dread Banner Effect 2", "Dread Banner has 40% increased Aura Effect", statOrder = { 6269 }, level = 75, group = "EnchantmentDreadBannerEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "aura" }, tradeHashes = { [287319069] = { "Dread Banner has 40% increased Aura Effect" }, } }, + ["EnchantmentDualStrikeAttackSpeed1"] = { affix = "Enchantment Dual Strike Attack Speed 1", "10% increased Dual Strike Attack Speed", statOrder = { 3854 }, level = 66, group = "EnchantmentDualStrikeAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1917107304] = { "10% increased Dual Strike Attack Speed" }, } }, + ["EnchantmentDualStrikeAttackSpeed2"] = { affix = "Enchantment Dual Strike Attack Speed 2", "15% increased Dual Strike Attack Speed", statOrder = { 3854 }, level = 75, group = "EnchantmentDualStrikeAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1917107304] = { "15% increased Dual Strike Attack Speed" }, } }, + ["EnchantmentDualStrikeCriticalStrikeChance1"] = { affix = "Enchantment Dual Strike Critical Strike Chance 1", "60% increased Dual Strike Critical Strike Chance", statOrder = { 3937 }, level = 66, group = "EnchantmentDualStrikeCriticalStrikeChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2729530556] = { "60% increased Dual Strike Critical Strike Chance" }, } }, + ["EnchantmentDualStrikeCriticalStrikeChance2"] = { affix = "Enchantment Dual Strike Critical Strike Chance 2", "90% increased Dual Strike Critical Strike Chance", statOrder = { 3937 }, level = 75, group = "EnchantmentDualStrikeCriticalStrikeChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2729530556] = { "90% increased Dual Strike Critical Strike Chance" }, } }, + ["EnchantmentEarthquakeDuration1"] = { affix = "Enchantment Earthquake Duration 1", "20% reduced Earthquake Duration", statOrder = { 3926 }, level = 66, group = "EnchantmentEarthquakeDuration", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3917881666] = { "20% reduced Earthquake Duration" }, } }, + ["EnchantmentEarthquakeDuration2"] = { affix = "Enchantment Earthquake Duration 2", "30% reduced Earthquake Duration", statOrder = { 3926 }, level = 75, group = "EnchantmentEarthquakeDuration", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3917881666] = { "30% reduced Earthquake Duration" }, } }, + ["EnchantmentEarthquakeRadius1"] = { affix = "Enchantment Earthquake Area Of Effect 1", "16% increased Earthquake Area of Effect", statOrder = { 3844 }, level = 66, group = "EnchantmentEarthquakeRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [684174846] = { "16% increased Earthquake Area of Effect" }, } }, + ["EnchantmentEarthquakeRadius2"] = { affix = "Enchantment Earthquake Area Of Effect 2", "24% increased Earthquake Area of Effect", statOrder = { 3844 }, level = 75, group = "EnchantmentEarthquakeRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [684174846] = { "24% increased Earthquake Area of Effect" }, } }, + ["EnchantmentEarthquakeDamagePerDuration1"] = { affix = "Enchantment Earthquake Damage per 0.1s Duration 1", "Earthquake deals 5% increased Damage per 0.1 seconds Duration", statOrder = { 6286 }, level = 66, group = "EnchantmentEarthquakeDamagePerDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2068943099] = { "Earthquake deals 5% increased Damage per 0.1 seconds Duration" }, } }, + ["EnchantmentEarthquakeDamagePerDuration2"] = { affix = "Enchantment Earthquake Damage per 0.1s Duration 2", "Earthquake deals 8% increased Damage per 0.1 seconds Duration", statOrder = { 6286 }, level = 75, group = "EnchantmentEarthquakeDamagePerDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2068943099] = { "Earthquake deals 8% increased Damage per 0.1 seconds Duration" }, } }, + ["EnchantmentElementalHitAttackSpeed1"] = { affix = "Enchantment Elemental Hit Attack Speed 1", "10% increased Elemental Hit Attack Speed", statOrder = { 3861 }, level = 66, group = "EnchantmentElementalHitAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1151217691] = { "10% increased Elemental Hit Attack Speed" }, } }, + ["EnchantmentElementalHitAttackSpeed2"] = { affix = "Enchantment Elemental Hit Attack Speed 2", "15% increased Elemental Hit Attack Speed", statOrder = { 3861 }, level = 75, group = "EnchantmentElementalHitAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1151217691] = { "15% increased Elemental Hit Attack Speed" }, } }, + ["EnchantmentElementalHitChanceToFreezeShockIgnite1"] = { affix = "Enchantment Elemental Hit Chance To Freeze Shock Ignite 1", "Elemental Hit has +20% chance to Freeze, Shock and Ignite", statOrder = { 3978 }, level = 66, group = "EnchantmentElementalHitChanceToFreezeShockIgnite", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "attack", "ailment" }, tradeHashes = { [3205997967] = { "Elemental Hit has +20% chance to Freeze, Shock and Ignite" }, } }, + ["EnchantmentElementalHitChanceToFreezeShockIgnite2"] = { affix = "Enchantment Elemental Hit Chance To Freeze Shock Ignite 2", "Elemental Hit has +30% chance to Freeze, Shock and Ignite", statOrder = { 3978 }, level = 75, group = "EnchantmentElementalHitChanceToFreezeShockIgnite", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "attack", "ailment" }, tradeHashes = { [3205997967] = { "Elemental Hit has +30% chance to Freeze, Shock and Ignite" }, } }, + ["EnchantmentElementalWeaknessCurseEffect1"] = { affix = "Enchantment Elemental Weakness Curse Effect 1", "10% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 66, group = "EnchantmentElementalWeaknessCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "10% increased Elemental Weakness Curse Effect" }, } }, + ["EnchantmentElementalWeaknessCurseEffect2"] = { affix = "Enchantment Elemental Weakness Curse Effect 2", "15% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "EnchantmentElementalWeaknessCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "15% increased Elemental Weakness Curse Effect" }, } }, + ["EnchantmentElementalWeaknessDuration1"] = { affix = "Enchantment Elemental Weakness Duration 1", "30% increased Elemental Weakness Duration", statOrder = { 3916 }, level = 66, group = "EnchantmentElementalWeaknessDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2690620076] = { "30% increased Elemental Weakness Duration" }, } }, + ["EnchantmentElementalWeaknessDuration2"] = { affix = "Enchantment Elemental Weakness Duration 2", "45% increased Elemental Weakness Duration", statOrder = { 3916 }, level = 75, group = "EnchantmentElementalWeaknessDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2690620076] = { "45% increased Elemental Weakness Duration" }, } }, + ["EnchantmentEnduringCryCooldownSpeed1"] = { affix = "Enchantment Enduring Cry Cooldown Speed 1", "Enduring Cry has 20% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 66, group = "EnchantmentEnduringCryCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has 20% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentEnduringCryCooldownSpeed2"] = { affix = "Enchantment Enduring Cry Cooldown Speed 2", "Enduring Cry has 30% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnchantmentEnduringCryCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has 30% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentEnduringCryLifeRegeneration1"] = { affix = "Enchantment Enduring Cry Cooldown Speed 1", "Enduring Cry has 24% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 66, group = "EnchantmentEnduringCryCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has 24% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentEnduringCryLifeRegeneration2"] = { affix = "Enchantment Enduring Cry Cooldown Speed 2", "Enduring Cry has 36% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnchantmentEnduringCryCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has 36% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentEnduringCryAdditionalCharge1"] = { affix = "Enchantment Enduring Cry Additional Endurance Charge 1", "Enduring Cry grants 1 additional Endurance Charge to you and Allied Players", statOrder = { 6364 }, level = 75, group = "EnchantmentEnduringCryAdditionalCharge", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [2977067558] = { "Enduring Cry grants 1 additional Endurance Charge to you and Allied Players" }, } }, + ["EnchantmentEnergyBladeLocalAttackSpeed1__"] = { affix = "Enchantment Energy Blade Attack Speed 1", "Energy Blades have 10% increased Attack Speed", statOrder = { 10237 }, level = 66, group = "EnchantmentEnergyBladeLocalAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1217516474] = { "Energy Blades have 10% increased Attack Speed" }, } }, + ["EnchantmentEnergyBladeLocalAttackSpeed2_"] = { affix = "Enchantment Energy Blade Attack Speed 2", "Energy Blades have 15% increased Attack Speed", statOrder = { 10237 }, level = 75, group = "EnchantmentEnergyBladeLocalAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1217516474] = { "Energy Blades have 15% increased Attack Speed" }, } }, + ["EnchantmentEnergyBladeLocalLightningPenetration1"] = { affix = "Enchantment Energy Blade Lightning Penetration 1", "Attacks with Energy Blades Penetrate 8% Lightning Resistance", statOrder = { 10238 }, level = 66, group = "EnchantmentEnergyBladeLocalLightningPenetration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1501151168] = { "Attacks with Energy Blades Penetrate 8% Lightning Resistance" }, } }, + ["EnchantmentEnergyBladeLocalLightningPenetration2"] = { affix = "Enchantment Energy Blade Lightning Penetration 2", "Attacks with Energy Blades Penetrate 12% Lightning Resistance", statOrder = { 10238 }, level = 75, group = "EnchantmentEnergyBladeLocalLightningPenetration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1501151168] = { "Attacks with Energy Blades Penetrate 12% Lightning Resistance" }, } }, + ["EnchantmentEnfeebleCurseEffect1"] = { affix = "Enchantment Enfeeble Curse Effect 1", "10% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 66, group = "EnchantmentEnfeebleCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3293830776] = { "10% increased Enfeeble Curse Effect" }, } }, + ["EnchantmentEnfeebleCurseEffect2"] = { affix = "Enchantment Enfeeble Curse Effect 2", "15% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "EnchantmentEnfeebleCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3293830776] = { "15% increased Enfeeble Curse Effect" }, } }, + ["EnchantmentEnfeebleDuration1"] = { affix = "Enchantment Enfeeble Duration 1", "30% increased Enfeeble Duration", statOrder = { 3915 }, level = 66, group = "EnchantmentEnfeebleDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [516587640] = { "30% increased Enfeeble Duration" }, } }, + ["EnchantmentEnfeebleDuration2"] = { affix = "Enchantment Enfeeble Duration 2", "45% increased Enfeeble Duration", statOrder = { 3915 }, level = 75, group = "EnchantmentEnfeebleDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [516587640] = { "45% increased Enfeeble Duration" }, } }, + ["EnchantmentEtherealKnivesProjectileSpeed1"] = { affix = "Enchantment Ethereal Knives Projectile Speed 1", "20% increased Ethereal Knives Projectile Speed", statOrder = { 3895 }, level = 66, group = "EnchantmentEtherealKnivesProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [760994068] = { "20% increased Ethereal Knives Projectile Speed" }, } }, + ["EnchantmentEtherealKnivesProjectileSpeed2_"] = { affix = "Enchantment Ethereal Knives Projectile Speed 2", "30% increased Ethereal Knives Projectile Speed", statOrder = { 3895 }, level = 75, group = "EnchantmentEtherealKnivesProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [760994068] = { "30% increased Ethereal Knives Projectile Speed" }, } }, + ["EnchantmentEtherealKnivesNova1"] = { affix = "Enchantment Ethereal Knives Projectiles Fire in Circle 1", "Ethereal Knives fires Projectiles in a circle", statOrder = { 6475 }, level = 75, group = "EnchantmentEtherealKnivesNova", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [3491968196] = { "Ethereal Knives fires Projectiles in a circle" }, } }, + ["EnchantmentEtherealKnivesNumberOfTargetsToPierce1"] = { affix = "Enchantment Ethereal Knives Number Of Targets To Pierce 1", "Ethereal Knives Pierces an additional Target", statOrder = { 6474 }, level = 75, group = "EnchantmentEtherealKnivesNumberOfTargetsToPierce", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster" }, tradeHashes = { [4264622444] = { "Ethereal Knives Pierces an additional Target" }, } }, + ["EnchantmentExplosiveArrowRadius1"] = { affix = "Enchantment Explosive Arrow Area Of Effect 1", "Explosive Arrow has 16% increased Area of Effect", statOrder = { 3825 }, level = 66, group = "EnchantmentExplosiveArrowRadius", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack" }, tradeHashes = { [1041365824] = { "Explosive Arrow has 16% increased Area of Effect" }, } }, + ["EnchantmentExplosiveArrowRadius2"] = { affix = "Enchantment Explosive Arrow Area Of Effect 2", "Explosive Arrow has 24% increased Area of Effect", statOrder = { 3825 }, level = 75, group = "EnchantmentExplosiveArrowRadius", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack" }, tradeHashes = { [1041365824] = { "Explosive Arrow has 24% increased Area of Effect" }, } }, + ["EnchantmentExplosiveArrowAttackSpeed1"] = { affix = "Enchantment Explosive Arrow Attack Speed 1", "Explosive Arrow has 10% increased Attack Speed", statOrder = { 4131 }, level = 66, group = "EnchantmentExplosiveArrowAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3949159285] = { "Explosive Arrow has 10% increased Attack Speed" }, } }, + ["EnchantmentExplosiveArrowAttackSpeed2"] = { affix = "Enchantment Explosive Arrow Attack Speed 2", "Explosive Arrow has 15% increased Attack Speed", statOrder = { 4131 }, level = 75, group = "EnchantmentExplosiveArrowAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3949159285] = { "Explosive Arrow has 15% increased Attack Speed" }, } }, + ["EnchantmentExplosiveConcoctionRadius1"] = { affix = "Enchantment Explosive Concoction Area Of Effect 1", "16% increased Explosive Concoction Area of Effect", statOrder = { 6521 }, level = 66, group = "EnchantmentExplosiveConcoctionRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [4100281103] = { "16% increased Explosive Concoction Area of Effect" }, } }, + ["EnchantmentExplosiveConcoctionRadius2"] = { affix = "Enchantment Explosive Concoction Area Of Effect 2", "24% increased Explosive Concoction Area of Effect", statOrder = { 6521 }, level = 75, group = "EnchantmentExplosiveConcoctionRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [4100281103] = { "24% increased Explosive Concoction Area of Effect" }, } }, + ["EnchantmentExplosiveConcoctionCharges1_"] = { affix = "Enchantment Explosive Concoction Flask Charges 1", "Explosive Concoction uses 8% reduced Flask Charges", statOrder = { 6520 }, level = 66, group = "EnchantmentExplosiveConcoctionCharges", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "flask", "attack" }, tradeHashes = { [1907051864] = { "Explosive Concoction uses 8% reduced Flask Charges" }, } }, + ["EnchantmentExplosiveConcoctionCharges2"] = { affix = "Enchantment Explosive Concoction Flask Charges 2", "Explosive Concoction uses 12% reduced Flask Charges", statOrder = { 6520 }, level = 75, group = "EnchantmentExplosiveConcoctionCharges", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "flask", "attack" }, tradeHashes = { [1907051864] = { "Explosive Concoction uses 12% reduced Flask Charges" }, } }, + ["EnchantmentExsanguinateDuration1_"] = { affix = "Enchantment Exsanguinate Duration 1", "20% increased Exsanguinate Duration", statOrder = { 6529 }, level = 66, group = "EnchantmentExsanguinateDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [292721070] = { "20% increased Exsanguinate Duration" }, } }, + ["EnchantmentExsanguinateDuration2_"] = { affix = "Enchantment Exsanguinate Duration 2", "30% increased Exsanguinate Duration", statOrder = { 6529 }, level = 75, group = "EnchantmentExsanguinateDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [292721070] = { "30% increased Exsanguinate Duration" }, } }, + ["EnchantmentExsanguinateChainChance1"] = { affix = "Enchantment Exsanguinate Additional Chain Chance 1", "Exsanguinate has a 25% chance to Chain an additional time", statOrder = { 6525 }, level = 75, group = "EnchantmentExsanguinateChainChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2304517189] = { "Exsanguinate has a 25% chance to Chain an additional time" }, } }, + ["EnchantmentEyeOfWinterProjectileSpeed1"] = { affix = "Enchantment Eye of Winter Projectile Speed 1", "20% increased Eye of Winter Projectile Speed", statOrder = { 6542 }, level = 66, group = "EnchantmentEyeOfWinterProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [1739537617] = { "20% increased Eye of Winter Projectile Speed" }, } }, + ["EnchantmentEyeOfWinterProjectileSpeed2"] = { affix = "Enchantment Eye of Winter Projectile Speed 2", "30% increased Eye of Winter Projectile Speed", statOrder = { 6542 }, level = 75, group = "EnchantmentEyeOfWinterProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [1739537617] = { "30% increased Eye of Winter Projectile Speed" }, } }, + ["EnchantmentEyeOfWinterShardFrequency1__"] = { affix = "Enchantment Eye of Winter Shard Frequency 1", "Eye of Winter fires Shard projectiles with 8% increased Frequency during flight", statOrder = { 6543 }, level = 66, group = "EnchantmentEyeOfWinterShardFrequency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [173612563] = { "Eye of Winter fires Shard projectiles with 8% increased Frequency during flight" }, } }, + ["EnchantmentEyeOfWinterShardFrequency2___"] = { affix = "Enchantment Eye of Winter Shard Frequency 2", "Eye of Winter fires Shard projectiles with 12% increased Frequency during flight", statOrder = { 6543 }, level = 75, group = "EnchantmentEyeOfWinterShardFrequency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [173612563] = { "Eye of Winter fires Shard projectiles with 12% increased Frequency during flight" }, } }, + ["EnchantmentFireballCastSpeed1"] = { affix = "Enchantment Fireball Cast Speed 1", "8% increased Fireball Cast Speed", statOrder = { 3871 }, level = 66, group = "EnchantmentFireballCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2231403318] = { "8% increased Fireball Cast Speed" }, } }, + ["EnchantmentFireballCastSpeed2"] = { affix = "Enchantment Fireball Cast Speed 2", "12% increased Fireball Cast Speed", statOrder = { 3871 }, level = 75, group = "EnchantmentFireballCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2231403318] = { "12% increased Fireball Cast Speed" }, } }, + ["EnchantmentFireballIgniteChance1"] = { affix = "Enchantment Fireball Ignite Chance 1", "Fireball has +20% chance to Ignite", statOrder = { 3960 }, level = 66, group = "EnchantmentFireballIgniteChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "fire", "caster", "ailment" }, tradeHashes = { [2098790581] = { "Fireball has +20% chance to Ignite" }, } }, + ["EnchantmentFireballIgniteChance2"] = { affix = "Enchantment Fireball Ignite Chance 2", "Fireball has +30% chance to Ignite", statOrder = { 3960 }, level = 75, group = "EnchantmentFireballIgniteChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "fire", "caster", "ailment" }, tradeHashes = { [2098790581] = { "Fireball has +30% chance to Ignite" }, } }, + ["EnchantmentFireBeamCastSpeed1"] = { affix = "Enchantment Fire Beam Cast Speed 1", "8% increased Scorching Ray Cast Speed", statOrder = { 6554 }, level = 66, group = "EnchantmentFireBeamCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3279758713] = { "8% increased Scorching Ray Cast Speed" }, } }, + ["EnchantmentFireBeamCastSpeed2"] = { affix = "Enchantment Fire Beam Cast Speed 2", "12% increased Scorching Ray Cast Speed", statOrder = { 6554 }, level = 75, group = "EnchantmentFireBeamCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3279758713] = { "12% increased Scorching Ray Cast Speed" }, } }, + ["EnchantmentFireBeamLength1"] = { affix = "Enchantment Fire Beam Length 1", "10% increased Scorching Ray beam length", statOrder = { 6559 }, level = 66, group = "EnchantmentFireBeamLength", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [702909553] = { "10% increased Scorching Ray beam length" }, } }, + ["EnchantmentFireBeamLength2"] = { affix = "Enchantment Fire Beam Length 2", "15% increased Scorching Ray beam length", statOrder = { 6559 }, level = 75, group = "EnchantmentFireBeamLength", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [702909553] = { "15% increased Scorching Ray beam length" }, } }, + ["EnchantmentFireNovaMineCastSpeed1"] = { affix = "Enchantment Pyroclast Mine Throwing Speed 1", "Pyroclast Mine has 10% increased Throwing Speed", statOrder = { 9403 }, level = 66, group = "EnchantmentMortarBarrageMineThrowingSpeedHalved", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2005440071] = { "Pyroclast Mine has 10% increased Throwing Speed" }, } }, + ["EnchantmentFireNovaMineCastSpeed2"] = { affix = "Enchantment Pyroclast Mine Throwing Speed 2", "Pyroclast Mine has 15% increased Throwing Speed", statOrder = { 9403 }, level = 75, group = "EnchantmentMortarBarrageMineThrowingSpeedHalved", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2005440071] = { "Pyroclast Mine has 15% increased Throwing Speed" }, } }, + ["EnchantmentFireNovaMineNumOfAdditionalRepeats1"] = { affix = "Enchantment Pyroclast Mine Additional Projectiles 1", "Pyroclast Mine fires an additional Projectile", statOrder = { 9402 }, level = 66, group = "EnchantmentMortarBarrageMineNumProjectiles", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster" }, tradeHashes = { [841281094] = { "Pyroclast Mine fires an additional Projectile" }, } }, + ["EnchantmentFireNovaMineNumOfAdditionalRepeats2"] = { affix = "Enchantment Pyroclast Mine Additional Projectiles 2", "Pyroclast Mine fires 2 additional Projectiles", statOrder = { 9402 }, level = 75, group = "EnchantmentMortarBarrageMineNumProjectiles", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster" }, tradeHashes = { [841281094] = { "Pyroclast Mine fires 2 additional Projectiles" }, } }, + ["EnchantmentFirestormDuration1"] = { affix = "Enchantment Firestorm Duration 1", "20% increased Firestorm Duration", statOrder = { 3929 }, level = 66, group = "EnchantmentFirestormDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1691710359] = { "20% increased Firestorm Duration" }, } }, + ["EnchantmentFirestormDuration2"] = { affix = "Enchantment Firestorm Duration 2", "30% increased Firestorm Duration", statOrder = { 3929 }, level = 75, group = "EnchantmentFirestormDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1691710359] = { "30% increased Firestorm Duration" }, } }, + ["EnchantmentFirestormExplosionAreaOfEffect1"] = { affix = "Enchantment Firestorm Explosion Area Of Effect 1", "16% increased Firestorm explosion Area of Effect", statOrder = { 3969 }, level = 66, group = "EnchantmentFirestormExplosionAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3931013900] = { "16% increased Firestorm explosion Area of Effect" }, } }, + ["EnchantmentFirestormExplosionAreaOfEffect2"] = { affix = "Enchantment Firestorm Explosion Area Of Effect 2", "24% increased Firestorm explosion Area of Effect", statOrder = { 3969 }, level = 75, group = "EnchantmentFirestormExplosionAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3931013900] = { "24% increased Firestorm explosion Area of Effect" }, } }, + ["EnchantmentFireTrapBurningDamage1"] = { affix = "Enchantment Fire Trap Burning Damage 1", "40% increased Fire Trap Burning Damage", statOrder = { 3959 }, level = 66, group = "EnchantmentFireTrapBurningDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [345703394] = { "40% increased Fire Trap Burning Damage" }, } }, + ["EnchantmentFireTrapBurningDamage2"] = { affix = "Enchantment Fire Trap Burning Damage 2", "60% increased Fire Trap Burning Damage", statOrder = { 3959 }, level = 75, group = "EnchantmentFireTrapBurningDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [345703394] = { "60% increased Fire Trap Burning Damage" }, } }, + ["EnchantmentFireTrapCooldownSpeed1"] = { affix = "", "20% increased Fire Trap Damage", statOrder = { 3632 }, level = 66, group = "EnchantmentFireTrapCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [181307038] = { "20% increased Fire Trap Damage" }, } }, + ["EnchantmentFireTrapCooldownSpeed2"] = { affix = "", "30% increased Fire Trap Damage", statOrder = { 3632 }, level = 75, group = "EnchantmentFireTrapCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [181307038] = { "30% increased Fire Trap Damage" }, } }, + ["EnchantmentFireTrapBurningGroundDuration1"] = { affix = "Enchantment Fire Trap Burning Ground Duration 1", "30% increased Fire Trap Burning Ground Duration", statOrder = { 6590 }, level = 66, group = "EnchantmentFireTrapBurningGroundDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3279786746] = { "30% increased Fire Trap Burning Ground Duration" }, } }, + ["EnchantmentFireTrapBurningGroundDuration2"] = { affix = "Enchantment Fire Trap Burning Ground Duration 2", "45% increased Fire Trap Burning Ground Duration", statOrder = { 6590 }, level = 75, group = "EnchantmentFireTrapBurningGroundDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3279786746] = { "45% increased Fire Trap Burning Ground Duration" }, } }, + ["EnchantmentFlameblastCriticalStrikeChance1"] = { affix = "Enchantment Flameblast Critical Strike Chance 1", "60% increased Flameblast Critical Strike Chance", statOrder = { 3940 }, level = 66, group = "EnchantmentFlameblastCriticalStrikeChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3053448465] = { "60% increased Flameblast Critical Strike Chance" }, } }, + ["EnchantmentFlameblastCriticalStrikeChance2"] = { affix = "Enchantment Flameblast Critical Strike Chance 2", "90% increased Flameblast Critical Strike Chance", statOrder = { 3940 }, level = 75, group = "EnchantmentFlameblastCriticalStrikeChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3053448465] = { "90% increased Flameblast Critical Strike Chance" }, } }, + ["EnchantmentFlameblastRadius1"] = { affix = "Enchantment Flameblast Area Of Effect 1", "16% increased Flameblast Area of Effect", statOrder = { 3826 }, level = 66, group = "EnchantmentFlameblastRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1532964880] = { "16% increased Flameblast Area of Effect" }, } }, + ["EnchantmentFlameblastRadius2_"] = { affix = "Enchantment Flameblast Area Of Effect 2", "24% increased Flameblast Area of Effect", statOrder = { 3826 }, level = 75, group = "EnchantmentFlameblastRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1532964880] = { "24% increased Flameblast Area of Effect" }, } }, + ["EnchantmentFlameDashCooldownSpeed1"] = { affix = "Enchantment Flame Dash Cooldown Speed 1", "Flame Dash has 20% increased Cooldown Recovery Rate", statOrder = { 3881 }, level = 66, group = "EnchantmentFlameDashCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1440798870] = { "Flame Dash has 20% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentFlameDashCooldownSpeed2"] = { affix = "Enchantment Flame Dash Cooldown Speed 2", "Flame Dash has 30% increased Cooldown Recovery Rate", statOrder = { 3881 }, level = 75, group = "EnchantmentFlameDashCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1440798870] = { "Flame Dash has 30% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentFlameGolemElementalResistances1"] = { affix = "Enchantment Flame Golem Elemental Resistances 1", "+24% increased Flame Golem Elemental Resistances", statOrder = { 3985 }, level = 66, group = "EnchantmentFlameGolemElementalResistances", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1298820272] = { "+24% increased Flame Golem Elemental Resistances" }, } }, + ["EnchantmentFlameGolemElementalResistances2"] = { affix = "Enchantment Flame Golem Elemental Resistances 2", "+36% increased Flame Golem Elemental Resistances", statOrder = { 3985 }, level = 75, group = "EnchantmentFlameGolemElementalResistances", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1298820272] = { "+36% increased Flame Golem Elemental Resistances" }, } }, + ["EnchantmentFlameGolemGrantedBuffEffect1_"] = { affix = "Enchantment Flame Golem Granted Buff Effect 1", "100% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 66, group = "EnchantmentFlameGolemGrantedBuffEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [269930125] = { "100% increased Effect of the Buff granted by your Flame Golems" }, } }, + ["EnchantmentFlameGolemGrantedBuffEffect2"] = { affix = "Enchantment Flame Golem Granted Buff Effect 2", "150% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "EnchantmentFlameGolemGrantedBuffEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [269930125] = { "150% increased Effect of the Buff granted by your Flame Golems" }, } }, + ["EnchantmentFlameSurgeCriticalStrikeChance1"] = { affix = "Enchantment Flame Surge Critical Strike Chance 1", "60% increased Flame Surge Critical Strike Chance", statOrder = { 3941 }, level = 66, group = "EnchantmentFlameSurgeCriticalStrikeChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [1030003515] = { "60% increased Flame Surge Critical Strike Chance" }, } }, + ["EnchantmentFlameSurgeCriticalStrikeChance2_"] = { affix = "Enchantment Flame Surge Critical Strike Chance 2", "90% increased Flame Surge Critical Strike Chance", statOrder = { 3941 }, level = 75, group = "EnchantmentFlameSurgeCriticalStrikeChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [1030003515] = { "90% increased Flame Surge Critical Strike Chance" }, } }, + ["EnchantmentFlameSurgeVsBurningEnemies1"] = { affix = "Enchantment Flame Surge Vs Burning Enemies 1", "40% increased Flame Surge Damage with Hits and Ailments against Burning Enemies", statOrder = { 3970 }, level = 66, group = "EnchantmentFlameSurgeVsBurningEnemies", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [430890565] = { "40% increased Flame Surge Damage with Hits and Ailments against Burning Enemies" }, } }, + ["EnchantmentFlameSurgeVsBurningEnemies2_"] = { affix = "Enchantment Flame Surge Vs Burning Enemies 2", "60% increased Flame Surge Damage with Hits and Ailments against Burning Enemies", statOrder = { 3970 }, level = 75, group = "EnchantmentFlameSurgeVsBurningEnemies", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [430890565] = { "60% increased Flame Surge Damage with Hits and Ailments against Burning Enemies" }, } }, + ["EnchantmentFlamethrowerTrapCastSpeed1"] = { affix = "Enchantment Flamethrower Trap Throwing Speed 1", "8% increased Flamethrower Trap Throwing Speed", statOrder = { 6631 }, level = 66, group = "EnchantmentFlamethrowerTrapTrapThrowingSpeed", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [1251350365] = { "8% increased Flamethrower Trap Throwing Speed" }, } }, + ["EnchantmentFlamethrowerTrapCastSpeed2"] = { affix = "Enchantment Flamethrower Trap Throwing Speed 2", "12% increased Flamethrower Trap Throwing Speed", statOrder = { 6631 }, level = 75, group = "EnchantmentFlamethrowerTrapTrapThrowingSpeed", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [1251350365] = { "12% increased Flamethrower Trap Throwing Speed" }, } }, + ["EnchantmentFlamethrowerTrapCooldownSpeed1"] = { affix = "Enchantment Flamethrower Trap Cooldown Speed 1", "Flamethrower Trap has 10% increased Cooldown Recovery Rate", statOrder = { 6627 }, level = 66, group = "EnchantmentFlamethrowerTrapCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 80, 0 }, modTags = { "caster" }, tradeHashes = { [2962501808] = { "Flamethrower Trap has 10% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentFlamethrowerTrapCooldownSpeed2"] = { affix = "Enchantment Flamethrower Trap Cooldown Speed 2", "Flamethrower Trap has 15% increased Cooldown Recovery Rate", statOrder = { 6627 }, level = 75, group = "EnchantmentFlamethrowerTrapCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 80, 0 }, modTags = { "caster" }, tradeHashes = { [2962501808] = { "Flamethrower Trap has 15% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentFlamethrowerTrapDuration1"] = { affix = "Enchantment Flamethrower Trap Duration 1", "Flamethrower Trap has 20% increased Skill Effect Duration", statOrder = { 6629 }, level = 66, group = "EnchantmentFlamethrowerTrapDuration", weightKey = { "helmet", "default", }, weightVal = { 80, 0 }, modTags = { "caster" }, tradeHashes = { [525771896] = { "Flamethrower Trap has 20% increased Skill Effect Duration" }, } }, + ["EnchantmentFlamethrowerTrapDuration2"] = { affix = "Enchantment Flamethrower Trap Duration 2", "Flamethrower Trap has 30% increased Skill Effect Duration", statOrder = { 6629 }, level = 75, group = "EnchantmentFlamethrowerTrapDuration", weightKey = { "helmet", "default", }, weightVal = { 80, 0 }, modTags = { "caster" }, tradeHashes = { [525771896] = { "Flamethrower Trap has 30% increased Skill Effect Duration" }, } }, + ["EnchantmentFlamethrowerAdditionalFlamethrowers1"] = { affix = "Enchantment Flamethrower Additional Flamethrowers 1", "Flamethrower Trap has an additional Flame", statOrder = { 6630 }, level = 66, group = "EnchantmentFlamethrowerAdditionalFlamethrowers", weightKey = { "helmet", "default", }, weightVal = { 60, 0 }, modTags = { "caster" }, tradeHashes = { [1452255482] = { "Flamethrower Trap has an additional Flame" }, } }, + ["EnchantmentFlamethrowerAdditionalFlamethrowers2"] = { affix = "Enchantment Flamethrower Additional Flamethrowers 2", "Flamethrower Trap has 2 additional Flames", statOrder = { 6630 }, level = 75, group = "EnchantmentFlamethrowerAdditionalFlamethrowers", weightKey = { "helmet", "default", }, weightVal = { 60, 0 }, modTags = { "caster" }, tradeHashes = { [1452255482] = { "Flamethrower Trap has 2 additional Flames" }, } }, + ["EnchantmentFlameTotemNumOfAdditionalProjectiles1"] = { affix = "Enchantment Flame Totem Num Of Additional Projectiles 1", "Holy Flame Totem fires an additional Projectile", statOrder = { 3953 }, level = 66, group = "EnchantmentFlameTotemNumOfAdditionalProjectiles", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [775200811] = { "Holy Flame Totem fires an additional Projectile" }, } }, + ["EnchantmentFlameTotemNumOfAdditionalProjectiles2"] = { affix = "Enchantment Flame Totem Num Of Additional Projectiles 2", "Holy Flame Totem fires 2 additional Projectiles", statOrder = { 3953 }, level = 75, group = "EnchantmentFlameTotemNumOfAdditionalProjectiles", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [775200811] = { "Holy Flame Totem fires 2 additional Projectiles" }, } }, + ["EnchantmentFlameTotemProjectileSpeed1"] = { affix = "Enchantment Flame Totem Projectile Speed 1", "Holy Flame Totem has 20% increased Projectile Speed", statOrder = { 3896 }, level = 66, group = "EnchantmentFlameTotemProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4082863126] = { "Holy Flame Totem has 20% increased Projectile Speed" }, } }, + ["EnchantmentFlameTotemProjectileSpeed2"] = { affix = "Enchantment Flame Totem Projectile Speed 2", "Holy Flame Totem has 30% increased Projectile Speed", statOrder = { 3896 }, level = 75, group = "EnchantmentFlameTotemProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4082863126] = { "Holy Flame Totem has 30% increased Projectile Speed" }, } }, + ["EnchantmentFlameTotemConsecratedGroundEnemyDamageTaken1"] = { affix = "Enchantment Flame Totem Consecrated Ground Enemy Damage Taken 1", "Consecrated Ground from Holy Flame Totem applies 6% increased Damage taken to Enemies", statOrder = { 6618 }, level = 66, group = "EnchantmentFlameTotemConsecratedGroundEnemyDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2807947] = { "Consecrated Ground from Holy Flame Totem applies 6% increased Damage taken to Enemies" }, } }, + ["EnchantmentFlameTotemConsecratedGroundEnemyDamageTaken2"] = { affix = "Enchantment Flame Totem Consecrated Ground Enemy Damage Taken 2", "Consecrated Ground from Holy Flame Totem applies 9% increased Damage taken to Enemies", statOrder = { 6618 }, level = 75, group = "EnchantmentFlameTotemConsecratedGroundEnemyDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2807947] = { "Consecrated Ground from Holy Flame Totem applies 9% increased Damage taken to Enemies" }, } }, + ["EnchantmentFlameWallAddedFireDamage1_"] = { affix = "Enchantment Flame Wall Added Damage 1", "Flame Wall grants 19 to 28 Added Fire Damage to Projectiles", statOrder = { 6620 }, level = 66, group = "EnchantmentFlameWallAddedFireDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "fire", "caster" }, tradeHashes = { [3881327877] = { "Flame Wall grants 19 to 28 Added Fire Damage to Projectiles" }, } }, + ["EnchantmentFlameWallAddedFireDamage2"] = { affix = "Enchantment Flame Wall Added Damage 2", "Flame Wall grants 31 to 47 Added Fire Damage to Projectiles", statOrder = { 6620 }, level = 75, group = "EnchantmentFlameWallAddedFireDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "fire", "caster" }, tradeHashes = { [3881327877] = { "Flame Wall grants 31 to 47 Added Fire Damage to Projectiles" }, } }, + ["EnchantmentFlameWallNumberAllowed1_"] = { affix = "Enchantment Flame Wall Count 1", "+1 to maximum number of Flame Walls", statOrder = { 9530 }, level = 75, group = "EnchantmentFlameWallNumberAllowed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1531456858] = { "+1 to maximum number of Flame Walls" }, } }, + ["EnchantmentFlammabilityCurseEffect1"] = { affix = "Enchantment Flammability Curse Effect 1", "10% increased Flammability Curse Effect", statOrder = { 4013 }, level = 66, group = "EnchantmentFlammabilityCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "10% increased Flammability Curse Effect" }, } }, + ["EnchantmentFlammabilityCurseEffect2"] = { affix = "Enchantment Flammability Curse Effect 2", "15% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "EnchantmentFlammabilityCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "15% increased Flammability Curse Effect" }, } }, + ["EnchantmentFlammabilityDuration1"] = { affix = "Enchantment Flammability Duration 1", "30% increased Flammability Duration", statOrder = { 3914 }, level = 66, group = "EnchantmentFlammabilityDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2166622264] = { "30% increased Flammability Duration" }, } }, + ["EnchantmentFlammabilityDuration2"] = { affix = "Enchantment Flammability Duration 2", "45% increased Flammability Duration", statOrder = { 3914 }, level = 75, group = "EnchantmentFlammabilityDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2166622264] = { "45% increased Flammability Duration" }, } }, + ["EnchantmentFleshOfferingDuration1"] = { affix = "Enchantment Flesh Offering Duration 1", "30% increased Flesh Offering Duration", statOrder = { 3902 }, level = 66, group = "EnchantmentFleshOfferingDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [101788216] = { "30% increased Flesh Offering Duration" }, } }, + ["EnchantmentFleshOfferingDuration2"] = { affix = "Enchantment Flesh Offering Duration 2", "45% increased Flesh Offering Duration", statOrder = { 3902 }, level = 75, group = "EnchantmentFleshOfferingDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [101788216] = { "45% increased Flesh Offering Duration" }, } }, + ["EnchantmentFleshOfferingAttackSpeed1__"] = { affix = "Enchantment Flesh Offering Attack Speed 1", "Flesh Offering grants an additional 14% increased Attack Speed", statOrder = { 4122 }, level = 66, group = "EnchantmentFleshOfferingAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed", "minion" }, tradeHashes = { [513715594] = { "Flesh Offering grants an additional 14% increased Attack Speed" }, } }, + ["EnchantmentFleshOfferingAttackSpeed2_"] = { affix = "Enchantment Flesh Offering Attack Speed 2", "Flesh Offering grants an additional 21% increased Attack Speed", statOrder = { 4122 }, level = 75, group = "EnchantmentFleshOfferingAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed", "minion" }, tradeHashes = { [513715594] = { "Flesh Offering grants an additional 21% increased Attack Speed" }, } }, + ["EnchantmentFrostBoltCastSpeed1_"] = { affix = "Enchantment Frost Bolt Cast Speed 1", "10% increased Frostbolt Cast Speed", statOrder = { 4150 }, level = 66, group = "EnchantmentFrostBoltCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4231484190] = { "10% increased Frostbolt Cast Speed" }, } }, + ["EnchantmentFrostBoltCastSpeed2_"] = { affix = "Enchantment Frost Bolt Cast Speed 2", "15% increased Frostbolt Cast Speed", statOrder = { 4150 }, level = 75, group = "EnchantmentFrostBoltCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4231484190] = { "15% increased Frostbolt Cast Speed" }, } }, + ["EnchantmentFrostBoltFreezeChance1"] = { affix = "Enchantment Frost Bolt Freeze Chance 1", "Frostbolt has +10% chance to Freeze", statOrder = { 4151 }, level = 66, group = "EnchantmentFrostBoltFreezeChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "caster", "ailment" }, tradeHashes = { [2774873427] = { "Frostbolt has +10% chance to Freeze" }, } }, + ["EnchantmentFrostBoltFreezeChance2"] = { affix = "Enchantment Frost Bolt Freeze Chance 2", "Frostbolt has +15% chance to Freeze", statOrder = { 4151 }, level = 75, group = "EnchantmentFrostBoltFreezeChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "caster", "ailment" }, tradeHashes = { [2774873427] = { "Frostbolt has +15% chance to Freeze" }, } }, + ["EnchantmentSpiritOfferingDuration1"] = { affix = "Enchantment Spirit Offering Duration 1", "30% increased Spirit Offering Duration", statOrder = { 3903 }, level = 66, group = "EnchantmentSpiritOfferingDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [1063173946] = { "30% increased Spirit Offering Duration" }, } }, + ["EnchantmentSpiritOfferingDuration2"] = { affix = "Enchantment Spirit Offering Duration 2", "45% increased Spirit Offering Duration", statOrder = { 3903 }, level = 75, group = "EnchantmentSpiritOfferingDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [1063173946] = { "45% increased Spirit Offering Duration" }, } }, + ["EnchantmentSpiritOfferingPhysicalAddedAsChaos1_"] = { affix = "Enchantment Spirit Offering Critical Strike Multiplier 1", "Spirit Offering grants +8% to Critical Strike Multiplier", statOrder = { 10208 }, level = 66, group = "EnchantmentSpiritOfferingCriticalStrikeMultiplier", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [1793005352] = { "Spirit Offering grants +8% to Critical Strike Multiplier" }, } }, + ["EnchantmentSpiritOfferingPhysicalAddedAsChaos2_"] = { affix = "Enchantment Spirit Offering Critical Strike Multiplier 2", "Spirit Offering grants +12% to Critical Strike Multiplier", statOrder = { 10208 }, level = 75, group = "EnchantmentSpiritOfferingCriticalStrikeMultiplier", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [1793005352] = { "Spirit Offering grants +12% to Critical Strike Multiplier" }, } }, + ["EnchantmentFlameLinkDuration1"] = { affix = "Enchantment Flame Link Duration 1", "20% increased Flame Link Duration", statOrder = { 6617 }, level = 66, group = "EnchantmentFlameLinkDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3996051430] = { "20% increased Flame Link Duration" }, } }, + ["EnchantmentFlameLinkDuration2"] = { affix = "Enchantment Flame Link Duration 2", "30% increased Flame Link Duration", statOrder = { 6617 }, level = 75, group = "EnchantmentFlameLinkDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3996051430] = { "30% increased Flame Link Duration" }, } }, + ["EnchantmentFlickerStrikeCooldownSpeed1_"] = { affix = "Enchantment Flicker Strike Cooldown Speed 1", "Flicker Strike has 20% increased Cooldown Recovery Rate", statOrder = { 3875 }, level = 66, group = "EnchantmentFlickerStrikeCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1398394628] = { "Flicker Strike has 20% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentFlickerStrikeCooldownSpeed2"] = { affix = "Enchantment Flicker Strike Cooldown Speed 2", "Flicker Strike has 30% increased Cooldown Recovery Rate", statOrder = { 3875 }, level = 75, group = "EnchantmentFlickerStrikeCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1398394628] = { "Flicker Strike has 30% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentFlickerStrikeDamagePerFrenzyCharge1"] = { affix = "Enchantment Flicker Strike Damage Per Frenzy Charge 1", "6% increased Flicker Strike Damage per Frenzy Charge", statOrder = { 3965 }, level = 66, group = "EnchantmentFlickerStrikeDamagePerFrenzyCharge", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3701991680] = { "6% increased Flicker Strike Damage per Frenzy Charge" }, } }, + ["EnchantmentFlickerStrikeDamagePerFrenzyCharge2"] = { affix = "Enchantment Flicker Strike Damage Per Frenzy Charge 2", "9% increased Flicker Strike Damage per Frenzy Charge", statOrder = { 3965 }, level = 75, group = "EnchantmentFlickerStrikeDamagePerFrenzyCharge", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3701991680] = { "9% increased Flicker Strike Damage per Frenzy Charge" }, } }, + ["EnchantmentForbiddenRiteProjectileSpeed1"] = { affix = "Enchantment Forbidden Rite Projectile Speed 1", "20% increased Forbidden Rite Projectile Speed", statOrder = { 6658 }, level = 66, group = "EnchantmentForbiddenRiteProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3316480899] = { "20% increased Forbidden Rite Projectile Speed" }, } }, + ["EnchantmentForbiddenRiteProjectileSpeed2"] = { affix = "Enchantment Forbidden Rite Projectile Speed 2", "30% increased Forbidden Rite Projectile Speed", statOrder = { 6658 }, level = 75, group = "EnchantmentForbiddenRiteProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3316480899] = { "30% increased Forbidden Rite Projectile Speed" }, } }, + ["EnchantmentForbiddenRiteAdditionalProjectile_"] = { affix = "Enchantment Forbidden Rite Additional Projectile", "Forbidden Rite fires an additional Projectile", statOrder = { 6657 }, level = 75, group = "EnchantmentForbiddenRiteAdditionalProjectile", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3047407995] = { "Forbidden Rite fires an additional Projectile" }, } }, + ["EnchantmentFreezeMineRadius1"] = { affix = "Enchantment Icicle Mine Throwing Speed 1", "Icicle Mine has 8% increased Throwing Speed", statOrder = { 5832 }, level = 66, group = "EnchantmentColdProjectileMineThrowingSpeed", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3162144587] = { "Icicle Mine has 8% increased Throwing Speed" }, } }, + ["EnchantmentFreezeMineRadius2_"] = { affix = "Enchantment Icicle Mine Throwing Speed 2", "Icicle Mine has 12% increased Throwing Speed", statOrder = { 5832 }, level = 75, group = "EnchantmentColdProjectileMineThrowingSpeed", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3162144587] = { "Icicle Mine has 12% increased Throwing Speed" }, } }, + ["EnchantmentFreezeMineColdPenetration1"] = { affix = "Enchantment Icicle Mine Throwing Speed 1", "8% increased Icicle Mine Throwing Speed", statOrder = { 5831 }, level = 66, group = "EnchantmentColdProjectileMineThrowingSpeedNegated", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3976295500] = { "8% increased Icicle Mine Throwing Speed" }, } }, + ["EnchantmentFreezeMineColdPenetration2"] = { affix = "Enchantment Icicle Mine Throwing Speed 2", "12% increased Icicle Mine Throwing Speed", statOrder = { 5831 }, level = 75, group = "EnchantmentColdProjectileMineThrowingSpeedNegated", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3976295500] = { "12% increased Icicle Mine Throwing Speed" }, } }, + ["EnchantmentFreezingPulseCastSpeed1"] = { affix = "Enchantment Freezing Pulse Cast Speed 1", "8% increased Freezing Pulse Cast Speed", statOrder = { 3870 }, level = 66, group = "EnchantmentFreezingPulseCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [1894493605] = { "8% increased Freezing Pulse Cast Speed" }, } }, + ["EnchantmentFreezingPulseCastSpeed2"] = { affix = "Enchantment Freezing Pulse Cast Speed 2", "12% increased Freezing Pulse Cast Speed", statOrder = { 3870 }, level = 75, group = "EnchantmentFreezingPulseCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [1894493605] = { "12% increased Freezing Pulse Cast Speed" }, } }, + ["EnchantmentFreezingPulseProjectileSpeed1"] = { affix = "Enchantment Freezing Pulse Projectile Speed 1", "20% increased Freezing Pulse Projectile Speed", statOrder = { 3892 }, level = 66, group = "EnchantmentFreezingPulseProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2003026405] = { "20% increased Freezing Pulse Projectile Speed" }, } }, + ["EnchantmentFreezingPulseProjectileSpeed2"] = { affix = "Enchantment Freezing Pulse Projectile Speed 2", "30% increased Freezing Pulse Projectile Speed", statOrder = { 3892 }, level = 75, group = "EnchantmentFreezingPulseProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2003026405] = { "30% increased Freezing Pulse Projectile Speed" }, } }, + ["EnchantmentFrenzyPercentChanceToGainAdditionalFrenzyCharge1"] = { affix = "Enchantment Frenzy Percent Chance To Gain Additional Frenzy Charge 1", "20% Chance on Frenzy to gain an additional Frenzy Charge", statOrder = { 3977 }, level = 66, group = "EnchantmentFrenzyPercentChanceToGainAdditionalFrenzyCharge", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "frenzy_charge", "attack" }, tradeHashes = { [4243904146] = { "20% Chance on Frenzy to gain an additional Frenzy Charge" }, } }, + ["EnchantmentFrenzyPercentChanceToGainAdditionalFrenzyCharge2"] = { affix = "Enchantment Frenzy Percent Chance To Gain Additional Frenzy Charge 2", "30% Chance on Frenzy to gain an additional Frenzy Charge", statOrder = { 3977 }, level = 75, group = "EnchantmentFrenzyPercentChanceToGainAdditionalFrenzyCharge", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "frenzy_charge", "attack" }, tradeHashes = { [4243904146] = { "30% Chance on Frenzy to gain an additional Frenzy Charge" }, } }, + ["EnchantmentFrenzyDamagePerFrenzyCharge1"] = { affix = "Enchantment Frenzy Damage Per Frenzy Charge 1", "6% increased Frenzy Damage per Frenzy Charge", statOrder = { 3976 }, level = 66, group = "EnchantmentFrenzyDamagePerFrenzyCharge", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1255310381] = { "6% increased Frenzy Damage per Frenzy Charge" }, } }, + ["EnchantmentFrenzyDamagePerFrenzyCharge2"] = { affix = "Enchantment Frenzy Damage Per Frenzy Charge 2", "9% increased Frenzy Damage per Frenzy Charge", statOrder = { 3976 }, level = 75, group = "EnchantmentFrenzyDamagePerFrenzyCharge", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1255310381] = { "9% increased Frenzy Damage per Frenzy Charge" }, } }, + ["EnchantmentFrostbiteCurseEffect1"] = { affix = "Enchantment Frostbite Curse Effect 1", "10% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 66, group = "EnchantmentFrostbiteCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "10% increased Frostbite Curse Effect" }, } }, + ["EnchantmentFrostbiteCurseEffect2_"] = { affix = "Enchantment Frostbite Curse Effect 2", "15% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "EnchantmentFrostbiteCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "15% increased Frostbite Curse Effect" }, } }, + ["EnchantmentFrostbiteDuration1"] = { affix = "Enchantment Frostbite Duration 1", "30% increased Frostbite Duration", statOrder = { 3913 }, level = 66, group = "EnchantmentFrostbiteDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1783696476] = { "30% increased Frostbite Duration" }, } }, + ["EnchantmentFrostbiteDuration2"] = { affix = "Enchantment Frostbite Duration 2", "45% increased Frostbite Duration", statOrder = { 3913 }, level = 75, group = "EnchantmentFrostbiteDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1783696476] = { "45% increased Frostbite Duration" }, } }, + ["EnchantmentFrostBombCooldownSpeed1"] = { affix = "Enchantment Frost Bomb Cooldown Speed 1", "Frost Bomb has 20% increased Cooldown Recovery Rate", statOrder = { 3888 }, level = 66, group = "EnchantmentFrostBombCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [3524326896] = { "Frost Bomb has 20% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentFrostBombCooldownSpeed2"] = { affix = "Enchantment Frost Bomb Cooldown Speed 2", "Frost Bomb has 30% increased Cooldown Recovery Rate", statOrder = { 3888 }, level = 75, group = "EnchantmentFrostBombCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [3524326896] = { "Frost Bomb has 30% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentFrostBombRadius1"] = { affix = "Enchantment Frost Bomb Area Of Effect 1", "16% increased Frost Bomb Area of Effect", statOrder = { 3845 }, level = 66, group = "EnchantmentFrostBombRadius", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [1451372148] = { "16% increased Frost Bomb Area of Effect" }, } }, + ["EnchantmentFrostBombRadius2"] = { affix = "Enchantment Frost Bomb Area Of Effect 2", "24% increased Frost Bomb Area of Effect", statOrder = { 3845 }, level = 75, group = "EnchantmentFrostBombRadius", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [1451372148] = { "24% increased Frost Bomb Area of Effect" }, } }, + ["EnchantmentFrostBombIncreasedDuration1"] = { affix = "Enchantment Frost Bomb Increased Duration 1", "Frost Bomb has 20% increased Debuff Duration", statOrder = { 6677 }, level = 66, group = "EnchantmentFrostBombIncreasedDuration", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [2109176627] = { "Frost Bomb has 20% increased Debuff Duration" }, } }, + ["EnchantmentFrostBombIncreasedDuration2"] = { affix = "Enchantment Frost Bomb Increased Duration 2", "Frost Bomb has 30% increased Debuff Duration", statOrder = { 6677 }, level = 75, group = "EnchantmentFrostBombIncreasedDuration", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [2109176627] = { "Frost Bomb has 30% increased Debuff Duration" }, } }, + ["EnchantmentFrostShieldBaseAddedCooldownCount1"] = { affix = "Enchantment Frost Shield Cooldown Count 1", "Frost Shield has +1 Cooldown Use", statOrder = { 6682 }, level = 75, group = "EnchantmentFrostShieldBaseAddedCooldownCount", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [915160899] = { "Frost Shield has +1 Cooldown Use" }, } }, + ["EnchantmentFrostShieldHealthPerStage1"] = { affix = "Enchantment Frost Shield Health per Stage 1", "Frost Shield has +125 to maximum Life per Stage", statOrder = { 6683 }, level = 66, group = "EnchantmentFrostShieldHealthPerStage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2511493969] = { "Frost Shield has +125 to maximum Life per Stage" }, } }, + ["EnchantmentFrostShieldHealthPerStage2"] = { affix = "Enchantment Frost Shield Health per Stage 2", "Frost Shield has +180 to maximum Life per Stage", statOrder = { 6683 }, level = 75, group = "EnchantmentFrostShieldHealthPerStage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2511493969] = { "Frost Shield has +180 to maximum Life per Stage" }, } }, + ["EnchantmentFrostWallCooldownSpeed1"] = { affix = "Enchantment Frost Wall Cooldown Speed 1", "Frost Wall has 20% increased Cooldown Recovery Rate", statOrder = { 3879 }, level = 66, group = "EnchantmentFrostWallCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2479762395] = { "Frost Wall has 20% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentFrostWallCooldownSpeed2"] = { affix = "Enchantment Frost Wall Cooldown Speed 2", "Frost Wall has 30% increased Cooldown Recovery Rate", statOrder = { 3879 }, level = 75, group = "EnchantmentFrostWallCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2479762395] = { "Frost Wall has 30% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentFrostWallDuration1"] = { affix = "Enchantment Frost Wall Duration 1", "24% increased Frost Wall Duration", statOrder = { 3905 }, level = 66, group = "EnchantmentFrostWallDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [775034903] = { "24% increased Frost Wall Duration" }, } }, + ["EnchantmentFrostWallDuration2"] = { affix = "Enchantment Frost Wall Duration 2", "36% increased Frost Wall Duration", statOrder = { 3905 }, level = 75, group = "EnchantmentFrostWallDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [775034903] = { "36% increased Frost Wall Duration" }, } }, + ["EnchantmentGeneralsCryCooldownSpeed1"] = { affix = "Enchantment General's Cry Cooldown Speed 1", "General's Cry has 20% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 66, group = "EnchantmentGeneralsCryCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has 20% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentGeneralsCryCooldownSpeed2_"] = { affix = "Enchantment General's Cry Cooldown Speed 2", "General's Cry has 30% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "EnchantmentGeneralsCryCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has 30% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentGeneralsCryAdditionalWarrior1"] = { affix = "Enchantment General's Cry Additional Mirage Warrior 1", "General's Cry has +1 to maximum number of Mirage Warriors", statOrder = { 6859 }, level = 75, group = "EnchantmentGeneralsCryAdditionalWarrior", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2889995769] = { "General's Cry has +1 to maximum number of Mirage Warriors" }, } }, + ["EnchantmentGlacialCascadePhysicalDamagePercentToConvertToCold1"] = { affix = "Enchantment Glacial Cascade Physical Damage Percent To Convert To Cold 1", "30% of Glacial Cascade Physical Damage Converted to Cold Damage", statOrder = { 3979 }, level = 66, group = "EnchantmentGlacialCascadePhysicalDamagePercentToConvertToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "caster_damage", "damage", "physical", "elemental", "cold", "caster" }, tradeHashes = { [1154155584] = { "30% of Glacial Cascade Physical Damage Converted to Cold Damage" }, } }, + ["EnchantmentGlacialCascadePhysicalDamagePercentToConvertToCold2"] = { affix = "Enchantment Glacial Cascade Physical Damage Percent To Convert To Cold 2", "40% of Glacial Cascade Physical Damage Converted to Cold Damage", statOrder = { 3979 }, level = 75, group = "EnchantmentGlacialCascadePhysicalDamagePercentToConvertToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "caster_damage", "damage", "physical", "elemental", "cold", "caster" }, tradeHashes = { [1154155584] = { "40% of Glacial Cascade Physical Damage Converted to Cold Damage" }, } }, + ["EnchantmentGlacialCascadeRadius1"] = { affix = "Enchantment Glacial Cascade Area Of Effect 1", "16% increased Glacial Cascade Area of Effect", statOrder = { 3827 }, level = 66, group = "EnchantmentGlacialCascadeRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [88796379] = { "16% increased Glacial Cascade Area of Effect" }, } }, + ["EnchantmentGlacialCascadeRadius2_"] = { affix = "Enchantment Glacial Cascade Area Of Effect 2", "24% increased Glacial Cascade Area of Effect", statOrder = { 3827 }, level = 75, group = "EnchantmentGlacialCascadeRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [88796379] = { "24% increased Glacial Cascade Area of Effect" }, } }, + ["EnchantmentGlacialCascadePhysicalDamageToAddAsCold1___"] = { affix = "Enchantment Glacial Cascade Physical Damage Percent To Add As Cold 1", "Glacial Cascade gains 6% of Physical Damage as Extra Cold Damage", statOrder = { 6864 }, level = 66, group = "EnchantmentGlacialCascadePhysicalDamageToAddAsCold", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "elemental_damage", "caster_damage", "damage", "physical", "elemental", "cold", "caster" }, tradeHashes = { [3492427828] = { "Glacial Cascade gains 6% of Physical Damage as Extra Cold Damage" }, } }, + ["EnchantmentGlacialCascadePhysicalDamageToAddAsCold2"] = { affix = "Enchantment Glacial Cascade Physical Damage Percent To Add As Cold 2", "Glacial Cascade gains 10% of Physical Damage as Extra Cold Damage", statOrder = { 6864 }, level = 75, group = "EnchantmentGlacialCascadePhysicalDamageToAddAsCold", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "elemental_damage", "caster_damage", "damage", "physical", "elemental", "cold", "caster" }, tradeHashes = { [3492427828] = { "Glacial Cascade gains 10% of Physical Damage as Extra Cold Damage" }, } }, + ["EnchantmentGlacialHammerFreezeChance1"] = { affix = "Enchantment Glacial Hammer Freeze Chance 1", "Glacial Hammer has +20% chance to Freeze", statOrder = { 3961 }, level = 66, group = "EnchantmentGlacialHammerFreezeChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "attack", "ailment" }, tradeHashes = { [288248772] = { "Glacial Hammer has +20% chance to Freeze" }, } }, + ["EnchantmentGlacialHammerFreezeChance2"] = { affix = "Enchantment Glacial Hammer Freeze Chance 2", "Glacial Hammer has +30% chance to Freeze", statOrder = { 3961 }, level = 75, group = "EnchantmentGlacialHammerFreezeChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "attack", "ailment" }, tradeHashes = { [288248772] = { "Glacial Hammer has +30% chance to Freeze" }, } }, + ["EnchantmentGlacialHammerPhysicalDamagePercentToAddAsColdDamage1"] = { affix = "Enchantment Glacial Hammer Physical Damage Percent To Add As Cold Damage 1", "10% of Glacial Hammer Physical Damage gained as Extra Cold Damage", statOrder = { 3980 }, level = 66, group = "EnchantmentGlacialHammerPhysicalDamagePercentToAddAsColdDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "attack" }, tradeHashes = { [2555366825] = { "10% of Glacial Hammer Physical Damage gained as Extra Cold Damage" }, } }, + ["EnchantmentGlacialHammerPhysicalDamagePercentToAddAsColdDamage2"] = { affix = "Enchantment Glacial Hammer Physical Damage Percent To Add As Cold Damage 2", "15% of Glacial Hammer Physical Damage gained as Extra Cold Damage", statOrder = { 3980 }, level = 75, group = "EnchantmentGlacialHammerPhysicalDamagePercentToAddAsColdDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "attack" }, tradeHashes = { [2555366825] = { "15% of Glacial Hammer Physical Damage gained as Extra Cold Damage" }, } }, + ["EnchantmentGraceManaReservation1"] = { affix = "Enchantment Grace Mana Reservation 1", "Grace has 20% increased Mana Reservation Efficiency", statOrder = { 6903 }, level = 66, group = "EnchantmentGraceManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1803598623] = { "Grace has 20% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentGraceManaReservation2"] = { affix = "Enchantment Grace Mana Reservation 2", "Grace has 30% increased Mana Reservation Efficiency", statOrder = { 6903 }, level = 75, group = "EnchantmentGraceManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1803598623] = { "Grace has 30% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentGraceManaReservationEfficiency1_"] = { affix = "Enchantment Grace Mana Reservation 1", "Grace has 20% increased Mana Reservation Efficiency", statOrder = { 6904 }, level = 66, group = "EnchantmentGraceManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [900639351] = { "Grace has 20% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentGraceManaReservationEfficiency2"] = { affix = "Enchantment Grace Mana Reservation 2", "Grace has 30% increased Mana Reservation Efficiency", statOrder = { 6904 }, level = 75, group = "EnchantmentGraceManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [900639351] = { "Grace has 30% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentGroundSlamRadius1"] = { affix = "Enchantment Ground Slam Area Of Effect 1", "16% increased Ground Slam Area of Effect", statOrder = { 3807 }, level = 66, group = "EnchantmentGroundSlamRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3061969105] = { "16% increased Ground Slam Area of Effect" }, } }, + ["EnchantmentGroundSlamRadius2"] = { affix = "Enchantment Ground Slam Area Of Effect 2", "24% increased Ground Slam Area of Effect", statOrder = { 3807 }, level = 75, group = "EnchantmentGroundSlamRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3061969105] = { "24% increased Ground Slam Area of Effect" }, } }, + ["EnchantmentGroundSlamAngle1"] = { affix = "Enchantment Ground Slam Angle 1", "Ground Slam has a 16% increased angle", statOrder = { 3258 }, level = 66, group = "EnchantmentGroundSlamAngle", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [648647905] = { "Ground Slam has a 16% increased angle" }, } }, + ["EnchantmentGroundSlamAngle2"] = { affix = "Enchantment Ground Slam Angle 2", "Ground Slam has a 24% increased angle", statOrder = { 3258 }, level = 75, group = "EnchantmentGroundSlamAngle", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [648647905] = { "Ground Slam has a 24% increased angle" }, } }, + ["EnchantmentHasteManaReservation1"] = { affix = "Enchantment Haste Mana Reservation 1", "Haste has 20% increased Mana Reservation Efficiency", statOrder = { 6938 }, level = 66, group = "EnchantmentHasteManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [804667127] = { "Haste has 20% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHasteManaReservation2"] = { affix = "Enchantment Haste Mana Reservation 2", "Haste has 30% increased Mana Reservation Efficiency", statOrder = { 6938 }, level = 75, group = "EnchantmentHasteManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [804667127] = { "Haste has 30% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHasteManaReservationEfficiency1_"] = { affix = "Enchantment Haste Mana Reservation 1", "Haste has 20% increased Mana Reservation Efficiency", statOrder = { 6939 }, level = 66, group = "EnchantmentHasteManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [939320550] = { "Haste has 20% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHasteManaReservationEfficiency2_"] = { affix = "Enchantment Haste Mana Reservation 2", "Haste has 30% increased Mana Reservation Efficiency", statOrder = { 6939 }, level = 75, group = "EnchantmentHasteManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [939320550] = { "Haste has 30% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHatredManaReservation1"] = { affix = "Enchantment Hatred Mana Reservation 1", "Hatred has 20% increased Mana Reservation Efficiency", statOrder = { 6942 }, level = 66, group = "EnchantmentHatredManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1920370417] = { "Hatred has 20% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHatredManaReservation2"] = { affix = "Enchantment Hatred Mana Reservation 2", "Hatred has 30% increased Mana Reservation Efficiency", statOrder = { 6942 }, level = 75, group = "EnchantmentHatredManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1920370417] = { "Hatred has 30% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHatredManaReservationEfficiency1_"] = { affix = "Enchantment Hatred Mana Reservation 1", "Hatred has 20% increased Mana Reservation Efficiency", statOrder = { 6943 }, level = 66, group = "EnchantmentHatredManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2156140483] = { "Hatred has 20% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHatredManaReservationEfficiency2"] = { affix = "Enchantment Hatred Mana Reservation 2", "Hatred has 30% increased Mana Reservation Efficiency", statOrder = { 6943 }, level = 75, group = "EnchantmentHatredManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2156140483] = { "Hatred has 30% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHeavyStrikeAttackSpeed1"] = { affix = "Enchantment Heavy Strike Attack Speed 1", "10% increased Heavy Strike Attack Speed", statOrder = { 3855 }, level = 66, group = "EnchantmentHeavyStrikeAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [343849491] = { "10% increased Heavy Strike Attack Speed" }, } }, + ["EnchantmentHeavyStrikeAttackSpeed2"] = { affix = "Enchantment Heavy Strike Attack Speed 2", "15% increased Heavy Strike Attack Speed", statOrder = { 3855 }, level = 75, group = "EnchantmentHeavyStrikeAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [343849491] = { "15% increased Heavy Strike Attack Speed" }, } }, + ["EnchantmentHeavyStrikeDoubleDamage1"] = { affix = "Enchantment Heavy Strike Double Damage 1", "Heavy Strike has a 8% chance to deal Double Damage", statOrder = { 3234 }, level = 66, group = "EnchantmentHeavyStrikeDoubleDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3760588941] = { "Heavy Strike has a 8% chance to deal Double Damage" }, } }, + ["EnchantmentHeavyStrikeDoubleDamage2"] = { affix = "Enchantment Heavy Strike Double Damage 2", "Heavy Strike has a 12% chance to deal Double Damage", statOrder = { 3234 }, level = 75, group = "EnchantmentHeavyStrikeDoubleDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3760588941] = { "Heavy Strike has a 12% chance to deal Double Damage" }, } }, + ["EnchantmentHeraldOfAgonyManaReservation1"] = { affix = "Enchantment Herald Of Agony Mana Reservation 1", "Herald of Agony has 40% increased Mana Reservation Efficiency", statOrder = { 7109 }, level = 66, group = "EnchantmentHeraldOfAgonyManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1284151528] = { "Herald of Agony has 40% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHeraldOfAgonyManaReservation2"] = { affix = "Enchantment Herald Of Agony Mana Reservation 2", "Herald of Agony has 60% increased Mana Reservation Efficiency", statOrder = { 7109 }, level = 75, group = "EnchantmentHeraldOfAgonyManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1284151528] = { "Herald of Agony has 60% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHeraldOfAgonyManaReservationEfficiency1__"] = { affix = "Enchantment Herald Of Agony Mana Reservation 1", "Herald of Agony has 50% increased Mana Reservation Efficiency", statOrder = { 7110 }, level = 66, group = "EnchantmentHeraldOfAgonyManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1133703802] = { "Herald of Agony has 50% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHeraldOfAgonyManaReservationEfficiency2"] = { affix = "Enchantment Herald Of Agony Mana Reservation 2", "Herald of Agony has 75% increased Mana Reservation Efficiency", statOrder = { 7110 }, level = 75, group = "EnchantmentHeraldOfAgonyManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1133703802] = { "Herald of Agony has 75% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHeraldOfAgonyNumOfSecondaryProjectiles1_"] = { affix = "Enchantment Herald Of Agony Num Of Secondary Projectiles 1", "Summoned Agony Crawler fires 2 additional Projectiles", statOrder = { 7129 }, level = 75, group = "EnchantmentHeraldOfAgonyNumOfSecondaryProjectiles", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [155429578] = { "Summoned Agony Crawler fires 2 additional Projectiles" }, } }, + ["EnchantmentHeraldOfAshManaReservation1"] = { affix = "Enchantment Herald Of Ash Mana Reservation 1", "Herald of Ash has 40% increased Mana Reservation Efficiency", statOrder = { 7113 }, level = 66, group = "EnchantmentHeraldOfAshManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3819451758] = { "Herald of Ash has 40% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHeraldOfAshManaReservation2"] = { affix = "Enchantment Herald Of Ash Mana Reservation 2", "Herald of Ash has 60% increased Mana Reservation Efficiency", statOrder = { 7113 }, level = 75, group = "EnchantmentHeraldOfAshManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3819451758] = { "Herald of Ash has 60% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHeraldOfAshManaReservationEfficiency1"] = { affix = "Enchantment Herald Of Ash Mana Reservation 1", "Herald of Ash has 50% increased Mana Reservation Efficiency", statOrder = { 7114 }, level = 66, group = "EnchantmentHeraldOfAshManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2500442851] = { "Herald of Ash has 50% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHeraldOfAshManaReservationEfficiency2"] = { affix = "Enchantment Herald Of Ash Mana Reservation 2", "Herald of Ash has 75% increased Mana Reservation Efficiency", statOrder = { 7114 }, level = 75, group = "EnchantmentHeraldOfAshManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2500442851] = { "Herald of Ash has 75% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHeraldOfIceManaReservation1"] = { affix = "Enchantment Herald Of Ice Mana Reservation 1", "Herald of Ice has 40% increased Mana Reservation Efficiency", statOrder = { 7117 }, level = 66, group = "EnchantmentHeraldOfIceManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3059700363] = { "Herald of Ice has 40% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHeraldOfIceManaReservation2"] = { affix = "Enchantment Herald Of Ice Mana Reservation 2", "Herald of Ice has 60% increased Mana Reservation Efficiency", statOrder = { 7117 }, level = 75, group = "EnchantmentHeraldOfIceManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3059700363] = { "Herald of Ice has 60% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHeraldOfIceManaReservationEfficiency1"] = { affix = "Enchantment Herald Of Ice Mana Reservation 1", "Herald of Ice has 50% increased Mana Reservation Efficiency", statOrder = { 7118 }, level = 66, group = "EnchantmentHeraldOfIceManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3395872960] = { "Herald of Ice has 50% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHeraldOfIceManaReservationEfficiency2"] = { affix = "Enchantment Herald Of Ice Mana Reservation 2", "Herald of Ice has 75% increased Mana Reservation Efficiency", statOrder = { 7118 }, level = 75, group = "EnchantmentHeraldOfIceManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3395872960] = { "Herald of Ice has 75% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHeraldOfPurityManaReservation1"] = { affix = "Enchantment Herald Of Purity Mana Reservation 1", "Herald of Purity has 40% increased Mana Reservation Efficiency", statOrder = { 7122 }, level = 66, group = "EnchantmentHeraldOfPurityManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1542765265] = { "Herald of Purity has 40% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHeraldOfPurityManaReservation2_"] = { affix = "Enchantment Herald Of Purity Mana Reservation 2", "Herald of Purity has 60% increased Mana Reservation Efficiency", statOrder = { 7122 }, level = 75, group = "EnchantmentHeraldOfPurityManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1542765265] = { "Herald of Purity has 60% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHeraldOfPurityManaReservationEfficiency1_"] = { affix = "Enchantment Herald Of Purity Mana Reservation 1", "Herald of Purity has 50% increased Mana Reservation Efficiency", statOrder = { 7123 }, level = 66, group = "EnchantmentHeraldOfPurityManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2189040439] = { "Herald of Purity has 50% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHeraldOfPurityManaReservationEfficiency2"] = { affix = "Enchantment Herald Of Purity Mana Reservation 2", "Herald of Purity has 75% increased Mana Reservation Efficiency", statOrder = { 7123 }, level = 75, group = "EnchantmentHeraldOfPurityManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2189040439] = { "Herald of Purity has 75% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHeraldOfPurityAdditionalMinion1"] = { affix = "Enchantment Herald Of Purity Additional Minion 1", "+1 to maximum number of Sentinels of Purity", statOrder = { 5033 }, level = 75, group = "EnchantmentHeraldOfPurityAdditionalMinion", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [2836937264] = { "+1 to maximum number of Sentinels of Purity" }, } }, + ["EnchantmentHeraldOfThunderManaReservation1"] = { affix = "Enchantment Herald Of Thunder Mana Reservation 1", "Herald of Thunder has 40% increased Mana Reservation Efficiency", statOrder = { 7127 }, level = 66, group = "EnchantmentHeraldOfThunderManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3959101898] = { "Herald of Thunder has 40% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHeraldOfThunderManaReservation2"] = { affix = "Enchantment Herald Of Thunder Mana Reservation 2", "Herald of Thunder has 60% increased Mana Reservation Efficiency", statOrder = { 7127 }, level = 75, group = "EnchantmentHeraldOfThunderManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3959101898] = { "Herald of Thunder has 60% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHeraldOfThunderManaReservationEfficiency1"] = { affix = "Enchantment Herald Of Thunder Mana Reservation 1", "Herald of Thunder has 50% increased Mana Reservation Efficiency", statOrder = { 7128 }, level = 66, group = "EnchantmentHeraldOfThunderManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3817220109] = { "Herald of Thunder has 50% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHeraldOfThunderManaReservationEfficiency2_"] = { affix = "Enchantment Herald Of Thunder Mana Reservation 2", "Herald of Thunder has 75% increased Mana Reservation Efficiency", statOrder = { 7128 }, level = 75, group = "EnchantmentHeraldOfThunderManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3817220109] = { "Herald of Thunder has 75% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentHexblastRadius1_"] = { affix = "Enchantment Hexblast Area Of Effect 1", "Hexblast has 16% increased Area of Effect", statOrder = { 7138 }, level = 66, group = "EnchantmentHexblastRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1811698551] = { "Hexblast has 16% increased Area of Effect" }, } }, + ["EnchantmentHexblastRadius2"] = { affix = "Enchantment Hexblast Area Of Effect 2", "Hexblast has 24% increased Area of Effect", statOrder = { 7138 }, level = 75, group = "EnchantmentHexblastRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1811698551] = { "Hexblast has 24% increased Area of Effect" }, } }, + ["EnchantmentHexblastChanceToNotConsume1"] = { affix = "Enchantment Hexblast Chance to not Consume Hex 1", "Hexblast has +10% chance to remove a Hex", statOrder = { 7137 }, level = 66, group = "EnchantmentHexblastChanceToNotConsume", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [120598364] = { "Hexblast has +10% chance to remove a Hex" }, } }, + ["EnchantmentHexblastChanceToNotConsume2"] = { affix = "Enchantment Hexblast Chance to not Consume Hex 2", "Hexblast has +15% chance to remove a Hex", statOrder = { 7137 }, level = 75, group = "EnchantmentHexblastChanceToNotConsume", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [120598364] = { "Hexblast has +15% chance to remove a Hex" }, } }, + ["EnchantmentHolyRelicRadius1"] = { affix = "Enchantment Holy Relic Area Of Effect 1", "Summoned Holy Relics have 16% increased Area of Effect", statOrder = { 7177 }, level = 66, group = "EnchantmentHolyRelicRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [3026568825] = { "Summoned Holy Relics have 16% increased Area of Effect" }, } }, + ["EnchantmentHolyRelicRadius2_"] = { affix = "Enchantment Holy Relic Area Of Effect 2", "Summoned Holy Relics have 24% increased Area of Effect", statOrder = { 7177 }, level = 75, group = "EnchantmentHolyRelicRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [3026568825] = { "Summoned Holy Relics have 24% increased Area of Effect" }, } }, + ["EnchantmentHolyRelicBuffEffect1"] = { affix = "Enchantment Holy Relic Buff Effect 1", "Summoned Holy Relics have 40% increased Buff Effect", statOrder = { 7178 }, level = 66, group = "EnchantmentHolyRelicBuffEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [3080391193] = { "Summoned Holy Relics have 40% increased Buff Effect" }, } }, + ["EnchantmentHolyRelicBuffEffect2_"] = { affix = "Enchantment Holy Relic Buff Effect 2", "Summoned Holy Relics have 60% increased Buff Effect", statOrder = { 7178 }, level = 75, group = "EnchantmentHolyRelicBuffEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [3080391193] = { "Summoned Holy Relics have 60% increased Buff Effect" }, } }, + ["EnchantmentIceCrashPhysicalDamagePercentToAddAsColdDamage1"] = { affix = "Enchantment Ice Crash Physical Damage Percent To Add As Cold Damage 1", "10% of Ice Crash Physical Damage gained as Extra Cold Damage", statOrder = { 3981 }, level = 66, group = "EnchantmentIceCrashPhysicalDamagePercentToAddAsColdDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "attack" }, tradeHashes = { [3465202861] = { "10% of Ice Crash Physical Damage gained as Extra Cold Damage" }, } }, + ["EnchantmentIceCrashPhysicalDamagePercentToAddAsColdDamage2"] = { affix = "Enchantment Ice Crash Physical Damage Percent To Add As Cold Damage 2", "15% of Ice Crash Physical Damage gained as Extra Cold Damage", statOrder = { 3981 }, level = 75, group = "EnchantmentIceCrashPhysicalDamagePercentToAddAsColdDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "attack" }, tradeHashes = { [3465202861] = { "15% of Ice Crash Physical Damage gained as Extra Cold Damage" }, } }, + ["EnchantmentIceCrashRadius1"] = { affix = "Enchantment Ice Crash Area Of Effect 1", "16% increased Ice Crash Area of Effect", statOrder = { 3830 }, level = 66, group = "EnchantmentIceCrashRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3930497977] = { "16% increased Ice Crash Area of Effect" }, } }, + ["EnchantmentIceCrashRadius2"] = { affix = "Enchantment Ice Crash Area Of Effect 2", "24% increased Ice Crash Area of Effect", statOrder = { 3830 }, level = 75, group = "EnchantmentIceCrashRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3930497977] = { "24% increased Ice Crash Area of Effect" }, } }, + ["EnchantmentIceGolemElementalResistances1"] = { affix = "Enchantment Ice Golem Elemental Resistances 1", "+24% to Ice Golem Elemental Resistances", statOrder = { 3986 }, level = 66, group = "EnchantmentIceGolemElementalResistances", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [2520825974] = { "+24% to Ice Golem Elemental Resistances" }, } }, + ["EnchantmentIceGolemElementalResistances2"] = { affix = "Enchantment Ice Golem Elemental Resistances 2", "+36% to Ice Golem Elemental Resistances", statOrder = { 3986 }, level = 75, group = "EnchantmentIceGolemElementalResistances", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [2520825974] = { "+36% to Ice Golem Elemental Resistances" }, } }, + ["EnchantmentIceGolemGrantsPercentAdditionalCriticalStrikeChanceAndAccuracy1"] = { affix = "Enchantment Ice Golem Grants Percent Additional Critical Strike Chance And Accuracy 1", "100% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 66, group = "EnchantmentIceGolemGrantedBuffEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [2250111474] = { "100% increased Effect of the Buff granted by your Ice Golems" }, } }, + ["EnchantmentIceGolemGrantsPercentAdditionalCriticalStrikeChanceAndAccuracy2"] = { affix = "Enchantment Ice Golem Grants Percent Additional Critical Strike Chance And Accuracy 2", "150% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "EnchantmentIceGolemGrantedBuffEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [2250111474] = { "150% increased Effect of the Buff granted by your Ice Golems" }, } }, + ["EnchantmentIceNovaFreezeChance1"] = { affix = "Enchantment Ice Nova Freeze Chance 1", "Ice Nova has +20% chance to Freeze", statOrder = { 3962 }, level = 66, group = "EnchantmentIceNovaFreezeChance", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "elemental", "cold", "caster", "ailment" }, tradeHashes = { [3269321994] = { "Ice Nova has +20% chance to Freeze" }, } }, + ["EnchantmentIceNovaFreezeChance2"] = { affix = "Enchantment Ice Nova Freeze Chance 2", "Ice Nova has +30% chance to Freeze", statOrder = { 3962 }, level = 75, group = "EnchantmentIceNovaFreezeChance", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "elemental", "cold", "caster", "ailment" }, tradeHashes = { [3269321994] = { "Ice Nova has +30% chance to Freeze" }, } }, + ["EnchantmentIceNovaRadius1"] = { affix = "Enchantment Ice Nova Area Of Effect 1", "16% increased Ice Nova Area of Effect", statOrder = { 3817 }, level = 66, group = "EnchantmentIceNovaRadius", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [68809719] = { "16% increased Ice Nova Area of Effect" }, } }, + ["EnchantmentIceNovaRadius2"] = { affix = "Enchantment Ice Nova Area Of Effect 2", "24% increased Ice Nova Area of Effect", statOrder = { 3817 }, level = 75, group = "EnchantmentIceNovaRadius", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [68809719] = { "24% increased Ice Nova Area of Effect" }, } }, + ["EnchantmentIceNovaMinimumChill1"] = { affix = "Enchantment Ice Nova Minimum Chill 1", "Chills from Ice Nova Hits always reduce Action Speed by at least 6%", statOrder = { 7190 }, level = 66, group = "EnchantmentIceNovaMinimumChill", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "elemental", "cold", "caster", "ailment" }, tradeHashes = { [644285691] = { "Chills from Ice Nova Hits always reduce Action Speed by at least 6%" }, } }, + ["EnchantmentIceNovaMinimumChill2"] = { affix = "Enchantment Ice Nova Minimum Chill 2", "Chills from Ice Nova Hits always reduce Action Speed by at least 8%", statOrder = { 7190 }, level = 75, group = "EnchantmentIceNovaMinimumChill", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "elemental", "cold", "caster", "ailment" }, tradeHashes = { [644285691] = { "Chills from Ice Nova Hits always reduce Action Speed by at least 8%" }, } }, + ["EnchantmentIceShotDuration1"] = { affix = "Enchantment Ice Shot Damage 1", "24% increased Ice Shot Damage", statOrder = { 3649 }, level = 66, group = "EnchantmentIceShotDamage", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3026752303] = { "24% increased Ice Shot Damage" }, } }, + ["EnchantmentIceShotDuration2"] = { affix = "Enchantment Ice Shot Damage 2", "36% increased Ice Shot Damage", statOrder = { 3649 }, level = 75, group = "EnchantmentIceShotDamage", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3026752303] = { "36% increased Ice Shot Damage" }, } }, + ["EnchantmentIceShotRadius1"] = { affix = "Enchantment Ice Shot Area Of Effect 1", "16% increased Ice Shot Area of Effect", statOrder = { 3813 }, level = 66, group = "EnchantmentIceShotRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1962401751] = { "16% increased Ice Shot Area of Effect" }, } }, + ["EnchantmentIceShotRadius2_"] = { affix = "Enchantment Ice Shot Area Of Effect 2", "24% increased Ice Shot Area of Effect", statOrder = { 3813 }, level = 75, group = "EnchantmentIceShotRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1962401751] = { "24% increased Ice Shot Area of Effect" }, } }, + ["EnchantmentIceShotConeAngle1"] = { affix = "Enchantment Ice Shot Cone Angle 1", "Ice Shot has 30% increased Area of Effect angle", statOrder = { 7192 }, level = 66, group = "EnchantmentIceShotConeAngle", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3781924200] = { "Ice Shot has 30% increased Area of Effect angle" }, } }, + ["EnchantmentIceShotConeAngle2"] = { affix = "Enchantment Ice Shot Cone Angle 2", "Ice Shot has 60% increased Area of Effect angle", statOrder = { 7192 }, level = 75, group = "EnchantmentIceShotConeAngle", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3781924200] = { "Ice Shot has 60% increased Area of Effect angle" }, } }, + ["EnchantmentIceSiphonTrapDuration1"] = { affix = "Enchantment Ice Siphon Trap Duration 1", "Siphoning Trap has 30% increased Skill Effect Duration", statOrder = { 7197 }, level = 66, group = "EnchantmentIceSiphonTrapDuration", weightKey = { "helmet", "default", }, weightVal = { 67, 0 }, modTags = { "caster" }, tradeHashes = { [4166695945] = { "Siphoning Trap has 30% increased Skill Effect Duration" }, } }, + ["EnchantmentIceSiphonTrapDuration2_"] = { affix = "Enchantment Ice Siphon Trap Duration 2", "Siphoning Trap has 45% increased Skill Effect Duration", statOrder = { 7197 }, level = 75, group = "EnchantmentIceSiphonTrapDuration", weightKey = { "helmet", "default", }, weightVal = { 67, 0 }, modTags = { "caster" }, tradeHashes = { [4166695945] = { "Siphoning Trap has 45% increased Skill Effect Duration" }, } }, + ["EnchantmentIceSiphonTrapDamageTaken1"] = { affix = "Enchantment Ice Siphon Trap Damage Taken 1", "Siphoning Trap's beam to you grants 1% reduced Damage taken for each other beam", statOrder = { 7196 }, level = 75, group = "EnchantmentIceSiphonTrapDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 67, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2673745094] = { "Siphoning Trap's beam to you grants 1% reduced Damage taken for each other beam" }, } }, + ["EnchantmentIceSiphonTrapChillEffect1"] = { affix = "Enchantment Ice Siphon Trap Chill Effect 1", "Siphoning Trap has 25% increased Chill Effect", statOrder = { 7194 }, level = 66, group = "EnchantmentIceSiphonTrapChillEffect", weightKey = { "helmet", "default", }, weightVal = { 67, 0 }, modTags = { "elemental", "cold", "caster", "ailment" }, tradeHashes = { [2530563277] = { "Siphoning Trap has 25% increased Chill Effect" }, } }, + ["EnchantmentIceSiphonTrapChillEffect2"] = { affix = "Enchantment Ice Siphon Trap Chill Effect 2", "Siphoning Trap has 40% increased Chill Effect", statOrder = { 7194 }, level = 75, group = "EnchantmentIceSiphonTrapChillEffect", weightKey = { "helmet", "default", }, weightVal = { 67, 0 }, modTags = { "elemental", "cold", "caster", "ailment" }, tradeHashes = { [2530563277] = { "Siphoning Trap has 40% increased Chill Effect" }, } }, + ["EnchantmentIceSpearPercentChanceToGainPowerChargeOnCriticalStrike1"] = { affix = "Enchantment Ice Spear Percent Chance To Gain Power Charge On Critical Strike 1", "10% Chance to gain a Power Charge on Critical Strike with Ice Spear", statOrder = { 3971 }, level = 66, group = "EnchantmentIceSpearPercentChanceToGainPowerChargeOnCriticalStrike", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "power_charge", "caster" }, tradeHashes = { [3232905239] = { "10% Chance to gain a Power Charge on Critical Strike with Ice Spear" }, } }, + ["EnchantmentIceSpearPercentChanceToGainPowerChargeOnCriticalStrike2_"] = { affix = "Enchantment Ice Spear Percent Chance To Gain Power Charge On Critical Strike 2", "15% Chance to gain a Power Charge on Critical Strike with Ice Spear", statOrder = { 3971 }, level = 75, group = "EnchantmentIceSpearPercentChanceToGainPowerChargeOnCriticalStrike", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "power_charge", "caster" }, tradeHashes = { [3232905239] = { "15% Chance to gain a Power Charge on Critical Strike with Ice Spear" }, } }, + ["EnchantmentIceSpearSecondFormCriticalStrikeChance1"] = { affix = "Enchantment Ice Spear Second Form Critical Strike Chance 1", "200% increased Ice Spear Critical Strike Chance in second form", statOrder = { 4123 }, level = 66, group = "EnchantmentIceSpearSecondFormCriticalStrikeChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3510848926] = { "200% increased Ice Spear Critical Strike Chance in second form" }, } }, + ["EnchantmentIceSpearSecondFormCriticalStrikeChance2"] = { affix = "Enchantment Ice Spear Second Form Critical Strike Chance 2", "300% increased Ice Spear Critical Strike Chance in second form", statOrder = { 4123 }, level = 75, group = "EnchantmentIceSpearSecondFormCriticalStrikeChance", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3510848926] = { "300% increased Ice Spear Critical Strike Chance in second form" }, } }, + ["EnchantmentIceSpearAdditionalProjectile1_"] = { affix = "Enchantment Ice Spear Additional Projectile 1", "Ice Spear fires an additional Projectile", statOrder = { 7201 }, level = 75, group = "EnchantmentIceSpearAdditionalProjectile", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [3801130154] = { "Ice Spear fires an additional Projectile" }, } }, + ["EnchantmentIceSpearDistanceBeforeFormChange1"] = { affix = "Enchantment Ice Spear Distance Before Form Change 1", "Ice Spear travels 20% reduced distance before changing forms", statOrder = { 7200 }, level = 66, group = "EnchantmentIceSpearDistanceBeforeFormChange", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3295914630] = { "Ice Spear travels 20% reduced distance before changing forms" }, } }, + ["EnchantmentIceSpearDistanceBeforeFormChange2"] = { affix = "Enchantment Ice Spear Distance Before Form Change 2", "Ice Spear travels 30% reduced distance before changing forms", statOrder = { 7200 }, level = 75, group = "EnchantmentIceSpearDistanceBeforeFormChange", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [3295914630] = { "Ice Spear travels 30% reduced distance before changing forms" }, } }, + ["EnchantmentIceTrapCooldownSpeed1_"] = { affix = "Enchantment Ice Trap Cooldown Speed 1", "20% increased Ice Trap Damage", statOrder = { 3731 }, level = 66, group = "EnchantmentIceTrapCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4224384031] = { "20% increased Ice Trap Damage" }, } }, + ["EnchantmentIceTrapCooldownSpeed2"] = { affix = "Enchantment Ice Trap Cooldown Speed 2", "30% increased Ice Trap Damage", statOrder = { 3731 }, level = 75, group = "EnchantmentIceTrapCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4224384031] = { "30% increased Ice Trap Damage" }, } }, + ["EnchantmentIceTrapRadius1_"] = { affix = "Enchantment Ice Trap Area Of Effect 1", "16% increased Ice Trap Area of Effect", statOrder = { 3843 }, level = 66, group = "EnchantmentIceTrapRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3367298564] = { "16% increased Ice Trap Area of Effect" }, } }, + ["EnchantmentIceTrapRadius2"] = { affix = "Enchantment Ice Trap Area Of Effect 2", "24% increased Ice Trap Area of Effect", statOrder = { 3843 }, level = 75, group = "EnchantmentIceTrapRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3367298564] = { "24% increased Ice Trap Area of Effect" }, } }, + ["EnchantmentIceTrapColdPenetration1_"] = { affix = "Enchantment Ice Trap Cold Penetration 1", "Ice Trap Damage Penetrates 6% Cold Resistance", statOrder = { 7202 }, level = 66, group = "EnchantmentIceTrapColdPenetration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3698446010] = { "Ice Trap Damage Penetrates 6% Cold Resistance" }, } }, + ["EnchantmentIceTrapColdPenetration2__"] = { affix = "Enchantment Ice Trap Cold Penetration 2", "Ice Trap Damage Penetrates 10% Cold Resistance", statOrder = { 7202 }, level = 75, group = "EnchantmentIceTrapColdPenetration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3698446010] = { "Ice Trap Damage Penetrates 10% Cold Resistance" }, } }, + ["EnchantmentImmortalCallPercentChanceToNotConsumeEnduranceCharges1"] = { affix = "Enchantment Immortal Call Percent Chance To Not Consume Endurance Charges 1", "Immortal Call has 20% increased Buff Duration per Endurance Charge removed", statOrder = { 7214 }, level = 66, group = "EnchantmentImmortalCallPercentChanceToNotConsumeEnduranceCharges", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [691673624] = { "Immortal Call has 20% increased Buff Duration per Endurance Charge removed" }, } }, + ["EnchantmentImmortalCallPercentChanceToNotConsumeEnduranceCharges2"] = { affix = "Enchantment Immortal Call Percent Chance To Not Consume Endurance Charges 2", "Immortal Call has 30% increased Buff Duration per Endurance Charge removed", statOrder = { 7214 }, level = 75, group = "EnchantmentImmortalCallPercentChanceToNotConsumeEnduranceCharges", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [691673624] = { "Immortal Call has 30% increased Buff Duration per Endurance Charge removed" }, } }, + ["EnchantmentImmortalCallDuration1_"] = { affix = "Enchantment Immortal Call Duration 1", "24% increased Immortal Call Duration", statOrder = { 3900 }, level = 66, group = "EnchantmentImmortalCallDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1336543283] = { "24% increased Immortal Call Duration" }, } }, + ["EnchantmentImmortalCallDuration2"] = { affix = "Enchantment Immortal Call Duration 2", "36% increased Immortal Call Duration", statOrder = { 3900 }, level = 75, group = "EnchantmentImmortalCallDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1336543283] = { "36% increased Immortal Call Duration" }, } }, + ["EnchantmentIncinerateDamagePerStage1_"] = { affix = "Enchantment Incinerate Damage Per Stage 1", "16% increased Incinerate Damage", statOrder = { 3667 }, level = 66, group = "EnchantmentIncinerateDamagePerStage", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2246425134] = { "16% increased Incinerate Damage" }, } }, + ["EnchantmentIncinerateDamagePerStage2"] = { affix = "Enchantment Incinerate Damage Per Stage 2", "24% increased Incinerate Damage", statOrder = { 3667 }, level = 75, group = "EnchantmentIncinerateDamagePerStage", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2246425134] = { "24% increased Incinerate Damage" }, } }, + ["EnchantmentIncinerateProjectileSpeed1"] = { affix = "Enchantment Incinerate Projectile Speed 1", "20% increased Incinerate Damage", statOrder = { 3667 }, level = 66, group = "EnchantmentIncinerateProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2246425134] = { "20% increased Incinerate Damage" }, } }, + ["EnchantmentIncinerateProjectileSpeed2"] = { affix = "Enchantment Incinerate Projectile Speed 2", "30% increased Incinerate Damage", statOrder = { 3667 }, level = 75, group = "EnchantmentIncinerateProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2246425134] = { "30% increased Incinerate Damage" }, } }, + ["EnchantmentIncinerateAreaOfEffect1"] = { affix = "Enchantment Incinerate Area Of Effect 1", "Incinerate has 16% increased Area of Effect", statOrder = { 6510 }, level = 66, group = "EnchantmentIncinerateAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2562208244] = { "Incinerate has 16% increased Area of Effect" }, } }, + ["EnchantmentIncinerateAreaOfEffect2"] = { affix = "Enchantment Incinerate Area Of Effect 2", "Incinerate has 24% increased Area of Effect", statOrder = { 6510 }, level = 75, group = "EnchantmentIncinerateAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2562208244] = { "Incinerate has 24% increased Area of Effect" }, } }, + ["EnchantmentIncinerateMaximumStages1"] = { affix = "Enchantment Incinerate Maximum Stages 1", "Incinerate has +1 to maximum stages", statOrder = { 6509 }, level = 66, group = "EnchantmentIncinerateMaximumStages", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3867484047] = { "Incinerate has +1 to maximum stages" }, } }, + ["EnchantmentIncinerateMaximumStages2"] = { affix = "Enchantment Incinerate Maximum Stages 2", "Incinerate has +2 to maximum stages", statOrder = { 6509 }, level = 75, group = "EnchantmentIncinerateMaximumStages", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3867484047] = { "Incinerate has +2 to maximum stages" }, } }, + ["EnchantmentIncinerateDamagePerStage3"] = { affix = "Enchantment Incinerate Damage Per Stage 3", "10% increased Incinerate Damage for each stage", statOrder = { 4005 }, level = 75, group = "EnchantmentIncinerateDamagePerStage2", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4151555126] = { "10% increased Incinerate Damage for each stage" }, } }, + ["EnchantmentInfernalBlowPhysicalDamagePercentToAddAsFireDamage1"] = { affix = "Enchantment Infernal Blow Physical Damage Percent To Add As Fire Damage 1", "10% of Infernal Blow Physical Damage gained as Extra Fire Damage", statOrder = { 3958 }, level = 66, group = "EnchantmentInfernalBlowPhysicalDamagePercentToAddAsFireDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [2484188706] = { "10% of Infernal Blow Physical Damage gained as Extra Fire Damage" }, } }, + ["EnchantmentInfernalBlowPhysicalDamagePercentToAddAsFireDamage2_"] = { affix = "Enchantment Infernal Blow Physical Damage Percent To Add As Fire Damage 2", "15% of Infernal Blow Physical Damage gained as Extra Fire Damage", statOrder = { 3958 }, level = 75, group = "EnchantmentInfernalBlowPhysicalDamagePercentToAddAsFireDamage", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [2484188706] = { "15% of Infernal Blow Physical Damage gained as Extra Fire Damage" }, } }, + ["EnchantmentInfernalBlowRadius1"] = { affix = "Enchantment Infernal Blow Area Of Effect 1", "16% increased Infernal Blow Area of Effect", statOrder = { 3808 }, level = 66, group = "EnchantmentInfernalBlowRadius", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack" }, tradeHashes = { [4031295671] = { "16% increased Infernal Blow Area of Effect" }, } }, + ["EnchantmentInfernalBlowRadius2"] = { affix = "Enchantment Infernal Blow Area Of Effect 2", "24% increased Infernal Blow Area of Effect", statOrder = { 3808 }, level = 75, group = "EnchantmentInfernalBlowRadius", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack" }, tradeHashes = { [4031295671] = { "24% increased Infernal Blow Area of Effect" }, } }, + ["EnchantmentInfernalBlowIncreasedDamagePerStack1__"] = { affix = "Enchantment Infernal Blow Increased Damage Per Stack 1", "Infernal Blow Debuff deals an additional 3% of Damage per Charge", statOrder = { 7267 }, level = 66, group = "EnchantmentInfernalBlowIncreasedDamagePerStack", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [105839441] = { "Infernal Blow Debuff deals an additional 3% of Damage per Charge" }, } }, + ["EnchantmentInfernalBlowIncreasedDamagePerStack2"] = { affix = "Enchantment Infernal Blow Increased Damage Per Stack 2", "Infernal Blow Debuff deals an additional 5% of Damage per Charge", statOrder = { 7267 }, level = 75, group = "EnchantmentInfernalBlowIncreasedDamagePerStack", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [105839441] = { "Infernal Blow Debuff deals an additional 5% of Damage per Charge" }, } }, + ["EnchantmentInfernalCryCooldownSpeed1"] = { affix = "Enchantment Infernal Cry Cooldown Speed 1", "Infernal Cry has 20% increased Cooldown Recovery Rate", statOrder = { 7269 }, level = 66, group = "EnchantmentInfernalCryCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2702698464] = { "Infernal Cry has 20% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentInfernalCryCooldownSpeed2"] = { affix = "Enchantment Infernal Cry Cooldown Speed 2", "Infernal Cry has 30% increased Cooldown Recovery Rate", statOrder = { 7269 }, level = 75, group = "EnchantmentInfernalCryCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2702698464] = { "Infernal Cry has 30% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentInfernalCryCombustAreaOfEffect1_"] = { affix = "Enchantment Infernal Cry Combust Area Of Effect 1", "Combust has 30% increased Area of Effect", statOrder = { 5840 }, level = 75, group = "EnchantmentInfernalCryCombustAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [4225882962] = { "Combust has 30% increased Area of Effect" }, } }, + ["EnchantmentIntimidatingCryCooldownSpeed1_"] = { affix = "Enchantment Intimidating Cry Cooldown Speed 1", "Intimidating Cry has 20% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 66, group = "EnchantmentIntimidatingCryCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has 20% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentIntimidatingCryCooldownSpeed2_"] = { affix = "Enchantment Intimidating Cry Cooldown Speed 2", "Intimidating Cry has 30% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "EnchantmentIntimidatingCryCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has 30% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentIntimidatingCryAreaOfEffect1_"] = { affix = "Enchantment Intimidating Cry Area Of Effect 1", "Intimidating Cry has 16% increased Area of Effect", statOrder = { 7299 }, level = 66, group = "EnchantmentIntimidatingCryAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1088946611] = { "Intimidating Cry has 16% increased Area of Effect" }, } }, + ["EnchantmentIntimidatingCryAreaOfEffect2_"] = { affix = "Enchantment Intimidating Cry Area Of Effect 2", "Intimidating Cry has 24% increased Area of Effect", statOrder = { 7299 }, level = 75, group = "EnchantmentIntimidatingCryAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1088946611] = { "Intimidating Cry has 24% increased Area of Effect" }, } }, + ["EnchantmentIntuitiveLinkDuration1"] = { affix = "Enchantment Intuitive Link Duration 1", "20% increased Intuitive Link Duration", statOrder = { 7301 }, level = 66, group = "EnchantmentIntuitiveLinkDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3545503197] = { "20% increased Intuitive Link Duration" }, } }, + ["EnchantmentIntuitiveLinkDuration2"] = { affix = "Enchantment Intuitive Link Duration 2", "30% increased Intuitive Link Duration", statOrder = { 7301 }, level = 75, group = "EnchantmentIntuitiveLinkDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3545503197] = { "30% increased Intuitive Link Duration" }, } }, + ["EnchantmentKineticBlastRadius1"] = { affix = "Enchantment Kinetic Blast Area Of Effect 1", "16% increased Kinetic Blast Area of Effect", statOrder = { 3831 }, level = 66, group = "EnchantmentKineticBlastRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1660758870] = { "16% increased Kinetic Blast Area of Effect" }, } }, + ["EnchantmentKineticBlastRadius2"] = { affix = "Enchantment Kinetic Blast Area Of Effect 2", "24% increased Kinetic Blast Area of Effect", statOrder = { 3831 }, level = 75, group = "EnchantmentKineticBlastRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1660758870] = { "24% increased Kinetic Blast Area of Effect" }, } }, + ["EnchantmentKineticBlastExplosions1_"] = { affix = "Enchantment Kinetic Blast Explosions 1", "Kinetic Blast has a 50% chance for an additional explosion", statOrder = { 4116 }, level = 66, group = "EnchantmentKineticBlastExplosions", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3105097589] = { "Kinetic Blast has a 50% chance for an additional explosion" }, } }, + ["EnchantmentKineticBlastExplosions2"] = { affix = "Enchantment Kinetic Blast Explosions 2", "Kinetic Blast has a 75% chance for an additional explosion", statOrder = { 4116 }, level = 75, group = "EnchantmentKineticBlastExplosions", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3105097589] = { "Kinetic Blast has a 75% chance for an additional explosion" }, } }, + ["EnchantmentLancingSteelPrimaryProjPierceNum1"] = { affix = "Enchantment Lancing Steel Primary Proj Pierce Num 1", "Lancing Steel's primary Projectile Pierces 3 additional Targets", statOrder = { 7336 }, level = 66, group = "EnchantmentLancingSteelPrimaryProjPierceNum", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [3031985694] = { "Lancing Steel's primary Projectile Pierces 3 additional Targets" }, } }, + ["EnchantmentLancingSteelPrimaryProjPierceNum2"] = { affix = "Enchantment Lancing Steel Primary Proj Pierce Num 2", "Lancing Steel's primary Projectile Pierces 5 additional Targets", statOrder = { 7336 }, level = 75, group = "EnchantmentLancingSteelPrimaryProjPierceNum", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [3031985694] = { "Lancing Steel's primary Projectile Pierces 5 additional Targets" }, } }, + ["EnchantmentLancingSteelImpaleChance1"] = { affix = "Enchantment Lancing Steel Impale Chance 1", "Lancing Steel's additional Projectiles have +20% chance to Impale Enemies", statOrder = { 7333 }, level = 66, group = "EnchantmentLancingSteelImpaleChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [618920318] = { "Lancing Steel's additional Projectiles have +20% chance to Impale Enemies" }, } }, + ["EnchantmentLancingSteelImpaleChance2"] = { affix = "Enchantment Lancing Steel Impale Chance 2", "Lancing Steel's additional Projectiles have +30% chance to Impale Enemies", statOrder = { 7333 }, level = 75, group = "EnchantmentLancingSteelImpaleChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [618920318] = { "Lancing Steel's additional Projectiles have +30% chance to Impale Enemies" }, } }, + ["EnchantmentLancingSteelChanceToNotConsumeShards1_"] = { affix = "Enchantment Lancing Steel Chance To Not Consume Shards 1", "Lancing Steel has 20% chance to count as consuming Steel Shards without Consuming them", statOrder = { 7335 }, level = 66, group = "EnchantmentLancingSteelChanceToNotConsumeShards", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2891251105] = { "Lancing Steel has 20% chance to count as consuming Steel Shards without Consuming them" }, } }, + ["EnchantmentLancingSteelChanceToNotConsumeShards2_"] = { affix = "Enchantment Lancing Steel Chance To Not Consume Shards 2", "Lancing Steel has 30% chance to count as consuming Steel Shards without Consuming them", statOrder = { 7335 }, level = 75, group = "EnchantmentLancingSteelChanceToNotConsumeShards", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2891251105] = { "Lancing Steel has 30% chance to count as consuming Steel Shards without Consuming them" }, } }, + ["EnchantmentLancingSteelNumberOfAdditionalProjectiles1"] = { affix = "Enchantment Lancing Steel Number of Additional Projectiles 1", "Lancing Steel fires an additional Projectile", statOrder = { 7334 }, level = 75, group = "EnchantmentLancingSteelNumberOfAdditionalProjectiles", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [4081185348] = { "Lancing Steel fires an additional Projectile" }, } }, + ["EnchantmentLeapSlamAttackSpeed1"] = { affix = "Enchantment Leap Slam Attack Speed 1", "10% increased Leap Slam Attack Speed", statOrder = { 3858 }, level = 66, group = "EnchantmentLeapSlamAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "attack", "speed" }, tradeHashes = { [3730999759] = { "10% increased Leap Slam Attack Speed" }, } }, + ["EnchantmentLeapSlamAttackSpeed2"] = { affix = "Enchantment Leap Slam Attack Speed 2", "15% increased Leap Slam Attack Speed", statOrder = { 3858 }, level = 75, group = "EnchantmentLeapSlamAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "attack", "speed" }, tradeHashes = { [3730999759] = { "15% increased Leap Slam Attack Speed" }, } }, + ["EnchantmentLeapSlamRadius1"] = { affix = "Enchantment Leap Slam Area Of Effect 1", "16% increased Leap Slam Area of Effect", statOrder = { 3815 }, level = 66, group = "EnchantmentLeapSlamRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3367800526] = { "16% increased Leap Slam Area of Effect" }, } }, + ["EnchantmentLeapSlamRadius2"] = { affix = "Enchantment Leap Slam Area Of Effect 2", "24% increased Leap Slam Area of Effect", statOrder = { 3815 }, level = 75, group = "EnchantmentLeapSlamRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3367800526] = { "24% increased Leap Slam Area of Effect" }, } }, + ["EnchantmentLightningArrowRadius1"] = { affix = "Enchantment Lightning Arrow Area Of Effect 1", "16% increased Lightning Arrow Area of Effect", statOrder = { 3816 }, level = 66, group = "EnchantmentLightningArrowRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [4129421630] = { "16% increased Lightning Arrow Area of Effect" }, } }, + ["EnchantmentLightningArrowRadius2"] = { affix = "Enchantment Lightning Arrow Area Of Effect 2", "24% increased Lightning Arrow Area of Effect", statOrder = { 3816 }, level = 75, group = "EnchantmentLightningArrowRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [4129421630] = { "24% increased Lightning Arrow Area of Effect" }, } }, + ["EnchantmentLightningArrowExtraTargets1"] = { affix = "Enchantment Lightning Arrow Extra Targets 1", "Lightning Arrow hits 1 additional Enemy", statOrder = { 4126 }, level = 66, group = "EnchantmentLightningArrowExtraTargets", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1901955093] = { "Lightning Arrow hits 1 additional Enemy" }, } }, + ["EnchantmentLightningArrowExtraTargets2"] = { affix = "Enchantment Lightning Arrow Extra Targets 2", "Lightning Arrow hits 2 additional Enemies", statOrder = { 4126 }, level = 75, group = "EnchantmentLightningArrowExtraTargets", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1901955093] = { "Lightning Arrow hits 2 additional Enemies" }, } }, + ["EnchantmentLightningGolemGrantedBuffEffect1"] = { affix = "Enchantment Lightning Golem Granted Buff Effect 1", "100% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 66, group = "EnchantmentLightningGolemGrantedBuffEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [2527931375] = { "100% increased Effect of the Buff granted by your Lightning Golems" }, } }, + ["EnchantmentLightningGolemGrantedBuffEffect2_"] = { affix = "Enchantment Lightning Golem Granted Buff Effect 2", "150% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "EnchantmentLightningGolemGrantedBuffEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [2527931375] = { "150% increased Effect of the Buff granted by your Lightning Golems" }, } }, + ["EnchantmentLightningGolemElementalResistances1"] = { affix = "Enchantment Lightning Golem Elemental Resistances 1", "+24% to Lightning Golem Elemental Resistances", statOrder = { 3987 }, level = 66, group = "EnchantmentLightningGolemElementalResistances", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [2338484156] = { "+24% to Lightning Golem Elemental Resistances" }, } }, + ["EnchantmentLightningGolemElementalResistances2"] = { affix = "Enchantment Lightning Golem Elemental Resistances 2", "+36% to Lightning Golem Elemental Resistances", statOrder = { 3987 }, level = 75, group = "EnchantmentLightningGolemElementalResistances", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [2338484156] = { "+36% to Lightning Golem Elemental Resistances" }, } }, + ["EnchantmentLightningStrikeNumOfAdditionalProjectiles1"] = { affix = "Enchantment Lightning Strike Num Of Additional Projectiles 1", "Lightning Strike fires an additional Projectile", statOrder = { 3945 }, level = 66, group = "EnchantmentLightningStrikeNumOfAdditionalProjectiles", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1213035889] = { "Lightning Strike fires an additional Projectile" }, } }, + ["EnchantmentLightningStrikeNumOfAdditionalProjectiles2"] = { affix = "Enchantment Lightning Strike Num Of Additional Projectiles 2", "Lightning Strike fires 2 additional Projectiles", statOrder = { 3945 }, level = 75, group = "EnchantmentLightningStrikeNumOfAdditionalProjectiles", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1213035889] = { "Lightning Strike fires 2 additional Projectiles" }, } }, + ["EnchantmentLightningStrikeAdditionalPierce1"] = { affix = "Enchantment Lightning Strike Additional Pierce 1", "Lightning Strike pierces 2 additional Targets", statOrder = { 3954 }, level = 66, group = "EnchantmentLightningStrikeAdditionalPierce", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3134777190] = { "Lightning Strike pierces 2 additional Targets" }, } }, + ["EnchantmentLightningStrikeAdditionalPierce2"] = { affix = "Enchantment Lightning Strike Additional Pierce 2", "Lightning Strike pierces 3 additional Targets", statOrder = { 3954 }, level = 75, group = "EnchantmentLightningStrikeAdditionalPierce", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3134777190] = { "Lightning Strike pierces 3 additional Targets" }, } }, + ["EnchantmentLightningTendrilsRadius1_"] = { affix = "Enchantment Lightning Tendrils Area Of Effect 1", "16% increased Lightning Tendrils Area of Effect", statOrder = { 3809 }, level = 66, group = "EnchantmentLightningTendrilsRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1230050013] = { "16% increased Lightning Tendrils Area of Effect" }, } }, + ["EnchantmentLightningTendrilsRadius2"] = { affix = "Enchantment Lightning Tendrils Area Of Effect 2", "24% increased Lightning Tendrils Area of Effect", statOrder = { 3809 }, level = 75, group = "EnchantmentLightningTendrilsRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1230050013] = { "24% increased Lightning Tendrils Area of Effect" }, } }, + ["EnchantmentLightningTendrilsCriticalStrikeChance1"] = { affix = "Enchantment Lightning Tendrils Critical Strike Chance 1", "40% increased Lightning Tendrils Critical Strike Chance", statOrder = { 4112 }, level = 66, group = "EnchantmentLightningTendrilsCriticalStrikeChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [12756171] = { "40% increased Lightning Tendrils Critical Strike Chance" }, } }, + ["EnchantmentLightningTendrilsCriticalStrikeChance2"] = { affix = "Enchantment Lightning Tendrils Critical Strike Chance 2", "60% increased Lightning Tendrils Critical Strike Chance", statOrder = { 4112 }, level = 75, group = "EnchantmentLightningTendrilsCriticalStrikeChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [12756171] = { "60% increased Lightning Tendrils Critical Strike Chance" }, } }, + ["EnchantmentLightningTowerTrapCastSpeed1"] = { affix = "Enchantment Lightning Tower Trap Throwing Speed 1", "8% increased Lightning Spire Trap Throwing Speed", statOrder = { 7480 }, level = 66, group = "EnchantmentLightningTowerTrapTrapThrowingSpeed", weightKey = { "helmet", "default", }, weightVal = { 60, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [1978232370] = { "8% increased Lightning Spire Trap Throwing Speed" }, } }, + ["EnchantmentLightningTowerTrapCastSpeed2"] = { affix = "Enchantment Lightning Tower Trap Throwing Speed 2", "12% increased Lightning Spire Trap Throwing Speed", statOrder = { 7480 }, level = 75, group = "EnchantmentLightningTowerTrapTrapThrowingSpeed", weightKey = { "helmet", "default", }, weightVal = { 60, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [1978232370] = { "12% increased Lightning Spire Trap Throwing Speed" }, } }, + ["EnchantmentLightningTowerTrapDuration1"] = { affix = "Enchantment Lightning Tower Trap Duration 1", "Lightning Spire Trap has 20% increased Skill Effect Duration", statOrder = { 7479 }, level = 66, group = "EnchantmentLightningTowerTrapDuration", weightKey = { "helmet", "default", }, weightVal = { 60, 0 }, modTags = { "caster" }, tradeHashes = { [2207890291] = { "Lightning Spire Trap has 20% increased Skill Effect Duration" }, } }, + ["EnchantmentLightningTowerTrapDuration2"] = { affix = "Enchantment Lightning Tower Trap Duration 2", "Lightning Spire Trap has 30% increased Skill Effect Duration", statOrder = { 7479 }, level = 75, group = "EnchantmentLightningTowerTrapDuration", weightKey = { "helmet", "default", }, weightVal = { 60, 0 }, modTags = { "caster" }, tradeHashes = { [2207890291] = { "Lightning Spire Trap has 30% increased Skill Effect Duration" }, } }, + ["EnchantmentLightningTowerTrapCooldownSpeed1_"] = { affix = "Enchantment Lightning Tower Trap Cooldown Speed 1", "Lightning Spire Trap has 10% increased Cooldown Recovery Rate", statOrder = { 7477 }, level = 66, group = "EnchantmentLightningTowerTrapCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 60, 0 }, modTags = { "caster" }, tradeHashes = { [1570047087] = { "Lightning Spire Trap has 10% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentLightningTowerTrapCooldownSpeed2"] = { affix = "Enchantment Lightning Tower Trap Cooldown Speed 2", "Lightning Spire Trap has 15% increased Cooldown Recovery Rate", statOrder = { 7477 }, level = 75, group = "EnchantmentLightningTowerTrapCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 60, 0 }, modTags = { "caster" }, tradeHashes = { [1570047087] = { "Lightning Spire Trap has 15% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentLightningTowerTrapAdditionalBeams1"] = { affix = "Enchantment Lightning Tower Trap Additional Beams 1", "Lightning Spire Trap strikes an additional area", statOrder = { 7475 }, level = 75, group = "EnchantmentLightningTowerTrapAdditionalBeams", weightKey = { "helmet", "default", }, weightVal = { 60, 0 }, modTags = { "caster" }, tradeHashes = { [1104507216] = { "Lightning Spire Trap strikes an additional area" }, } }, + ["EnchantmentLightningTrapAdditionalPierce1"] = { affix = "Enchantment Lightning Trap Additional Pierce 1", "Lightning Trap pierces 2 additional Targets", statOrder = { 3955 }, level = 66, group = "EnchantmentLightningTrapAdditionalPierce", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3764410821] = { "Lightning Trap pierces 2 additional Targets" }, } }, + ["EnchantmentLightningTrapAdditionalPierce2"] = { affix = "Enchantment Lightning Trap Additional Pierce 2", "Lightning Trap pierces 3 additional Targets", statOrder = { 3955 }, level = 75, group = "EnchantmentLightningTrapAdditionalPierce", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3764410821] = { "Lightning Trap pierces 3 additional Targets" }, } }, + ["EnchantmentLightningTrapPenetration1"] = { affix = "Enchantment Lightning Trap Penetration 1", "Lightning Trap Damage Penetrates 6% Lightning Resistance", statOrder = { 7481 }, level = 66, group = "EnchantmentLightningTrapPenetration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [1557531966] = { "Lightning Trap Damage Penetrates 6% Lightning Resistance" }, } }, + ["EnchantmentLightningTrapPenetration2"] = { affix = "Enchantment Lightning Trap Penetration 2", "Lightning Trap Damage Penetrates 10% Lightning Resistance", statOrder = { 7481 }, level = 75, group = "EnchantmentLightningTrapPenetration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [1557531966] = { "Lightning Trap Damage Penetrates 10% Lightning Resistance" }, } }, + ["EnchantmentLightningTrapShockEffect1"] = { affix = "Enchantment Lightning Trap Shock Effect 1", "25% increased Lightning Trap Lightning Ailment Effect", statOrder = { 7482 }, level = 66, group = "EnchantmentLightningTrapShockEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster", "ailment" }, tradeHashes = { [4210927948] = { "25% increased Lightning Trap Lightning Ailment Effect" }, } }, + ["EnchantmentLightningTrapShockEffect2"] = { affix = "Enchantment Lightning Trap Shock Effect 2", "40% increased Lightning Trap Lightning Ailment Effect", statOrder = { 7482 }, level = 75, group = "EnchantmentLightningTrapShockEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster", "ailment" }, tradeHashes = { [4210927948] = { "40% increased Lightning Trap Lightning Ailment Effect" }, } }, + ["EnchantmentLightningWarpCastSpeed1"] = { affix = "Enchantment Lightning Warp Cast Speed 1", "8% increased Lightning Warp Cast Speed", statOrder = { 3873 }, level = 66, group = "EnchantmentLightningWarpCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [1347575155] = { "8% increased Lightning Warp Cast Speed" }, } }, + ["EnchantmentLightningWarpCastSpeed2_"] = { affix = "Enchantment Lightning Warp Cast Speed 2", "12% increased Lightning Warp Cast Speed", statOrder = { 3873 }, level = 75, group = "EnchantmentLightningWarpCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [1347575155] = { "12% increased Lightning Warp Cast Speed" }, } }, + ["EnchantmentLightningWarpDuration1"] = { affix = "Enchantment Lightning Warp Duration 1", "20% reduced Lightning Warp Duration", statOrder = { 3933 }, level = 66, group = "EnchantmentLightningWarpDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [609478942] = { "20% reduced Lightning Warp Duration" }, } }, + ["EnchantmentLightningWarpDuration2"] = { affix = "Enchantment Lightning Warp Duration 2", "30% reduced Lightning Warp Duration", statOrder = { 3933 }, level = 75, group = "EnchantmentLightningWarpDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [609478942] = { "30% reduced Lightning Warp Duration" }, } }, + ["EnchantmentMagmaOrbNumOfAdditionalProjectilesInChain1"] = { affix = "Enchantment Rolling Magma Num Of Additional Projectiles In Chain 1", "Rolling Magma Chains an additional time", statOrder = { 3951 }, level = 66, group = "EnchantmentMagmaOrbNumOfAdditionalProjectilesInChain", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster" }, tradeHashes = { [2589980605] = { "Rolling Magma Chains an additional time" }, } }, + ["EnchantmentMagmaOrbNumOfAdditionalProjectilesInChain2"] = { affix = "Enchantment Rolling Magma Num Of Additional Projectiles In Chain 2", "Rolling Magma Chains an additional time", statOrder = { 3951 }, level = 75, group = "EnchantmentMagmaOrbNumOfAdditionalProjectilesInChain", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2589980605] = { "Rolling Magma Chains an additional time" }, } }, + ["EnchantmentMagmaOrbRadius1"] = { affix = "Enchantment Rolling Magma Area Of Effect 1", "16% increased Rolling Magma Area of Effect", statOrder = { 3810 }, level = 66, group = "EnchantmentMagmaOrbRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1646093658] = { "16% increased Rolling Magma Area of Effect" }, } }, + ["EnchantmentMagmaOrbRadius2"] = { affix = "Enchantment Rolling Magma Area Of Effect 2", "24% increased Rolling Magma Area of Effect", statOrder = { 3810 }, level = 75, group = "EnchantmentMagmaOrbRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1646093658] = { "24% increased Rolling Magma Area of Effect" }, } }, + ["EnchantmentMalevolenceManaReservation1"] = { affix = "Enchantment Malevolence Mana Reservation 1", "Malevolence has 20% increased Mana Reservation Efficiency", statOrder = { 8162 }, level = 66, group = "EnchantmentMalevolenceManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3266567165] = { "Malevolence has 20% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentMalevolenceManaReservation2"] = { affix = "Enchantment Malevolence Mana Reservation 2", "Malevolence has 30% increased Mana Reservation Efficiency", statOrder = { 8162 }, level = 75, group = "EnchantmentMalevolenceManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3266567165] = { "Malevolence has 30% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentMalevolenceManaReservationEfficiency1___"] = { affix = "Enchantment Malevolence Mana Reservation 1", "Malevolence has 20% increased Mana Reservation Efficiency", statOrder = { 8163 }, level = 66, group = "EnchantmentMalevolenceManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3383226338] = { "Malevolence has 20% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentMalevolenceManaReservationEfficiency2"] = { affix = "Enchantment Malevolence Mana Reservation 2", "Malevolence has 30% increased Mana Reservation Efficiency", statOrder = { 8163 }, level = 75, group = "EnchantmentMalevolenceManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3383226338] = { "Malevolence has 30% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentManabondRadius1"] = { affix = "Enchantment Manabond Area Of Effect 1", "16% increased Manabond Area of Effect", statOrder = { 8224 }, level = 66, group = "EnchantmentManabondRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [441455463] = { "16% increased Manabond Area of Effect" }, } }, + ["EnchantmentManabondRadius2"] = { affix = "Enchantment Manabond Area Of Effect 2", "24% increased Manabond Area of Effect", statOrder = { 8224 }, level = 75, group = "EnchantmentManabondRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [441455463] = { "24% increased Manabond Area of Effect" }, } }, + ["EnchantmentManabondPenetrationLowMana1"] = { affix = "Enchantment Manabond Low Mana Lightning Penetration 1", "Manabond Penetrates 8% Lightning Resistance while on Low Mana", statOrder = { 8223 }, level = 66, group = "EnchantmentManabondPenetrationLowMana", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "lightning", "caster" }, tradeHashes = { [2052200782] = { "Manabond Penetrates 8% Lightning Resistance while on Low Mana" }, } }, + ["EnchantmentManabondPenetrationLowMana2"] = { affix = "Enchantment Manabond Low Mana Lightning Penetration 2", "Manabond Penetrates 12% Lightning Resistance while on Low Mana", statOrder = { 8223 }, level = 75, group = "EnchantmentManabondPenetrationLowMana", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "lightning", "caster" }, tradeHashes = { [2052200782] = { "Manabond Penetrates 12% Lightning Resistance while on Low Mana" }, } }, + ["EnchantmentMirrorArrowAttackSpeed1"] = { affix = "Enchantment Mirror Arrow Attack Speed 1", "Mirror Arrow and Mirror Arrow Clones have 10% increased Attack Speed", statOrder = { 3866 }, level = 66, group = "EnchantmentMirrorArrowAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed", "minion" }, tradeHashes = { [3653459847] = { "Mirror Arrow and Mirror Arrow Clones have 10% increased Attack Speed" }, } }, + ["EnchantmentMirrorArrowAttackSpeed2"] = { affix = "Enchantment Mirror Arrow Attack Speed 2", "Mirror Arrow and Mirror Arrow Clones have 15% increased Attack Speed", statOrder = { 3866 }, level = 75, group = "EnchantmentMirrorArrowAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed", "minion" }, tradeHashes = { [3653459847] = { "Mirror Arrow and Mirror Arrow Clones have 15% increased Attack Speed" }, } }, + ["EnchantmentMirrorArrowCooldownSpeed1"] = { affix = "Enchantment Mirror Arrow Cooldown Speed 1", "Mirror Arrow has 20% increased Cooldown Recovery Rate", statOrder = { 3884 }, level = 66, group = "EnchantmentMirrorArrowCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1781106044] = { "Mirror Arrow has 20% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentMirrorArrowCooldownSpeed2"] = { affix = "Enchantment Mirror Arrow Cooldown Speed 2", "Mirror Arrow has 30% increased Cooldown Recovery Rate", statOrder = { 3884 }, level = 75, group = "EnchantmentMirrorArrowCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1781106044] = { "Mirror Arrow has 30% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentMoltenStrikeNumOfAdditionalProjectiles1_"] = { affix = "Enchantment Molten Strike Num Of Additional Projectiles 1", "Molten Strike fires an additional Projectile", statOrder = { 3946 }, level = 66, group = "EnchantmentMoltenStrikeNumOfAdditionalProjectiles", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [995860222] = { "Molten Strike fires an additional Projectile" }, } }, + ["EnchantmentMoltenStrikeNumOfAdditionalProjectiles2"] = { affix = "Enchantment Molten Strike Num Of Additional Projectiles 2", "Molten Strike fires 2 additional Projectiles", statOrder = { 3946 }, level = 75, group = "EnchantmentMoltenStrikeNumOfAdditionalProjectiles", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [995860222] = { "Molten Strike fires 2 additional Projectiles" }, } }, + ["EnchantmentMoltenStrikeRadius1"] = { affix = "Enchantment Molten Strike Area Of Effect 1", "16% increased Molten Strike Area of Effect", statOrder = { 3812 }, level = 66, group = "EnchantmentMoltenStrikeRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2524620107] = { "16% increased Molten Strike Area of Effect" }, } }, + ["EnchantmentMoltenStrikeRadius2"] = { affix = "Enchantment Molten Strike Area Of Effect 2", "24% increased Molten Strike Area of Effect", statOrder = { 3812 }, level = 75, group = "EnchantmentMoltenStrikeRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2524620107] = { "24% increased Molten Strike Area of Effect" }, } }, + ["EnchantmentPhaseRunPercentChanceToNotConsumeFrenzyCharges1"] = { affix = "Enchantment Phase Run Percent Chance To Not Consume Frenzy Charges 1", "20% chance for Phase Run to increase Duration without removing Frenzy Charges", statOrder = { 4026 }, level = 66, group = "EnchantmentPhaseRunPercentChanceToNotConsumeFrenzyCharges", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4259029320] = { "20% chance for Phase Run to increase Duration without removing Frenzy Charges" }, } }, + ["EnchantmentPhaseRunPercentChanceToNotConsumeFrenzyCharges2"] = { affix = "Enchantment Phase Run Percent Chance To Not Consume Frenzy Charges 2", "30% chance for Phase Run to increase Duration without removing Frenzy Charges", statOrder = { 4026 }, level = 75, group = "EnchantmentPhaseRunPercentChanceToNotConsumeFrenzyCharges", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4259029320] = { "30% chance for Phase Run to increase Duration without removing Frenzy Charges" }, } }, + ["EnchantmentPhaseRunDuration1"] = { affix = "Enchantment Phase Run Duration 1", "24% increased Phase Run Duration", statOrder = { 4118 }, level = 66, group = "EnchantmentPhaseRunDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2556095677] = { "24% increased Phase Run Duration" }, } }, + ["EnchantmentPhaseRunDuration2"] = { affix = "Enchantment Phase Run Duration 2", "36% increased Phase Run Duration", statOrder = { 4118 }, level = 75, group = "EnchantmentPhaseRunDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2556095677] = { "36% increased Phase Run Duration" }, } }, + ["EnchantmentPhysicalCascadeTrapDuration1__"] = { affix = "Enchantment Physical Cascade Trap Duration 1", "Seismic Trap has 20% increased Skill Effect Duration", statOrder = { 9620 }, level = 66, group = "EnchantmentPhysicalCascadeTrapDuration", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [1615912303] = { "Seismic Trap has 20% increased Skill Effect Duration" }, } }, + ["EnchantmentPhysicalCascadeTrapDuration2"] = { affix = "Enchantment Physical Cascade Trap Duration 2", "Seismic Trap has 30% increased Skill Effect Duration", statOrder = { 9620 }, level = 75, group = "EnchantmentPhysicalCascadeTrapDuration", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [1615912303] = { "Seismic Trap has 30% increased Skill Effect Duration" }, } }, + ["EnchantmentPhysicalCascadeCooldownSpeed1"] = { affix = "Enchantment Physical Cascade Cooldown Speed 1", "Seismic Trap has 10% increased Cooldown Recovery Rate", statOrder = { 9618 }, level = 66, group = "EnchantmentPhysicalCascadeCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [3618430531] = { "Seismic Trap has 10% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentPhysicalCascadeCooldownSpeed2"] = { affix = "Enchantment Physical Cascade Cooldown Speed 2", "Seismic Trap has 15% increased Cooldown Recovery Rate", statOrder = { 9618 }, level = 75, group = "EnchantmentPhysicalCascadeCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [3618430531] = { "Seismic Trap has 15% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentPhysicalCascadeAdditionalCascades1"] = { affix = "Enchantment Physical Cascade Additional Cascades 1", "Seismic Trap releases an additional Wave", statOrder = { 9621 }, level = 75, group = "EnchantmentPhysicalCascadeAdditionalCascades", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [1389191919] = { "Seismic Trap releases an additional Wave" }, } }, + ["EnchantmentPetrifiedBloodReservation1"] = { affix = "Enchantment Petrified Blood Reservation 1", "Petrified Blood has 28% increased Mana Reservation Efficiency", statOrder = { 9612 }, level = 66, group = "EnchantmentPetrifiedBloodReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1829483269] = { "Petrified Blood has 28% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentPetrifiedBloodReservation2"] = { affix = "Enchantment Petrified Blood Reservation 2", "Petrified Blood has 40% increased Mana Reservation Efficiency", statOrder = { 9612 }, level = 75, group = "EnchantmentPetrifiedBloodReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1829483269] = { "Petrified Blood has 40% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentPetrifiedBloodReservationEfficiency1"] = { affix = "Enchantment Petrified Blood Reservation 1", "Petrified Blood has 30% increased Mana Reservation Efficiency", statOrder = { 9613 }, level = 66, group = "EnchantmentPetrifiedBloodReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1779904215] = { "Petrified Blood has 30% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentPetrifiedBloodReservationEfficiency2_"] = { affix = "Enchantment Petrified Blood Reservation 2", "Petrified Blood has 45% increased Mana Reservation Efficiency", statOrder = { 9613 }, level = 75, group = "EnchantmentPetrifiedBloodReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1779904215] = { "Petrified Blood has 45% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentPoachersMarkCurseEffect1"] = { affix = "Enchantment Poachers Mark Curse Effect 1", "20% increased Poacher's Mark Curse Effect", statOrder = { 4006 }, level = 66, group = "EnchantmentPoachersMarkCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3278819254] = { "20% increased Poacher's Mark Curse Effect" }, } }, + ["EnchantmentPoachersMarkCurseEffect2"] = { affix = "Enchantment Poachers Mark Curse Effect 2", "30% increased Poacher's Mark Curse Effect", statOrder = { 4006 }, level = 75, group = "EnchantmentPoachersMarkCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3278819254] = { "30% increased Poacher's Mark Curse Effect" }, } }, + ["EnchantmentPoachersMarkDuration1"] = { affix = "Enchantment Poachers Mark Duration 1", "30% increased Poacher's Mark Duration", statOrder = { 3907 }, level = 66, group = "EnchantmentPoachersMarkDuration", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [4227497218] = { "30% increased Poacher's Mark Duration" }, } }, + ["EnchantmentPoachersMarkDuration2"] = { affix = "Enchantment Poachers Mark Duration 2", "45% increased Poacher's Mark Duration", statOrder = { 3907 }, level = 75, group = "EnchantmentPoachersMarkDuration", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [4227497218] = { "45% increased Poacher's Mark Duration" }, } }, + ["EnchantmentPoisonousConcoctionRadius1"] = { affix = "Enchantment Poisonous Concoction Area Of Effect 1", "16% increased Poisonous Concoction Area of Effect", statOrder = { 9696 }, level = 66, group = "EnchantmentPoisonousConcoctionRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3892584986] = { "16% increased Poisonous Concoction Area of Effect" }, } }, + ["EnchantmentPoisonousConcoctionRadius2__"] = { affix = "Enchantment Poisonous Concoction Area Of Effect 2", "24% increased Poisonous Concoction Area of Effect", statOrder = { 9696 }, level = 75, group = "EnchantmentPoisonousConcoctionRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3892584986] = { "24% increased Poisonous Concoction Area of Effect" }, } }, + ["EnchantmentPoisonousConcoctionCharges1"] = { affix = "Enchantment Poisonous Concoction Flask Charges 1", "Poisonous Concoction uses 8% reduced Flask Charges", statOrder = { 9695 }, level = 66, group = "EnchantmentPoisonousConcoctionCharges", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "flask", "attack" }, tradeHashes = { [1474722052] = { "Poisonous Concoction uses 8% reduced Flask Charges" }, } }, + ["EnchantmentPoisonousConcoctionCharges2_"] = { affix = "Enchantment Poisonous Concoction Flask Charges 2", "Poisonous Concoction uses 12% reduced Flask Charges", statOrder = { 9695 }, level = 75, group = "EnchantmentPoisonousConcoctionCharges", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "flask", "attack" }, tradeHashes = { [1474722052] = { "Poisonous Concoction uses 12% reduced Flask Charges" }, } }, + ["EnchantmentPowerSiphonPercentChanceToGainPowerChargeOnKill1__"] = { affix = "Enchantment Power Siphon Percent Chance To Gain Power Charge On Kill 1", "30% Chance to gain an additional Power Charge on Kill with Power Siphon", statOrder = { 3972 }, level = 66, group = "EnchantmentPowerSiphonPercentChanceToGainPowerChargeOnKill", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "power_charge", "attack" }, tradeHashes = { [3609207587] = { "30% Chance to gain an additional Power Charge on Kill with Power Siphon" }, } }, + ["EnchantmentPowerSiphonPercentChanceToGainPowerChargeOnKill2"] = { affix = "Enchantment Power Siphon Percent Chance To Gain Power Charge On Kill 2", "45% Chance to gain an additional Power Charge on Kill with Power Siphon", statOrder = { 3972 }, level = 75, group = "EnchantmentPowerSiphonPercentChanceToGainPowerChargeOnKill", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "power_charge", "attack" }, tradeHashes = { [3609207587] = { "45% Chance to gain an additional Power Charge on Kill with Power Siphon" }, } }, + ["EnchantmentPowerSiphonAttackSpeed1_"] = { affix = "Enchantment Power Siphon Attack Speed 1", "10% increased Power Siphon Attack Speed", statOrder = { 3863 }, level = 66, group = "EnchantmentPowerSiphonAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2753191013] = { "10% increased Power Siphon Attack Speed" }, } }, + ["EnchantmentPowerSiphonAttackSpeed2"] = { affix = "Enchantment Power Siphon Attack Speed 2", "15% increased Power Siphon Attack Speed", statOrder = { 3863 }, level = 75, group = "EnchantmentPowerSiphonAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2753191013] = { "15% increased Power Siphon Attack Speed" }, } }, + ["EnchantmentPowerSiphonAdditionalProjectiles1"] = { affix = "Enchantment Power Siphon Additional Projectiles 1", "Power Siphon fires at up to 1 additional target", statOrder = { 9703 }, level = 66, group = "EnchantmentPowerSiphonAdditionalProjectiles", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1177831984] = { "Power Siphon fires at up to 1 additional target" }, } }, + ["EnchantmentPowerSiphonAdditionalProjectiles2"] = { affix = "Enchantment Power Siphon Additional Projectiles 2", "Power Siphon fires at up to 2 additional targets", statOrder = { 9703 }, level = 75, group = "EnchantmentPowerSiphonAdditionalProjectiles", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1177831984] = { "Power Siphon fires at up to 2 additional targets" }, } }, + ["EnchantmentPrideManaReservation1"] = { affix = "Enchantment Pride Mana Reservation 1", "Pride has 20% increased Mana Reservation Efficiency", statOrder = { 9715 }, level = 66, group = "EnchantmentPrideManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3484910620] = { "Pride has 20% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentPrideManaReservation2"] = { affix = "Enchantment Pride Mana Reservation 2", "Pride has 30% increased Mana Reservation Efficiency", statOrder = { 9715 }, level = 75, group = "EnchantmentPrideManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3484910620] = { "Pride has 30% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentPrideManaReservationEfficiency1"] = { affix = "Enchantment Pride Mana Reservation 1", "Pride has 20% increased Mana Reservation Efficiency", statOrder = { 9716 }, level = 66, group = "EnchantmentPrideManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3993865658] = { "Pride has 20% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentPrideManaReservationEfficiency2_____"] = { affix = "Enchantment Pride Mana Reservation 2", "Pride has 30% increased Mana Reservation Efficiency", statOrder = { 9716 }, level = 75, group = "EnchantmentPrideManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3993865658] = { "Pride has 30% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentPrecisionManaReservation1"] = { affix = "Enchantment Precision Mana Reservation 1", "Precision has 40% increased Mana Reservation Efficiency", statOrder = { 9704 }, level = 66, group = "EnchantmentPrecisionManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [658622139] = { "Precision has 40% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentPrecisionManaReservation2"] = { affix = "Enchantment Precision Mana Reservation 2", "Precision has 60% increased Mana Reservation Efficiency", statOrder = { 9704 }, level = 75, group = "EnchantmentPrecisionManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [658622139] = { "Precision has 60% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentPrecisionManaReservationEfficiency1"] = { affix = "Enchantment Precision Mana Reservation 1", "Precision has 50% increased Mana Reservation Efficiency", statOrder = { 9706 }, level = 66, group = "EnchantmentPrecisionManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3859865977] = { "Precision has 50% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentPrecisionManaReservationEfficiency2_"] = { affix = "Enchantment Precision Mana Reservation 2", "Precision has 75% increased Mana Reservation Efficiency", statOrder = { 9706 }, level = 75, group = "EnchantmentPrecisionManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3859865977] = { "Precision has 75% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentProjectileWeaknessCurseEffect1"] = { affix = "Enchantment Projectile Weakness Curse Effect 1", "Sniper's Mark has 10% increased Curse Effect", statOrder = { 4007 }, level = 66, group = "EnchantmentProjectileWeaknessCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2789561878] = { "Sniper's Mark has 10% increased Curse Effect" }, } }, + ["EnchantmentProjectileWeaknessCurseEffect2"] = { affix = "Enchantment Projectile Weakness Curse Effect 2", "Sniper's Mark has 15% increased Curse Effect", statOrder = { 4007 }, level = 75, group = "EnchantmentProjectileWeaknessCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2789561878] = { "Sniper's Mark has 15% increased Curse Effect" }, } }, + ["EnchantmentProjectileWeaknessDuration1"] = { affix = "Enchantment Projectile Weakness Duration 1", "Sniper's Mark has 30% increased Duration", statOrder = { 3908 }, level = 66, group = "EnchantmentProjectileWeaknessDuration", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1654191578] = { "Sniper's Mark has 30% increased Duration" }, } }, + ["EnchantmentProjectileWeaknessDuration2_"] = { affix = "Enchantment Projectile Weakness Duration 2", "Sniper's Mark has 45% increased Duration", statOrder = { 3908 }, level = 75, group = "EnchantmentProjectileWeaknessDuration", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1654191578] = { "Sniper's Mark has 45% increased Duration" }, } }, + ["EnchantmentProtectiveLinkDuration1_"] = { affix = "Enchantment Protective Link Duration 1", "20% increased Protective Link Duration", statOrder = { 9757 }, level = 66, group = "EnchantmentProtectiveLinkDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3917923501] = { "20% increased Protective Link Duration" }, } }, + ["EnchantmentProtectiveLinkDuration2_"] = { affix = "Enchantment Protective Link Duration 2", "30% increased Protective Link Duration", statOrder = { 9757 }, level = 75, group = "EnchantmentProtectiveLinkDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3917923501] = { "30% increased Protective Link Duration" }, } }, + ["EnchantmentPunctureDuration1"] = { affix = "Enchantment Puncture Duration 1", "30% increased Puncture Duration", statOrder = { 3899 }, level = 66, group = "EnchantmentPunctureDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3186938438] = { "30% increased Puncture Duration" }, } }, + ["EnchantmentPunctureDuration2"] = { affix = "Enchantment Puncture Duration 2", "45% increased Puncture Duration", statOrder = { 3899 }, level = 75, group = "EnchantmentPunctureDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3186938438] = { "45% increased Puncture Duration" }, } }, + ["EnchantmentPunctureMaimOnHitPercentChance1_"] = { affix = "Enchantment Puncture Maim On Hit Percent Chance 1", "20% Chance for Puncture to Maim on hit", statOrder = { 3966 }, level = 66, group = "EnchantmentPunctureMaimOnHitPercentChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [244125450] = { "20% Chance for Puncture to Maim on hit" }, } }, + ["EnchantmentPunctureMaimOnHitPercentChance2"] = { affix = "Enchantment Puncture Maim On Hit Percent Chance 2", "30% Chance for Puncture to Maim on hit", statOrder = { 3966 }, level = 75, group = "EnchantmentPunctureMaimOnHitPercentChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [244125450] = { "30% Chance for Puncture to Maim on hit" }, } }, + ["EnchantmentPunishmentCurseEffect1"] = { affix = "Enchantment Punishment Curse Effect 1", "10% increased Punishment Curse Effect", statOrder = { 4015 }, level = 66, group = "EnchantmentPunishmentCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2844206732] = { "10% increased Punishment Curse Effect" }, } }, + ["EnchantmentPunishmentCurseEffect2"] = { affix = "Enchantment Punishment Curse Effect 2", "15% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "EnchantmentPunishmentCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2844206732] = { "15% increased Punishment Curse Effect" }, } }, + ["EnchantmentPunishmentDuration1"] = { affix = "Enchantment Punishment Duration 1", "30% increased Punishment Duration", statOrder = { 3912 }, level = 66, group = "EnchantmentPunishmentDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1924239636] = { "30% increased Punishment Duration" }, } }, + ["EnchantmentPunishmentDuration2"] = { affix = "Enchantment Punishment Duration 2", "45% increased Punishment Duration", statOrder = { 3912 }, level = 75, group = "EnchantmentPunishmentDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1924239636] = { "45% increased Punishment Duration" }, } }, + ["EnchantmentPurifyingFlameAreaOfEffectWhenTargetingConsecratedGround1"] = { affix = "Enchantment Purifying Flame Area Of Effect When Targeting Consecrated Ground 1", "Purifying Flame has 20% increased Area of Effect if targeting Consecrated Ground", statOrder = { 9958 }, level = 66, group = "EnchantmentPurifyingFlameAreaOfEffectWhenTargetingConsecratedGround", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1954529734] = { "Purifying Flame has 20% increased Area of Effect if targeting Consecrated Ground" }, } }, + ["EnchantmentPurifyingFlameAreaOfEffectWhenTargetingConsecratedGround2"] = { affix = "Enchantment Purifying Flame Area Of Effect When Targeting Consecrated Ground 2", "Purifying Flame has 30% increased Area of Effect if targeting Consecrated Ground", statOrder = { 9958 }, level = 75, group = "EnchantmentPurifyingFlameAreaOfEffectWhenTargetingConsecratedGround", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1954529734] = { "Purifying Flame has 30% increased Area of Effect if targeting Consecrated Ground" }, } }, + ["EnchantmentPurifyingFlameConsecratedGroundEnemyDamageTaken1"] = { affix = "Enchantment Purifying Flame Consecrated Ground Enemy Damage Taken 1", "Consecrated Ground from Purifying Flame applies 6% increased Damage taken to Enemies", statOrder = { 9959 }, level = 66, group = "EnchantmentPurifyingFlameConsecratedGroundEnemyDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3100629498] = { "Consecrated Ground from Purifying Flame applies 6% increased Damage taken to Enemies" }, } }, + ["EnchantmentPurifyingFlameConsecratedGroundEnemyDamageTaken2"] = { affix = "Enchantment Purifying Flame Consecrated Ground Enemy Damage Taken 2", "Consecrated Ground from Purifying Flame applies 9% increased Damage taken to Enemies", statOrder = { 9959 }, level = 75, group = "EnchantmentPurifyingFlameConsecratedGroundEnemyDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3100629498] = { "Consecrated Ground from Purifying Flame applies 9% increased Damage taken to Enemies" }, } }, + ["EnchantmentPurityOfElementsManaReservation1_"] = { affix = "Enchantment Purity Of Elements Mana Reservation 1", "Purity of Elements has 20% increased Mana Reservation Efficiency", statOrder = { 9766 }, level = 66, group = "EnchantmentPurityOfElementsManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [491551762] = { "Purity of Elements has 20% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentPurityOfElementsManaReservation2"] = { affix = "Enchantment Purity Of Elements Mana Reservation 2", "Purity of Elements has 30% increased Mana Reservation Efficiency", statOrder = { 9766 }, level = 75, group = "EnchantmentPurityOfElementsManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [491551762] = { "Purity of Elements has 30% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentPurityOfElementsManaReservationEfficiency1"] = { affix = "Enchantment Purity Of Elements Mana Reservation 1", "Purity of Elements has 20% increased Mana Reservation Efficiency", statOrder = { 9767 }, level = 66, group = "EnchantmentPurityOfElementsManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3303293173] = { "Purity of Elements has 20% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentPurityOfElementsManaReservationEfficiency2"] = { affix = "Enchantment Purity Of Elements Mana Reservation 2", "Purity of Elements has 30% increased Mana Reservation Efficiency", statOrder = { 9767 }, level = 75, group = "EnchantmentPurityOfElementsManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3303293173] = { "Purity of Elements has 30% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentPurityOfFireManaReservation1"] = { affix = "Enchantment Purity Of Fire Mana Reservation 1", "Purity of Fire has 28% increased Mana Reservation Efficiency", statOrder = { 9769 }, level = 66, group = "EnchantmentPurityOfFireManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1135152940] = { "Purity of Fire has 28% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentPurityOfFireManaReservation2"] = { affix = "Enchantment Purity Of Fire Mana Reservation 2", "Purity of Fire has 40% increased Mana Reservation Efficiency", statOrder = { 9769 }, level = 75, group = "EnchantmentPurityOfFireManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1135152940] = { "Purity of Fire has 40% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentPurityOfFireManaReservationEfficiency1"] = { affix = "Enchantment Purity Of Fire Mana Reservation 1", "Purity of Fire has 30% increased Mana Reservation Efficiency", statOrder = { 9770 }, level = 66, group = "EnchantmentPurityOfFireManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3003688066] = { "Purity of Fire has 30% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentPurityOfFireManaReservationEfficiency2"] = { affix = "Enchantment Purity Of Fire Mana Reservation 2", "Purity of Fire has 45% increased Mana Reservation Efficiency", statOrder = { 9770 }, level = 75, group = "EnchantmentPurityOfFireManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3003688066] = { "Purity of Fire has 45% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentPurityOfIceManaReservation1"] = { affix = "Enchantment Purity Of Ice Mana Reservation 1", "Purity of Ice has 28% increased Mana Reservation Efficiency", statOrder = { 9772 }, level = 66, group = "EnchantmentPurityOfIceManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2665518524] = { "Purity of Ice has 28% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentPurityOfIceManaReservation2"] = { affix = "Enchantment Purity Of Ice Mana Reservation 2", "Purity of Ice has 40% increased Mana Reservation Efficiency", statOrder = { 9772 }, level = 75, group = "EnchantmentPurityOfIceManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2665518524] = { "Purity of Ice has 40% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentPurityOfIceManaReservationEfficiency1_"] = { affix = "Enchantment Purity Of Ice Mana Reservation 1", "Purity of Ice has 30% increased Mana Reservation Efficiency", statOrder = { 9773 }, level = 66, group = "EnchantmentPurityOfIceManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [139925400] = { "Purity of Ice has 30% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentPurityOfIceManaReservationEfficiency2"] = { affix = "Enchantment Purity Of Ice Mana Reservation 2", "Purity of Ice has 45% increased Mana Reservation Efficiency", statOrder = { 9773 }, level = 75, group = "EnchantmentPurityOfIceManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [139925400] = { "Purity of Ice has 45% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentPurityOfLightningManaReservation1"] = { affix = "Enchantment Purity Of Lightning Mana Reservation 1", "Purity of Lightning has 28% increased Mana Reservation Efficiency", statOrder = { 9775 }, level = 66, group = "EnchantmentPurityOfLightningManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1450978702] = { "Purity of Lightning has 28% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentPurityOfLightningManaReservation2"] = { affix = "Enchantment Purity Of Lightning Mana Reservation 2", "Purity of Lightning has 40% increased Mana Reservation Efficiency", statOrder = { 9775 }, level = 75, group = "EnchantmentPurityOfLightningManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1450978702] = { "Purity of Lightning has 40% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentPurityOfLightningManaReservationEfficiency1_"] = { affix = "Enchantment Purity Of Lightning Mana Reservation 1", "Purity of Lightning has 30% increased Mana Reservation Efficiency", statOrder = { 9776 }, level = 66, group = "EnchantmentPurityOfLightningManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3411256933] = { "Purity of Lightning has 30% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentPurityOfLightningManaReservationEfficiency2_"] = { affix = "Enchantment Purity Of Lightning Mana Reservation 2", "Purity of Lightning has 45% increased Mana Reservation Efficiency", statOrder = { 9776 }, level = 75, group = "EnchantmentPurityOfLightningManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3411256933] = { "Purity of Lightning has 45% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentRainOfArrowsAttackSpeed1"] = { affix = "Enchantment Rain Of Arrows Attack Speed 1", "10% increased Rain of Arrows Attack Speed", statOrder = { 3857 }, level = 66, group = "EnchantmentRainOfArrowsAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3825617457] = { "10% increased Rain of Arrows Attack Speed" }, } }, + ["EnchantmentRainOfArrowsAttackSpeed2"] = { affix = "Enchantment Rain Of Arrows Attack Speed 2", "15% increased Rain of Arrows Attack Speed", statOrder = { 3857 }, level = 75, group = "EnchantmentRainOfArrowsAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3825617457] = { "15% increased Rain of Arrows Attack Speed" }, } }, + ["EnchantmentRainOfArrowsRadius1"] = { affix = "Enchantment Rain Of Arrows Area Of Effect 1", "16% increased Rain of Arrows Area of Effect", statOrder = { 3814 }, level = 66, group = "EnchantmentRainOfArrowsRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2205814812] = { "16% increased Rain of Arrows Area of Effect" }, } }, + ["EnchantmentRainOfArrowsRadius2"] = { affix = "Enchantment Rain Of Arrows Area Of Effect 2", "24% increased Rain of Arrows Area of Effect", statOrder = { 3814 }, level = 75, group = "EnchantmentRainOfArrowsRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2205814812] = { "24% increased Rain of Arrows Area of Effect" }, } }, + ["EnchantmentRainOfArrowsRepeatCount1_"] = { affix = "Enchantment Rain Of Arrows Repeat Count 1", "Rain of Arrows has 10% chance to fire an additional sequence of arrows", statOrder = { 9810 }, level = 66, group = "EnchantmentRainOfArrowsAdditionalSequenceChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3505939359] = { "Rain of Arrows has 10% chance to fire an additional sequence of arrows" }, } }, + ["EnchantmentRainOfArrowsRepeatCount2"] = { affix = "Enchantment Rain Of Arrows Repeat Count 2", "Rain of Arrows has 15% chance to fire an additional sequence of arrows", statOrder = { 9810 }, level = 75, group = "EnchantmentRainOfArrowsAdditionalSequenceChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3505939359] = { "Rain of Arrows has 15% chance to fire an additional sequence of arrows" }, } }, + ["EnchantmentRallyingCryDuration1"] = { affix = "Enchantment Rallying Cry Buff Effect 1", "30% increased Rallying Cry Buff Effect", statOrder = { 9823 }, level = 66, group = "EnchantmentRallyingCryBuffEffectOldDivide3", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [945725535] = { "30% increased Rallying Cry Buff Effect" }, } }, + ["EnchantmentRallyingCryDuration2"] = { affix = "Enchantment Rallying Cry Buff Effect 2", "45% increased Rallying Cry Buff Effect", statOrder = { 9823 }, level = 75, group = "EnchantmentRallyingCryBuffEffectOldDivide3", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [945725535] = { "45% increased Rallying Cry Buff Effect" }, } }, + ["EnchantmentRallyingCryBuffEffectNew1"] = { affix = "Enchantment Rallying Cry Buff Effect 1", "10% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 66, group = "EnchantmentRallyingCryBuffEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "10% increased Rallying Cry Buff Effect" }, } }, + ["EnchantmentRallyingCryBuffEffectNew2"] = { affix = "Enchantment Rallying Cry Buff Effect 2", "15% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "EnchantmentRallyingCryBuffEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "15% increased Rallying Cry Buff Effect" }, } }, + ["EnchantmentRallyingCryAdditionalExert1"] = { affix = "Enchantment Rallying Cry Additional Exert 1", "Rallying Cry Exerts 1 additional Attack", statOrder = { 9825 }, level = 75, group = "EnchantmentRallyingCryAdditionalExert", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2080441723] = { "Rallying Cry Exerts 1 additional Attack" }, } }, + ["EnchantmentReaveRadius1"] = { affix = "Enchantment Reave Area Of Effect 1", "16% increased Reave Radius", statOrder = { 3811 }, level = 66, group = "EnchantmentReaveRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1486490067] = { "16% increased Reave Radius" }, } }, + ["EnchantmentReaveRadius2"] = { affix = "Enchantment Reave Area Of Effect 2", "24% increased Reave Radius", statOrder = { 3811 }, level = 75, group = "EnchantmentReaveRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1486490067] = { "24% increased Reave Radius" }, } }, + ["EnchantmentReckoningCooldownSpeed1"] = { affix = "Enchantment Reckoning Cooldown Speed 1", "Reckoning has 20% increased Cooldown Recovery Rate", statOrder = { 3880 }, level = 66, group = "EnchantmentReckoningCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [804983774] = { "Reckoning has 20% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentReckoningCooldownSpeed2"] = { affix = "Enchantment Reckoning Cooldown Speed 2", "Reckoning has 30% increased Cooldown Recovery Rate", statOrder = { 3880 }, level = 75, group = "EnchantmentReckoningCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [804983774] = { "Reckoning has 30% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentRejuvinationTotemPercentLifeRegenerationAddedAsManaRegeneration1_"] = { affix = "Enchantment Rejuvination Totem Percent Life Regeneration Added As Mana Regeneration 1", "Rejuvenation Totem also grants Mana Regeneration equal to 10% of its Life Regeneration", statOrder = { 3998 }, level = 66, group = "EnchantmentRejuvinationTotemPercentLifeRegenerationAddedAsManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1803063132] = { "Rejuvenation Totem also grants Mana Regeneration equal to 10% of its Life Regeneration" }, } }, + ["EnchantmentRejuvinationTotemPercentLifeRegenerationAddedAsManaRegeneration2_"] = { affix = "Enchantment Rejuvination Totem Percent Life Regeneration Added As Mana Regeneration 2", "Rejuvenation Totem also grants Mana Regeneration equal to 15% of its Life Regeneration", statOrder = { 3998 }, level = 75, group = "EnchantmentRejuvinationTotemPercentLifeRegenerationAddedAsManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1803063132] = { "Rejuvenation Totem also grants Mana Regeneration equal to 15% of its Life Regeneration" }, } }, + ["EnchantmentRejuvinationTotemLifeRegeneration1"] = { affix = "Enchantment Rejuvination Totem Life Regeneration 1", "30% increased Rejuvenation Totem Aura Effect", statOrder = { 3999 }, level = 66, group = "EnchantmentRejuvinationTotemLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1588572574] = { "30% increased Rejuvenation Totem Aura Effect" }, } }, + ["EnchantmentRejuvinationTotemLifeRegeneration2"] = { affix = "Enchantment Rejuvination Totem Life Regeneration 2", "45% increased Rejuvenation Totem Aura Effect", statOrder = { 3999 }, level = 75, group = "EnchantmentRejuvinationTotemLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1588572574] = { "45% increased Rejuvenation Totem Aura Effect" }, } }, + ["EnchantmentRighteousFireRadius1"] = { affix = "Enchantment Righteous Fire Area Of Effect 1", "16% increased Righteous Fire Area of Effect", statOrder = { 3822 }, level = 66, group = "EnchantmentRighteousFireRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2430635444] = { "16% increased Righteous Fire Area of Effect" }, } }, + ["EnchantmentRighteousFireRadius2"] = { affix = "Enchantment Righteous Fire Area Of Effect 2", "24% increased Righteous Fire Area of Effect", statOrder = { 3822 }, level = 75, group = "EnchantmentRighteousFireRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2430635444] = { "24% increased Righteous Fire Area of Effect" }, } }, + ["EnchantmentRighteousFireSpellDamage1"] = { affix = "Enchantment Righteous Fire Spell Damage 1", "Righteous Fire grants 20% increased Spell Damage", statOrder = { 4113 }, level = 66, group = "EnchantmentRighteousFireSpellDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3316822388] = { "Righteous Fire grants 20% increased Spell Damage" }, } }, + ["EnchantmentRighteousFireSpellDamage2"] = { affix = "Enchantment Righteous Fire Spell Damage 2", "Righteous Fire grants 30% increased Spell Damage", statOrder = { 4113 }, level = 75, group = "EnchantmentRighteousFireSpellDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3316822388] = { "Righteous Fire grants 30% increased Spell Damage" }, } }, + ["EnchantmentRiposteCooldownSpeed1"] = { affix = "Enchantment Riposte Cooldown Speed 1", "Riposte has 20% increased Cooldown Recovery Rate", statOrder = { 3885 }, level = 66, group = "EnchantmentRiposteCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2287986752] = { "Riposte has 20% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentRiposteCooldownSpeed2"] = { affix = "Enchantment Riposte Cooldown Speed 2", "Riposte has 30% increased Cooldown Recovery Rate", statOrder = { 3885 }, level = 75, group = "EnchantmentRiposteCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2287986752] = { "Riposte has 30% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentScourgeArrowChanceToPoison1"] = { affix = "Enchantment Scourge Arrow Chance To Poison 1", "Scourge Arrow has 6% chance to Poison per Stage", statOrder = { 10535 }, level = 66, group = "EnchantmentScourgeArrowChanceToPoison", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [2257652056] = { "Scourge Arrow has 6% chance to Poison per Stage" }, } }, + ["EnchantmentScourgeArrowChanceToPoison2"] = { affix = "Enchantment Scourge Arrow Chance To Poison 2", "Scourge Arrow has 8% chance to Poison per Stage", statOrder = { 10535 }, level = 75, group = "EnchantmentScourgeArrowChanceToPoison", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [2257652056] = { "Scourge Arrow has 8% chance to Poison per Stage" }, } }, + ["EnchantmentScourgeArrowAdditionalSpore1"] = { affix = "Enchantment Scourge Arrow Additional Spore 1", "Scourge Arrow creates +1 Spore Pod", statOrder = { 10534 }, level = 75, group = "EnchantmentScourgeArrowAdditionalSpore", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1044970549] = { "Scourge Arrow creates +1 Spore Pod" }, } }, + ["EnchantmentSearingBondTotemPlacementSpeed1"] = { affix = "Enchantment Searing Bond Totem Placement Speed 1", "40% increased Searing Bond Totem Placement Speed", statOrder = { 3974 }, level = 66, group = "EnchantmentSearingBondTotemPlacementSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "speed" }, tradeHashes = { [708179348] = { "40% increased Searing Bond Totem Placement Speed" }, } }, + ["EnchantmentSearingBondTotemPlacementSpeed2_"] = { affix = "Enchantment Searing Bond Totem Placement Speed 2", "60% increased Searing Bond Totem Placement Speed", statOrder = { 3974 }, level = 75, group = "EnchantmentSearingBondTotemPlacementSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "speed" }, tradeHashes = { [708179348] = { "60% increased Searing Bond Totem Placement Speed" }, } }, + ["EnchantmentSearingBondTotemElementalResistances1"] = { affix = "Enchantment Searing Bond Totem Elemental Resistances 1", "24% increased Searing Bond Totem Elemental Resistances", statOrder = { 4119 }, level = 66, group = "EnchantmentSearingBondTotemElementalResistances", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2519689029] = { "24% increased Searing Bond Totem Elemental Resistances" }, } }, + ["EnchantmentSearingBondTotemElementalResistances2"] = { affix = "Enchantment Searing Bond Totem Elemental Resistances 2", "36% increased Searing Bond Totem Elemental Resistances", statOrder = { 4119 }, level = 75, group = "EnchantmentSearingBondTotemElementalResistances", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2519689029] = { "36% increased Searing Bond Totem Elemental Resistances" }, } }, + ["EnchantmentSeismicCryExertedDamage1___"] = { affix = "Enchantment Seismic Cry Exerted Attack Damage 1", "Attacks Exerted by Seismic Cry deal 35% increased Damage", statOrder = { 9968 }, level = 66, group = "EnchantmentSeismicCryExertedDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal 35% increased Damage" }, } }, + ["EnchantmentSeismicCryExertedDamage2__"] = { affix = "Enchantment Seismic Cry Exerted Attack Damage 2", "Attacks Exerted by Seismic Cry deal 50% increased Damage", statOrder = { 9968 }, level = 75, group = "EnchantmentSeismicCryExertedDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal 50% increased Damage" }, } }, + ["EnchantmentSeismicCryMinimumPower1"] = { affix = "Enchantment Seismic Cry Minimum Power 1", "Seismic Cry has a minimum of 10 Power", statOrder = { 9969 }, level = 75, group = "EnchantmentSeismicCryMinimumPower", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [355086768] = { "Seismic Cry has a minimum of 10 Power" }, } }, + ["EnchantmentShieldChargeAttackSpeed1"] = { affix = "Enchantment Shield Charge Attack Speed 1", "10% increased Shield Charge Attack Speed", statOrder = { 3859 }, level = 66, group = "EnchantmentShieldChargeAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [648343221] = { "10% increased Shield Charge Attack Speed" }, } }, + ["EnchantmentShieldChargeAttackSpeed2_"] = { affix = "Enchantment Shield Charge Attack Speed 2", "15% increased Shield Charge Attack Speed", statOrder = { 3859 }, level = 75, group = "EnchantmentShieldChargeAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [648343221] = { "15% increased Shield Charge Attack Speed" }, } }, + ["EnchantmentShieldChargeDamagePerTargetHit1"] = { affix = "", "6% increased Shield Charge Damage per Enemy Hit", statOrder = { 4089 }, level = 1, group = "EnchantmentShieldChargeDamagePerTargetHit", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3208939528] = { "6% increased Shield Charge Damage per Enemy Hit" }, } }, + ["EnchantmentShieldChargeDamagePerTargetHit2"] = { affix = "", "9% increased Shield Charge Damage per Enemy Hit", statOrder = { 4089 }, level = 1, group = "EnchantmentShieldChargeDamagePerTargetHit", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3208939528] = { "9% increased Shield Charge Damage per Enemy Hit" }, } }, + ["EnchantmentShockNovaLargerRingDamage1"] = { affix = "Enchantment Shock Nova Larger Ring Damage 1", "Shock Nova ring deals 40% increased Damage", statOrder = { 3990 }, level = 66, group = "EnchantmentShockNovaLargerRingDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3652051346] = { "Shock Nova ring deals 40% increased Damage" }, } }, + ["EnchantmentShockNovaLargerRingDamage2"] = { affix = "Enchantment Shock Nova Larger Ring Damage 2", "Shock Nova ring deals 60% increased Damage", statOrder = { 3990 }, level = 75, group = "EnchantmentShockNovaLargerRingDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3652051346] = { "Shock Nova ring deals 60% increased Damage" }, } }, + ["EnchantmentShockNovaRadius1"] = { affix = "Enchantment Shock Nova Area Of Effect 1", "16% increased Shock Nova Area of Effect", statOrder = { 3835 }, level = 66, group = "EnchantmentShockNovaRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [565901339] = { "16% increased Shock Nova Area of Effect" }, } }, + ["EnchantmentShockNovaRadius2_"] = { affix = "Enchantment Shock Nova Area Of Effect 2", "24% increased Shock Nova Area of Effect", statOrder = { 3835 }, level = 75, group = "EnchantmentShockNovaRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [565901339] = { "24% increased Shock Nova Area of Effect" }, } }, + ["EnchantmentSigilOfPowerManaUpgrade1"] = { affix = "Enchantment Sigil of Power Upgrade Cost 1", "Sigil of Power requires 10% reduced Mana Spent to gain a Stage", statOrder = { 5783 }, level = 66, group = "EnchantmentSigilOfPowerManaUpgrade", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1582465837] = { "Sigil of Power requires 10% reduced Mana Spent to gain a Stage" }, } }, + ["EnchantmentSigilOfPowerManaUpgrade2_"] = { affix = "Enchantment Sigil of Power Upgrade Cost 2", "Sigil of Power requires 20% reduced Mana Spent to gain a Stage", statOrder = { 5783 }, level = 75, group = "EnchantmentSigilOfPowerManaUpgrade", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1582465837] = { "Sigil of Power requires 20% reduced Mana Spent to gain a Stage" }, } }, + ["EnchantmentSigilOfPowerCriticalStrikeChance1"] = { affix = "Enchantment Sigil of Power Critical Strike Chance 1", "Sigil of Power's Buff also grants 20% increased Critical Strike Chance per Stage", statOrder = { 5781 }, level = 66, group = "EnchantmentSigilOfPowerCriticalStrikeChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "critical" }, tradeHashes = { [479197076] = { "Sigil of Power's Buff also grants 20% increased Critical Strike Chance per Stage" }, } }, + ["EnchantmentSigilOfPowerCriticalStrikeChance2"] = { affix = "Enchantment Sigil of Power Critical Strike Chance 2", "Sigil of Power's Buff also grants 30% increased Critical Strike Chance per Stage", statOrder = { 5781 }, level = 75, group = "EnchantmentSigilOfPowerCriticalStrikeChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "critical" }, tradeHashes = { [479197076] = { "Sigil of Power's Buff also grants 30% increased Critical Strike Chance per Stage" }, } }, + ["EnchantmentSmiteAdditionalTargetChance1__"] = { affix = "Enchantment Smite Additional Target Chance 1", "Smite has a 10% chance for lightning to strike another target", statOrder = { 10082 }, level = 66, group = "EnchantmentSmiteAdditionalTargetChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3946561324] = { "Smite has a 10% chance for lightning to strike another target" }, } }, + ["EnchantmentSmiteAdditionalTargetChance2_"] = { affix = "Enchantment Smite Additional Target Chance 2", "Smite has a 15% chance for lightning to strike another target", statOrder = { 10082 }, level = 75, group = "EnchantmentSmiteAdditionalTargetChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3946561324] = { "Smite has a 15% chance for lightning to strike another target" }, } }, + ["EnchantmentSmiteAuraEffect1__"] = { affix = "Enchantment Smite Aura Effect 1", "Smite has 20% increased Aura Effect", statOrder = { 10081 }, level = 66, group = "EnchantmentSmiteAuraEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "aura" }, tradeHashes = { [2294732229] = { "Smite has 20% increased Aura Effect" }, } }, + ["EnchantmentSmiteAuraEffect2"] = { affix = "Enchantment Smite Aura Effect 2", "Smite has 30% increased Aura Effect", statOrder = { 10081 }, level = 75, group = "EnchantmentSmiteAuraEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "aura" }, tradeHashes = { [2294732229] = { "Smite has 30% increased Aura Effect" }, } }, + ["EnchantmentSnipeMaxStacks"] = { affix = "Enchantment Snipe Maximum Stacks", "+1 to maximum Snipe Stages", statOrder = { 10089 }, level = 75, group = "EnchantmentSnipeMaxStacks", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1239233415] = { "+1 to maximum Snipe Stages" }, } }, + ["EnchantmentSnipeAttackSpeed1"] = { affix = "Enchantment Snipe Attack Speed 1", "10% increased Attack Speed with Snipe", statOrder = { 10088 }, level = 66, group = "EnchantmentSnipeAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2513745555] = { "10% increased Attack Speed with Snipe" }, } }, + ["EnchantmentSnipeAttackSpeed2"] = { affix = "Enchantment Snipe Attack Speed 2", "15% increased Attack Speed with Snipe", statOrder = { 10088 }, level = 75, group = "EnchantmentSnipeAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2513745555] = { "15% increased Attack Speed with Snipe" }, } }, + ["EnchantmentSnipeStunAvoidance1"] = { affix = "Enchantment Snipe Stun Avoidance 1", "35% chance to Avoid being Stunned while Channelling Snipe", statOrder = { 4954 }, level = 66, group = "EnchantmentSnipeStunAvoidance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3024408350] = { "35% chance to Avoid being Stunned while Channelling Snipe" }, } }, + ["EnchantmentSnipeStunAvoidance2"] = { affix = "Enchantment Snipe Stun Avoidance 2", "50% chance to Avoid being Stunned while Channelling Snipe", statOrder = { 4954 }, level = 75, group = "EnchantmentSnipeStunAvoidance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3024408350] = { "50% chance to Avoid being Stunned while Channelling Snipe" }, } }, + ["EnchantmentSpectralHelixProjectileSpeed1"] = { affix = "Enchantment Spectral Helix Projectile Speed 1", "20% increased Spectral Helix Projectile Speed", statOrder = { 10103 }, level = 66, group = "EnchantmentSpectralHelixProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1952647315] = { "20% increased Spectral Helix Projectile Speed" }, } }, + ["EnchantmentSpectralHelixProjectileSpeed2"] = { affix = "Enchantment Spectral Helix Projectile Speed 2", "30% increased Spectral Helix Projectile Speed", statOrder = { 10103 }, level = 75, group = "EnchantmentSpectralHelixProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1952647315] = { "30% increased Spectral Helix Projectile Speed" }, } }, + ["EnchantmentSpectralHelixExtraRotation"] = { affix = "Enchantment Spectral Helix Extra Rotation", "Spectral Helix Projectile spirals through +1 rotations", statOrder = { 10104 }, level = 75, group = "EnchantmentSpectralHelixExtraRotation", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [4175166318] = { "Spectral Helix Projectile spirals through +1 rotations" }, } }, + ["EnchantmentSoulrendAppliesHinderMovementSpeed1"] = { affix = "Enchantment Soulrend Applies Hinder Movement Speed 1", "Soulrend also Hinders Enemies when applying its Debuff, with 25% reduced Movement Speed", statOrder = { 10095 }, level = 66, group = "EnchantmentSoulrendAppliesHinderMovementSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [303359279] = { "Soulrend also Hinders Enemies when applying its Debuff, with 25% reduced Movement Speed" }, } }, + ["EnchantmentSoulrendAppliesHinderMovementSpeed2_"] = { affix = "Enchantment Soulrend Applies Hinder Movement Speed 2", "Soulrend also Hinders Enemies when applying its Debuff, with 40% reduced Movement Speed", statOrder = { 10095 }, level = 75, group = "EnchantmentSoulrendAppliesHinderMovementSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [303359279] = { "Soulrend also Hinders Enemies when applying its Debuff, with 40% reduced Movement Speed" }, } }, + ["EnchantmentSoulrendNumberOfAdditionalProjectiles1"] = { affix = "Enchantment Soulrend Number Of Additional Projectiles 1", "Soulrend fires an additional Projectile", statOrder = { 10097 }, level = 75, group = "EnchantmentSoulrendNumberOfAdditionalProjectiles", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3371533847] = { "Soulrend fires an additional Projectile" }, } }, + ["StormBrandAdditionalChainChance1"] = { affix = "Storm Brand Additional Chain Chance 1", "Storm Brand has a 12% chance to Chain an additional time", statOrder = { 10242 }, level = 66, group = "StormBrandAdditionalChainChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1510381560] = { "Storm Brand has a 12% chance to Chain an additional time" }, } }, + ["StormBrandAdditionalChainChance2"] = { affix = "Storm Brand Additional Chain Chance 2", "Storm Brand has a 18% chance to Chain an additional time", statOrder = { 10242 }, level = 75, group = "StormBrandAdditionalChainChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1510381560] = { "Storm Brand has a 18% chance to Chain an additional time" }, } }, + ["StormBrandAttachedTargetLightningPenetration1_"] = { affix = "Storm Brand Attached Target Lightning Penetration 1", "Storm Brand Damage Penetrates 8% of Branded Enemy's Lightning Resistance", statOrder = { 10243 }, level = 66, group = "StormBrandAttachedTargetLightningPenetration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [3318254108] = { "Storm Brand Damage Penetrates 8% of Branded Enemy's Lightning Resistance" }, } }, + ["StormBrandAttachedTargetLightningPenetration2"] = { affix = "Storm Brand Attached Target Lightning Penetration 2", "Storm Brand Damage Penetrates 12% of Branded Enemy's Lightning Resistance", statOrder = { 10243 }, level = 75, group = "StormBrandAttachedTargetLightningPenetration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [3318254108] = { "Storm Brand Damage Penetrates 12% of Branded Enemy's Lightning Resistance" }, } }, + ["EnchantmentStormBurstAvoidStunWhileCasting1"] = { affix = "", "30% chance to Ignore Stuns while Casting Storm Burst", statOrder = { 10248 }, level = 66, group = "EnchantmentStormBurstAvoidInterruptionWhileCasting", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster" }, tradeHashes = { [884220218] = { "30% chance to Ignore Stuns while Casting Storm Burst" }, } }, + ["EnchantmentStormBurstAvoidStunWhileCasting2"] = { affix = "", "45% chance to Ignore Stuns while Casting Storm Burst", statOrder = { 10248 }, level = 75, group = "EnchantmentStormBurstAvoidInterruptionWhileCasting", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster" }, tradeHashes = { [884220218] = { "45% chance to Ignore Stuns while Casting Storm Burst" }, } }, + ["EnchantmentStormBurstRadius1"] = { affix = "Enchantment Storm Burst Area Of Effect 1", "16% increased Storm Burst Area of Effect", statOrder = { 10247 }, level = 66, group = "EnchantmentStormBurstRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3961497709] = { "16% increased Storm Burst Area of Effect" }, } }, + ["EnchantmentStormBurstRadius2"] = { affix = "Enchantment Storm Burst Area Of Effect 2", "24% increased Storm Burst Area of Effect", statOrder = { 10247 }, level = 75, group = "EnchantmentStormBurstRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3961497709] = { "24% increased Storm Burst Area of Effect" }, } }, + ["EnchantmentStormBurstAdditionalProjectile1"] = { affix = "", "Storm Burst has a 15% chance to create an additional Orb", statOrder = { 10245 }, level = 75, group = "EnchantmentStormBurstAdditionalProjectile", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster" }, tradeHashes = { [339673147] = { "Storm Burst has a 15% chance to create an additional Orb" }, } }, + ["EnchantmentStormBurstAdditionalObjectChance1"] = { affix = "Enchantment Storm Burst Additional Object Chance 1", "Storm Burst has a 10% chance to create an additional Orb", statOrder = { 10246 }, level = 66, group = "EnchantmentStormBurstAdditionalObjectChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1898356067] = { "Storm Burst has a 10% chance to create an additional Orb" }, } }, + ["EnchantmentStormBurstAdditionalObjectChance2"] = { affix = "Enchantment Storm Burst Additional Object Chance 2", "Storm Burst has a 15% chance to create an additional Orb", statOrder = { 10246 }, level = 75, group = "EnchantmentStormBurstAdditionalObjectChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1898356067] = { "Storm Burst has a 15% chance to create an additional Orb" }, } }, + ["EnchantmentSunderAttackSpeed1"] = { affix = "Enchantment Sunder Attack Speed 1", "Sunder has 10% increased Attack Speed", statOrder = { 3865 }, level = 66, group = "EnchantmentSunderAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1999307054] = { "Sunder has 10% increased Attack Speed" }, } }, + ["EnchantmentSunderAttackSpeed2"] = { affix = "Enchantment Sunder Attack Speed 2", "Sunder has 15% increased Attack Speed", statOrder = { 3865 }, level = 75, group = "EnchantmentSunderAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1999307054] = { "Sunder has 15% increased Attack Speed" }, } }, + ["EnchantmentSunderRadius1"] = { affix = "Enchantment Sunder Radius 1", "Sunder has 16% increased Area of Effect", statOrder = { 3848 }, level = 66, group = "EnchantmentSunderRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3316767657] = { "Sunder has 16% increased Area of Effect" }, } }, + ["EnchantmentSunderRadius2"] = { affix = "Enchantment Sunder Radius 2", "Sunder has 24% increased Area of Effect", statOrder = { 3848 }, level = 75, group = "EnchantmentSunderRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3316767657] = { "Sunder has 24% increased Area of Effect" }, } }, + ["EnchantmentSunderWaveSpeed1_"] = { affix = "Enchantment Sunder Wave Speed 1", "Sunder has 15% reduced delay between Areas in the Wave", statOrder = { 3849 }, level = 66, group = "EnchantmentSunderWaveSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [40032620] = { "Sunder has 15% reduced delay between Areas in the Wave" }, } }, + ["EnchantmentSunderWaveSpeed2"] = { affix = "Enchantment Sunder Wave Speed 2", "Sunder has 20% reduced delay between Areas in the Wave", statOrder = { 3849 }, level = 75, group = "EnchantmentSunderWaveSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [40032620] = { "Sunder has 20% reduced delay between Areas in the Wave" }, } }, + ["EnchantmentShatteringSteelAdditionalProjectile1"] = { affix = "Enchantment Shattering Steel Additional Projectile 1", "Shattering Steel fires an additional Projectile", statOrder = { 9996 }, level = 75, group = "EnchantmentShatteringSteelAdditionalProjectile", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2833259811] = { "Shattering Steel fires an additional Projectile" }, } }, + ["EnchantmentShatteringSteelFortifyOnHitCloseRange1"] = { affix = "Enchantment Shattering Steel Fortify On Hit Close Range 1", "Hits at Close Range with Shattering Steel Fortify", statOrder = { 9995 }, level = 75, group = "EnchantmentShatteringSteelFortifyOnHitCloseRange", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [611022108] = { "Hits at Close Range with Shattering Steel Fortify" }, } }, + ["EnchantmentShatteringSteelChanceToNotConsumeAmmo1__"] = { affix = "Enchantment Shattering Steel Chance to Not Consume Shards 1", "Shattering Steel has 20% chance to not consume Steel Shards", statOrder = { 9997 }, level = 66, group = "EnchantmentShatteringSteelChanceToNotConsumeAmmo", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [4072657110] = { "Shattering Steel has 20% chance to not consume Steel Shards" }, } }, + ["EnchantmentShatteringSteelChanceToNotConsumeAmmo2"] = { affix = "Enchantment Shattering Steel Chance to Not Consume Shards 2", "Shattering Steel has 30% chance to not consume Steel Shards", statOrder = { 9997 }, level = 75, group = "EnchantmentShatteringSteelChanceToNotConsumeAmmo", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [4072657110] = { "Shattering Steel has 30% chance to not consume Steel Shards" }, } }, + ["EnchantmentShockwaveTotemCastSpeed1_"] = { affix = "Enchantment Shockwave Totem Cast Speed 1", "10% increased Shockwave Totem Cast Speed", statOrder = { 4002 }, level = 66, group = "EnchantmentShockwaveTotemCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2259906777] = { "10% increased Shockwave Totem Cast Speed" }, } }, + ["EnchantmentShockwaveTotemCastSpeed2"] = { affix = "Enchantment Shockwave Totem Cast Speed 2", "15% increased Shockwave Totem Cast Speed", statOrder = { 4002 }, level = 75, group = "EnchantmentShockwaveTotemCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2259906777] = { "15% increased Shockwave Totem Cast Speed" }, } }, + ["EnchantmentShockwaveTotemRadius1"] = { affix = "Enchantment Shockwave Totem Radius 1", "16% increased Shockwave Totem Area of Effect", statOrder = { 3850 }, level = 66, group = "EnchantmentShockwaveTotemRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1153159301] = { "16% increased Shockwave Totem Area of Effect" }, } }, + ["EnchantmentShockwaveTotemRadius2"] = { affix = "Enchantment Shockwave Totem Radius 2", "24% increased Shockwave Totem Area of Effect", statOrder = { 3850 }, level = 75, group = "EnchantmentShockwaveTotemRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1153159301] = { "24% increased Shockwave Totem Area of Effect" }, } }, + ["EnchantmentShrapnelTrapRadius1"] = { affix = "Enchantment Shrapnel Trap Radius 1", "Explosive Trap has 16% increased Area of Effect", statOrder = { 10029 }, level = 66, group = "EnchantmentShrapnelTrapRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1694915226] = { "Explosive Trap has 16% increased Area of Effect" }, } }, + ["EnchantmentShrapnelTrapRadius2_"] = { affix = "Enchantment Shrapnel Trap Radius 2", "Explosive Trap has 24% increased Area of Effect", statOrder = { 10029 }, level = 75, group = "EnchantmentShrapnelTrapRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1694915226] = { "Explosive Trap has 24% increased Area of Effect" }, } }, + ["EnchantmentShrapnelTrapSecondaryExplosions1"] = { affix = "Enchantment Shrapnel Trap Secondary Explosions 1", "Explosive Trap causes an additional smaller explosion", statOrder = { 10031 }, level = 66, group = "EnchantmentShrapnelTrapSecondaryExplosions", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3078026860] = { "Explosive Trap causes an additional smaller explosion" }, } }, + ["EnchantmentShrapnelTrapSecondaryExplosions2"] = { affix = "Enchantment Shrapnel Trap Secondary Explosions 2", "Explosive Trap causes 2 additional smaller explosions", statOrder = { 10031 }, level = 75, group = "EnchantmentShrapnelTrapSecondaryExplosions", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3078026860] = { "Explosive Trap causes 2 additional smaller explosions" }, } }, + ["EnchantmentShrapnelShotPhysicalDamagePercentToAddAsLightningDamage1_"] = { affix = "Enchantment Shrapnel Shot Physical Damage Percent To Add As Lightning Damage 1", "10% of Galvanic Arrow Physical Damage gained as extra Lightning Damage", statOrder = { 4027 }, level = 66, group = "EnchantmentShrapnelShotPhysicalDamagePercentToAddAsLightningDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, tradeHashes = { [1943147282] = { "10% of Galvanic Arrow Physical Damage gained as extra Lightning Damage" }, } }, + ["EnchantmentShrapnelShotPhysicalDamagePercentToAddAsLightningDamage2"] = { affix = "Enchantment Shrapnel Shot Physical Damage Percent To Add As Lightning Damage 2", "15% of Galvanic Arrow Physical Damage gained as extra Lightning Damage", statOrder = { 4027 }, level = 75, group = "EnchantmentShrapnelShotPhysicalDamagePercentToAddAsLightningDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, tradeHashes = { [1943147282] = { "15% of Galvanic Arrow Physical Damage gained as extra Lightning Damage" }, } }, + ["EnchantmentShrapnelShotRadius1"] = { affix = "Enchantment Shrapnel Shot Radius 1", "16% increased Galvanic Arrow Area of Effect", statOrder = { 3837 }, level = 66, group = "EnchantmentShrapnelShotRadius", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [354556858] = { "16% increased Galvanic Arrow Area of Effect" }, } }, + ["EnchantmentShrapnelShotRadius2"] = { affix = "Enchantment Shrapnel Shot Radius 2", "24% increased Galvanic Arrow Area of Effect", statOrder = { 3837 }, level = 75, group = "EnchantmentShrapnelShotRadius", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [354556858] = { "24% increased Galvanic Arrow Area of Effect" }, } }, + ["EnchantmentSplittingSteelBaseSkillAreaOfEffect1"] = { affix = "Enchantment Splitting Steel Area 1", "Splitting Steel has 16% increased Area of Effect", statOrder = { 10211 }, level = 66, group = "EnchantmentSplittingSteelBaseSkillAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1977935782] = { "Splitting Steel has 16% increased Area of Effect" }, } }, + ["EnchantmentSplittingSteelBaseSkillAreaOfEffect2"] = { affix = "Enchantment Splitting Steel Area 2", "Splitting Steel has 24% increased Area of Effect", statOrder = { 10211 }, level = 75, group = "EnchantmentSplittingSteelBaseSkillAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1977935782] = { "Splitting Steel has 24% increased Area of Effect" }, } }, + ["EnchantmentSplittingSteelChanceToNotConsumeAmmo1_"] = { affix = "Enchantment Splitting Steel Chance to Not Consume Shard 1", "Splitting Steel has 20% chance to not consume Steel Shards", statOrder = { 7242 }, level = 66, group = "EnchantmentSplittingSteelChanceToNotConsumeAmmo", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3367825241] = { "Splitting Steel has 20% chance to not consume Steel Shards" }, } }, + ["EnchantmentSplittingSteelChanceToNotConsumeAmmo2"] = { affix = "Enchantment Splitting Steel Chance to Not Consume Shard 2", "Splitting Steel has 30% chance to not consume Steel Shards", statOrder = { 7242 }, level = 75, group = "EnchantmentSplittingSteelChanceToNotConsumeAmmo", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3367825241] = { "Splitting Steel has 30% chance to not consume Steel Shards" }, } }, + ["EnchantmentGalvanicArrowProjectileSpeed1"] = { affix = "Enchantment Galvanic Arrow Projectile Speed 1", "Galvanic Arrow has 20% increased Projectile Speed", statOrder = { 6853 }, level = 66, group = "EnchantmentGalvanicArrowProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1698558866] = { "Galvanic Arrow has 20% increased Projectile Speed" }, } }, + ["EnchantmentGalvanicArrowProjectileSpeed2__"] = { affix = "Enchantment Galvanic Arrow Projectile Speed 2", "Galvanic Arrow has 30% increased Projectile Speed", statOrder = { 6853 }, level = 75, group = "EnchantmentGalvanicArrowProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1698558866] = { "Galvanic Arrow has 30% increased Projectile Speed" }, } }, + ["EnchantmentSiegeBallistaAttackSpeed1"] = { affix = "Enchantment Siege Ballista Attack Speed 1", "Siege Ballista has 10% increased Attack Speed", statOrder = { 3864 }, level = 66, group = "EnchantmentSiegeBallistaAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [444858149] = { "Siege Ballista has 10% increased Attack Speed" }, } }, + ["EnchantmentSiegeBallistaAttackSpeed2"] = { affix = "Enchantment Siege Ballista Attack Speed 2", "Siege Ballista has 15% increased Attack Speed", statOrder = { 3864 }, level = 75, group = "EnchantmentSiegeBallistaAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [444858149] = { "Siege Ballista has 15% increased Attack Speed" }, } }, + ["EnchantmentSiegeBallistaTotemPlacementSpeed1"] = { affix = "Enchantment Siege Ballista Totem Placement Speed 1", "Siege Ballista has 30% increased Totem Placement Speed", statOrder = { 4004 }, level = 66, group = "EnchantmentSiegeBallistaTotemPlacementSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2896357741] = { "Siege Ballista has 30% increased Totem Placement Speed" }, } }, + ["EnchantmentSiegeBallistaTotemPlacementSpeed2"] = { affix = "Enchantment Siege Ballista Totem Placement Speed 2", "Siege Ballista has 45% increased Totem Placement Speed", statOrder = { 4004 }, level = 75, group = "EnchantmentSiegeBallistaTotemPlacementSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2896357741] = { "Siege Ballista has 45% increased Totem Placement Speed" }, } }, + ["EnchantmentEssenceDrainDuration1"] = { affix = "Enchantment Essence Drain Duration 1", "20% increased Essence Drain Duration", statOrder = { 3923 }, level = 66, group = "EnchantmentSiphonDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3698833303] = { "20% increased Essence Drain Duration" }, } }, + ["EnchantmentEssenceDrainDuration2"] = { affix = "Enchantment Essence Drain Duration 2", "30% increased Essence Drain Duration", statOrder = { 3923 }, level = 75, group = "EnchantmentSiphonDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3698833303] = { "30% increased Essence Drain Duration" }, } }, + ["EnchantmentSmokeMineDuration1"] = { affix = "Enchantment Smoke Mine Duration 1", "20% increased Smoke Mine Duration", statOrder = { 3904 }, level = 66, group = "EnchantmentSmokeMineDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3719728947] = { "20% increased Smoke Mine Duration" }, } }, + ["EnchantmentSmokeMineDuration2"] = { affix = "Enchantment Smoke Mine Duration 2", "30% increased Smoke Mine Duration", statOrder = { 3904 }, level = 75, group = "EnchantmentSmokeMineDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3719728947] = { "30% increased Smoke Mine Duration" }, } }, + ["EnchantmentSmokeMineMovementSpeed1"] = { affix = "Enchantment Smoke Mine Movement Speed 1", "Smoke Mine grants additional 20% increased Movement Speed", statOrder = { 4109 }, level = 66, group = "EnchantmentSmokeMineMovementSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "speed" }, tradeHashes = { [3564777492] = { "Smoke Mine grants additional 20% increased Movement Speed" }, } }, + ["EnchantmentSmokeMineMovementSpeed2_"] = { affix = "Enchantment Smoke Mine Movement Speed 2", "Smoke Mine grants additional 30% increased Movement Speed", statOrder = { 4109 }, level = 75, group = "EnchantmentSmokeMineMovementSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "speed" }, tradeHashes = { [3564777492] = { "Smoke Mine grants additional 30% increased Movement Speed" }, } }, + ["EnchantmentSoulLinkDuration1"] = { affix = "Enchantment Soul Link Duration 1", "20% increased Soul Link Duration", statOrder = { 10093 }, level = 66, group = "EnchantmentSoulLinkDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3975033889] = { "20% increased Soul Link Duration" }, } }, + ["EnchantmentSoulLinkDuration2___"] = { affix = "Enchantment Soul Link Duration 2", "30% increased Soul Link Duration", statOrder = { 10093 }, level = 75, group = "EnchantmentSoulLinkDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3975033889] = { "30% increased Soul Link Duration" }, } }, + ["EnchantmentSparkNumOfAdditionalProjectiles1"] = { affix = "Enchantment Spark Num Of Additional Projectiles 1", "Spark fires 2 additional Projectiles", statOrder = { 3947 }, level = 66, group = "EnchantmentSparkNumOfAdditionalProjectiles", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [186513618] = { "Spark fires 2 additional Projectiles" }, } }, + ["EnchantmentSparkNumOfAdditionalProjectiles2"] = { affix = "Enchantment Spark Num Of Additional Projectiles 2", "Spark fires 3 additional Projectiles", statOrder = { 3947 }, level = 75, group = "EnchantmentSparkNumOfAdditionalProjectiles", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [186513618] = { "Spark fires 3 additional Projectiles" }, } }, + ["EnchantmentSparkProjectilesNova1"] = { affix = "Enchantment Spark Projectile Fire in Circle 1", "Spark fires Projectiles in a circle", statOrder = { 10099 }, level = 75, group = "EnchantmentSparkProjectilesNova", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3803013948] = { "Spark fires Projectiles in a circle" }, } }, + ["EnchantmentSparkProjectileSpeed1"] = { affix = "Enchantment Spark Projectile Speed 1", "20% increased Spark Projectile Speed", statOrder = { 3893 }, level = 66, group = "EnchantmentSparkProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [103922739] = { "20% increased Spark Projectile Speed" }, } }, + ["EnchantmentSparkProjectileSpeed2"] = { affix = "Enchantment Spark Projectile Speed 2", "30% increased Spark Projectile Speed", statOrder = { 3893 }, level = 75, group = "EnchantmentSparkProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [103922739] = { "30% increased Spark Projectile Speed" }, } }, + ["EnchantmentSpectralShieldThrowProjectileSpeed1"] = { affix = "Enchantment Spectral Shield Throw Projectile Speed 1", "20% increased Spectral Shield Throw Projectile Speed", statOrder = { 10108 }, level = 66, group = "EnchantmentSpectralShieldThrowProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1561141582] = { "20% increased Spectral Shield Throw Projectile Speed" }, } }, + ["EnchantmentSpectralShieldThrowProjectileSpeed2"] = { affix = "Enchantment Spectral Shield Throw Projectile Speed 2", "30% increased Spectral Shield Throw Projectile Speed", statOrder = { 10108 }, level = 75, group = "EnchantmentSpectralShieldThrowProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1561141582] = { "30% increased Spectral Shield Throw Projectile Speed" }, } }, + ["EnchantmentSpectralShieldThrowNumOfAdditionalProjectiles1"] = { affix = "Enchantment Spectral Shield Throw Num Of Additional Projectiles 1", "Spectral Shield Throw fires 2 additional Shard Projectiles", statOrder = { 10107 }, level = 66, group = "EnchantmentSpectralShieldThrowNumOfAdditionalProjectiles", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3608981617] = { "Spectral Shield Throw fires 2 additional Shard Projectiles" }, } }, + ["EnchantmentSpectralShieldThrowNumOfAdditionalProjectiles2"] = { affix = "Enchantment Spectral Shield Throw Num Of Additional Projectiles 2", "Spectral Shield Throw fires 3 additional Shard Projectiles", statOrder = { 10107 }, level = 75, group = "EnchantmentSpectralShieldThrowNumOfAdditionalProjectiles", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3608981617] = { "Spectral Shield Throw fires 3 additional Shard Projectiles" }, } }, + ["EnchantmentSpectralThrowProjectileDeceleration1"] = { affix = "Enchantment Spectral Throw Projectile Deceleration 1", "20% reduced Spectral Throw Projectile Deceleration", statOrder = { 3964 }, level = 66, group = "EnchantmentSpectralThrowProjectileDeceleration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [444686294] = { "20% reduced Spectral Throw Projectile Deceleration" }, } }, + ["EnchantmentSpectralThrowProjectileDeceleration2"] = { affix = "Enchantment Spectral Throw Projectile Deceleration 2", "30% reduced Spectral Throw Projectile Deceleration", statOrder = { 3964 }, level = 75, group = "EnchantmentSpectralThrowProjectileDeceleration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [444686294] = { "30% reduced Spectral Throw Projectile Deceleration" }, } }, + ["EnchantmentSpectralThrowProjectileSpeed1___"] = { affix = "Enchantment Spectral Throw Projectile Speed 1", "20% increased Spectral Throw Projectile Speed", statOrder = { 3894 }, level = 66, group = "EnchantmentSpectralThrowProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1062615953] = { "20% increased Spectral Throw Projectile Speed" }, } }, + ["EnchantmentSpectralThrowProjectileSpeed2"] = { affix = "Enchantment Spectral Throw Projectile Speed 2", "30% increased Spectral Throw Projectile Speed", statOrder = { 3894 }, level = 75, group = "EnchantmentSpectralThrowProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1062615953] = { "30% increased Spectral Throw Projectile Speed" }, } }, + ["EnchantmentSpectreAttackAndCastSpeed1"] = { affix = "Enchantment Spectre Attack And Cast Speed 1", "Raised Spectres have 8% increased Attack and Cast Speed", statOrder = { 3869 }, level = 66, group = "EnchantmentSpectreAttackAndCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [4137556603] = { "Raised Spectres have 8% increased Attack and Cast Speed" }, } }, + ["EnchantmentSpectreAttackAndCastSpeed2"] = { affix = "Enchantment Spectre Attack And Cast Speed 2", "Raised Spectres have 12% increased Attack and Cast Speed", statOrder = { 3869 }, level = 75, group = "EnchantmentSpectreAttackAndCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [4137556603] = { "Raised Spectres have 12% increased Attack and Cast Speed" }, } }, + ["EnchantmentSpectreElementalResistances1"] = { affix = "Enchantment Spectre Elemental Resistances 1", "+24% to Raised Spectre Elemental Resistances", statOrder = { 3982 }, level = 66, group = "EnchantmentSpectreElementalResistances", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [27640220] = { "+24% to Raised Spectre Elemental Resistances" }, } }, + ["EnchantmentSpectreElementalResistances2"] = { affix = "Enchantment Spectre Elemental Resistances 2", "+36% to Raised Spectre Elemental Resistances", statOrder = { 3982 }, level = 75, group = "EnchantmentSpectreElementalResistances", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [27640220] = { "+36% to Raised Spectre Elemental Resistances" }, } }, + ["EnchantmentSplitArrowCriticalStrikeChance1"] = { affix = "Enchantment Split Arrow Critical Strike Chance 1", "60% increased Split Arrow Critical Strike Chance", statOrder = { 3938 }, level = 66, group = "EnchantmentSplitArrowCriticalStrikeChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1028884162] = { "60% increased Split Arrow Critical Strike Chance" }, } }, + ["EnchantmentSplitArrowCriticalStrikeChance2"] = { affix = "Enchantment Split Arrow Critical Strike Chance 2", "90% increased Split Arrow Critical Strike Chance", statOrder = { 3938 }, level = 75, group = "EnchantmentSplitArrowCriticalStrikeChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1028884162] = { "90% increased Split Arrow Critical Strike Chance" }, } }, + ["EnchantmentSplitArrowNumOfAdditionalProjectiles1"] = { affix = "Enchantment Split Arrow Num Of Additional Projectiles 1", "Split Arrow fires 2 additional Projectiles", statOrder = { 3948 }, level = 66, group = "EnchantmentSplitArrowNumOfAdditionalProjectiles", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2278715446] = { "Split Arrow fires 2 additional Projectiles" }, } }, + ["EnchantmentSplitArrowNumOfAdditionalProjectiles2"] = { affix = "Enchantment Split Arrow Num Of Additional Projectiles 2", "Split Arrow fires 3 additional Projectiles", statOrder = { 3948 }, level = 75, group = "EnchantmentSplitArrowNumOfAdditionalProjectiles", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2278715446] = { "Split Arrow fires 3 additional Projectiles" }, } }, + ["EnchantmentStaticStrikeDuration1"] = { affix = "Enchantment Static Strike Duration 1", "30% increased Static Strike Duration", statOrder = { 3930 }, level = 66, group = "EnchantmentStaticStrikeDuration", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack" }, tradeHashes = { [2906742892] = { "30% increased Static Strike Duration" }, } }, + ["EnchantmentStaticStrikeDuration2"] = { affix = "Enchantment Static Strike Duration 2", "45% increased Static Strike Duration", statOrder = { 3930 }, level = 75, group = "EnchantmentStaticStrikeDuration", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack" }, tradeHashes = { [2906742892] = { "45% increased Static Strike Duration" }, } }, + ["EnchantmentStaticStrikeRadius1_"] = { affix = "Enchantment Static Strike Area Of Effect 1", "16% increased Static Strike Area of Effect", statOrder = { 3818 }, level = 66, group = "EnchantmentStaticStrikeRadius", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack" }, tradeHashes = { [2685860927] = { "16% increased Static Strike Area of Effect" }, } }, + ["EnchantmentStaticStrikeRadius2"] = { affix = "Enchantment Static Strike Area Of Effect 2", "24% increased Static Strike Area of Effect", statOrder = { 3818 }, level = 75, group = "EnchantmentStaticStrikeRadius", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack" }, tradeHashes = { [2685860927] = { "24% increased Static Strike Area of Effect" }, } }, + ["EnchantmentStaticStrikeMaximumBeamTargets1"] = { affix = "Enchantment Static Strike Maximum Beam Targets 1", "Static Strike has +1 maximum Beam Target", statOrder = { 10224 }, level = 66, group = "EnchantmentStaticStrikeMaximumBeamTargets", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack" }, tradeHashes = { [2537202749] = { "Static Strike has +1 maximum Beam Target" }, } }, + ["EnchantmentStaticStrikeMaximumBeamTargets2"] = { affix = "Enchantment Static Strike Maximum Beam Targets 2", "Static Strike has +2 maximum Beam Targets", statOrder = { 10224 }, level = 75, group = "EnchantmentStaticStrikeMaximumBeamTargets", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "attack" }, tradeHashes = { [2537202749] = { "Static Strike has +2 maximum Beam Targets" }, } }, + ["EnchantmentStoneGolemElementalResistances1___"] = { affix = "Enchantment Stone Golem Elemental Resistances 1", "+24% to Stone Golem Elemental Resistances", statOrder = { 3984 }, level = 66, group = "EnchantmentStoneGolemElementalResistances", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1601558321] = { "+24% to Stone Golem Elemental Resistances" }, } }, + ["EnchantmentStoneGolemElementalResistances2"] = { affix = "Enchantment Stone Golem Elemental Resistances 2", "+36% to Stone Golem Elemental Resistances", statOrder = { 3984 }, level = 75, group = "EnchantmentStoneGolemElementalResistances", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1601558321] = { "+36% to Stone Golem Elemental Resistances" }, } }, + ["EnchantmentStoneGolemGrantedBuffEffect1"] = { affix = "Enchantment Stone Golem Granted Buff Effect 1", "100% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 66, group = "EnchantmentStoneGolemGrantedBuffEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [2284801675] = { "100% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["EnchantmentStoneGolemGrantedBuffEffect2"] = { affix = "Enchantment Stone Golem Granted Buff Effect 2", "150% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "EnchantmentStoneGolemGrantedBuffEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [2284801675] = { "150% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["EnchantmentStormCallDuration1"] = { affix = "Enchantment Storm Call Duration 1", "20% reduced Storm Call Duration", statOrder = { 3931 }, level = 66, group = "EnchantmentStormCallDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1843506018] = { "20% reduced Storm Call Duration" }, } }, + ["EnchantmentStormCallDuration2"] = { affix = "Enchantment Storm Call Duration 2", "30% reduced Storm Call Duration", statOrder = { 3931 }, level = 75, group = "EnchantmentStormCallDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1843506018] = { "30% reduced Storm Call Duration" }, } }, + ["EnchantmentStormCallRadius1"] = { affix = "Enchantment Storm Call Area Of Effect 1", "16% increased Storm Call Area of Effect", statOrder = { 3819 }, level = 66, group = "EnchantmentStormCallRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2070247068] = { "16% increased Storm Call Area of Effect" }, } }, + ["EnchantmentStormCallRadius2"] = { affix = "Enchantment Storm Call Area Of Effect 2", "24% increased Storm Call Area of Effect", statOrder = { 3819 }, level = 75, group = "EnchantmentStormCallRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2070247068] = { "24% increased Storm Call Area of Effect" }, } }, + ["EnchantmentStormCloudCriticalStrikeChance1"] = { affix = "Enchantment Orb of Storms Critical Strike Chance 1", "60% increased Orb of Storms Critical Strike Chance", statOrder = { 3943 }, level = 66, group = "EnchantmentStormCloudCriticalStrikeChance", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [168538372] = { "60% increased Orb of Storms Critical Strike Chance" }, } }, + ["EnchantmentStormCloudCriticalStrikeChance2"] = { affix = "Enchantment Orb of Storms Critical Strike Chance 2", "90% increased Orb of Storms Critical Strike Chance", statOrder = { 3943 }, level = 75, group = "EnchantmentStormCloudCriticalStrikeChance", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [168538372] = { "90% increased Orb of Storms Critical Strike Chance" }, } }, + ["EnchantmentStormCloudRadius1"] = { affix = "Enchantment Orb of Storms Area Of Effect 1", "16% increased Orb of Storms Area of Effect", statOrder = { 3846 }, level = 66, group = "EnchantmentStormCloudRadius", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [2875508213] = { "16% increased Orb of Storms Area of Effect" }, } }, + ["EnchantmentStormCloudRadius2"] = { affix = "Enchantment Orb of Storms Area Of Effect 2", "24% increased Orb of Storms Area of Effect", statOrder = { 3846 }, level = 75, group = "EnchantmentStormCloudRadius", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [2875508213] = { "24% increased Orb of Storms Area of Effect" }, } }, + ["EnchantmentSummonSkeletonsNumAdditionalWarriorSkeletons1"] = { affix = "", "20% chance to Summon an additional Skeleton with Summon Skeletons", statOrder = { 10300 }, level = 66, group = "EnchantmentSummonSkeletonsNumAdditionalWarriorSkeletons", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [634375806] = { "20% chance to Summon an additional Skeleton with Summon Skeletons" }, } }, + ["EnchantmentSummonSkeletonsNumAdditionalWarriorSkeletons2"] = { affix = "", "40% chance to Summon an additional Skeleton with Summon Skeletons", statOrder = { 10300 }, level = 75, group = "EnchantmentSummonSkeletonsNumAdditionalWarriorSkeletons", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [634375806] = { "40% chance to Summon an additional Skeleton with Summon Skeletons" }, } }, + ["EnchantmentSummonSkeletonsNumAdditionalWarriorSkeletons1Updated"] = { affix = "Enchantment Summon Skeletons Additional Warrior Skeletons 1", "20% chance to Summon an additional Skeleton with Summon Skeletons", statOrder = { 10301 }, level = 66, group = "EnchantmentSummonSkeletonsNumAdditionalWarriorSkeletonsUpdated", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [1040958896] = { "20% chance to Summon an additional Skeleton with Summon Skeletons" }, } }, + ["EnchantmentSummonSkeletonsNumAdditionalWarriorSkeletons2Updated"] = { affix = "Enchantment Summon Skeletons Additional Warrior Skeletons 2", "40% chance to Summon an additional Skeleton with Summon Skeletons", statOrder = { 10301 }, level = 75, group = "EnchantmentSummonSkeletonsNumAdditionalWarriorSkeletonsUpdated", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [1040958896] = { "40% chance to Summon an additional Skeleton with Summon Skeletons" }, } }, + ["EnchantmentSweepKnockbackChance1"] = { affix = "Enchantment Sweep Endurance Charge on Hit Chance 1", "Holy Sweep has a 20% chance to grant an Endurance Charge on Hit", statOrder = { 3820 }, level = 66, group = "EnchantmentSweepEnduranceChargeOnHit", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "attack" }, tradeHashes = { [609916976] = { "Holy Sweep has a 20% chance to grant an Endurance Charge on Hit" }, } }, + ["EnchantmentSweepKnockbackChance2"] = { affix = "Enchantment Sweep Endurance Charge on Hit Chance 2", "Holy Sweep has a 30% chance to grant an Endurance Charge on Hit", statOrder = { 3820 }, level = 75, group = "EnchantmentSweepEnduranceChargeOnHit", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "attack" }, tradeHashes = { [609916976] = { "Holy Sweep has a 30% chance to grant an Endurance Charge on Hit" }, } }, + ["EnchantmentSweepEnduranceChargeOnHit1__"] = { affix = "Enchantment Sweep Endurance Charge on Hit Chance 1", "Holy Sweep has a 20% chance to grant an Endurance Charge on Hit", statOrder = { 3820 }, level = 66, group = "EnchantmentSweepEnduranceChargeOnHit", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "endurance_charge", "attack" }, tradeHashes = { [609916976] = { "Holy Sweep has a 20% chance to grant an Endurance Charge on Hit" }, } }, + ["EnchantmentSweepEnduranceChargeOnHit2"] = { affix = "Enchantment Sweep Endurance Charge on Hit Chance 2", "Holy Sweep has a 30% chance to grant an Endurance Charge on Hit", statOrder = { 3820 }, level = 75, group = "EnchantmentSweepEnduranceChargeOnHit", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "endurance_charge", "attack" }, tradeHashes = { [609916976] = { "Holy Sweep has a 30% chance to grant an Endurance Charge on Hit" }, } }, + ["EnchantmentSweepRadius1_"] = { affix = "Enchantment Sweep Area Of Effect 1", "16% increased Holy Sweep Area of Effect", statOrder = { 3821 }, level = 66, group = "EnchantmentSweepRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [4202548383] = { "16% increased Holy Sweep Area of Effect" }, } }, + ["EnchantmentSweepRadius2"] = { affix = "Enchantment Sweep Area Of Effect 2", "24% increased Holy Sweep Area of Effect", statOrder = { 3821 }, level = 75, group = "EnchantmentSweepRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [4202548383] = { "24% increased Holy Sweep Area of Effect" }, } }, + ["EnchantmentTectonicSlamAreaOfEffect1"] = { affix = "Enchantment Tectonic Slam Area Of Effect 1", "Tectonic Slam has 16% increased Area of Effect", statOrder = { 10361 }, level = 66, group = "EnchantmentTectonicSlamAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [340193547] = { "Tectonic Slam has 16% increased Area of Effect" }, } }, + ["EnchantmentTectonicSlamAreaOfEffect2"] = { affix = "Enchantment Tectonic Slam Area Of Effect 2", "Tectonic Slam has 24% increased Area of Effect", statOrder = { 10361 }, level = 75, group = "EnchantmentTectonicSlamAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [340193547] = { "Tectonic Slam has 24% increased Area of Effect" }, } }, + ["EnchantmentTectonicSlamChanceToNotConsumeCharge1"] = { affix = "", "Tectonic Slam has +12% fissure branching chance", statOrder = { 10364 }, level = 66, group = "EnchantmentTectonicSlamSideCrackChancePer2", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [2462686988] = { "Tectonic Slam has +12% fissure branching chance" }, } }, + ["EnchantmentTectonicSlamChanceToNotConsumeCharge2"] = { affix = "", "Tectonic Slam has +20% fissure branching chance", statOrder = { 10364 }, level = 75, group = "EnchantmentTectonicSlamSideCrackChancePer2", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [2462686988] = { "Tectonic Slam has +20% fissure branching chance" }, } }, + ["EnchantmentTectonicSlamChanceToChargedSlam1"] = { affix = "Enchantment Tectonic Slam Chance For Side Crack 1", "Tectonic Slam has +12% fissure branching chance", statOrder = { 10365 }, level = 66, group = "EnchantmentTectonicSlamSideCrackChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1522229796] = { "Tectonic Slam has +12% fissure branching chance" }, } }, + ["EnchantmentTectonicSlamChanceToChargedSlam2"] = { affix = "Enchantment Tectonic Slam Chance For Side Crack 2", "Tectonic Slam has +20% fissure branching chance", statOrder = { 10365 }, level = 75, group = "EnchantmentTectonicSlamSideCrackChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1522229796] = { "Tectonic Slam has +20% fissure branching chance" }, } }, + ["EnchantmentTempestShieldNumOfAdditionalProjectilesInChain1"] = { affix = "Enchantment Tempest Shield Num Of Additional Projectiles In Chain 1", "Tempest Shield chains an additional 2 times", statOrder = { 4028 }, level = 66, group = "EnchantmentTempestShieldNumOfAdditionalProjectilesInChain", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3096183736] = { "Tempest Shield chains an additional 2 times" }, } }, + ["EnchantmentTempestShieldNumOfAdditionalProjectilesInChain2"] = { affix = "Enchantment Tempest Shield Num Of Additional Projectiles In Chain 2", "Tempest Shield chains an additional 3 times", statOrder = { 4028 }, level = 75, group = "EnchantmentTempestShieldNumOfAdditionalProjectilesInChain", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3096183736] = { "Tempest Shield chains an additional 3 times" }, } }, + ["EnchantmentTemporalChainsCurseEffect1"] = { affix = "Enchantment Temporal Chains Curse Effect 1", "10% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 66, group = "EnchantmentTemporalChainsCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "10% increased Temporal Chains Curse Effect" }, } }, + ["EnchantmentTemporalChainsCurseEffect2"] = { affix = "Enchantment Temporal Chains Curse Effect 2", "15% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "EnchantmentTemporalChainsCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "15% increased Temporal Chains Curse Effect" }, } }, + ["EnchantmentTemporalChainsDuration1"] = { affix = "Enchantment Temporal Chains Duration 1", "30% increased Temporal Chains Duration", statOrder = { 3909 }, level = 66, group = "EnchantmentTemporalChainsDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [888039248] = { "30% increased Temporal Chains Duration" }, } }, + ["EnchantmentTemporalChainsDuration2"] = { affix = "Enchantment Temporal Chains Duration 2", "45% increased Temporal Chains Duration", statOrder = { 3909 }, level = 75, group = "EnchantmentTemporalChainsDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [888039248] = { "45% increased Temporal Chains Duration" }, } }, + ["EnchantmentTemporalRiftBaseCooldownSpeed1__"] = { affix = "Enchantment Temporal Rift Cooldown 1", "Temporal Rift has 20% increased Cooldown Recovery Rate", statOrder = { 10368 }, level = 66, group = "EnchantmentTemporalRiftBaseCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3614009195] = { "Temporal Rift has 20% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentTemporalRiftBaseCooldownSpeed2"] = { affix = "Enchantment Temporal Rift Cooldown 2", "Temporal Rift has 30% increased Cooldown Recovery Rate", statOrder = { 10368 }, level = 75, group = "EnchantmentTemporalRiftBaseCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3614009195] = { "Temporal Rift has 30% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentTornadoRadius1"] = { affix = "Enchantment Tornado Area Of Effect 1", "16% increased Tornado Area of Effect", statOrder = { 10388 }, level = 66, group = "EnchantmentTornadoRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1866415366] = { "16% increased Tornado Area of Effect" }, } }, + ["EnchantmentTornadoRadius2_"] = { affix = "Enchantment Tornado Area Of Effect 2", "24% increased Tornado Area of Effect", statOrder = { 10388 }, level = 75, group = "EnchantmentTornadoRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1866415366] = { "24% increased Tornado Area of Effect" }, } }, + ["EnchantmentTornadoMovementSpeed1"] = { affix = "Enchantment Tornado Movement Speed 1", "Tornado has 20% increased Movement Speed", statOrder = { 10386 }, level = 66, group = "EnchantmentTornadoMovementSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3713499406] = { "Tornado has 20% increased Movement Speed" }, } }, + ["EnchantmentTornadoMovementSpeed2"] = { affix = "Enchantment Tornado Movement Speed 2", "Tornado has 30% increased Movement Speed", statOrder = { 10386 }, level = 75, group = "EnchantmentTornadoMovementSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3713499406] = { "Tornado has 30% increased Movement Speed" }, } }, + ["EnchantmentTornadoShotCriticalStrikeChance1"] = { affix = "Enchantment Tornado Shot Critical Strike Chance 1", "60% increased Tornado Shot Critical Strike Chance", statOrder = { 3942 }, level = 66, group = "EnchantmentTornadoShotCriticalStrikeChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1815368527] = { "60% increased Tornado Shot Critical Strike Chance" }, } }, + ["EnchantmentTornadoShotCriticalStrikeChance2"] = { affix = "Enchantment Tornado Shot Critical Strike Chance 2", "90% increased Tornado Shot Critical Strike Chance", statOrder = { 3942 }, level = 75, group = "EnchantmentTornadoShotCriticalStrikeChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1815368527] = { "90% increased Tornado Shot Critical Strike Chance" }, } }, + ["EnchantmentTornadoShotNumOfSecondaryProjectiles1"] = { affix = "Enchantment Tornado Shot Num Of Secondary Projectiles 1", "Tornado Shot fires an additional secondary Projectile", statOrder = { 3950 }, level = 66, group = "EnchantmentTornadoShotNumOfSecondaryProjectiles", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [1219778564] = { "Tornado Shot fires an additional secondary Projectile" }, } }, + ["EnchantmentTornadoShotNumOfSecondaryProjectiles2"] = { affix = "Enchantment Tornado Shot Num Of Secondary Projectiles 2", "Tornado Shot fires an additional secondary Projectile", statOrder = { 3950 }, level = 75, group = "EnchantmentTornadoShotNumOfSecondaryProjectiles", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1219778564] = { "Tornado Shot fires an additional secondary Projectile" }, } }, + ["EnchantmentToxicRainPhysicalAddedAsChaos1"] = { affix = "Enchantment Toxic Rain Physical Added As Chaos 1", "Toxic Rain gains 6% of Physical Damage as Extra Chaos Damage", statOrder = { 10412 }, level = 66, group = "EnchantmentToxicRainPhysicalAddedAsChaos", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, tradeHashes = { [1798919988] = { "Toxic Rain gains 6% of Physical Damage as Extra Chaos Damage" }, } }, + ["EnchantmentToxicRainPhysicalAddedAsChaos2"] = { affix = "Enchantment Toxic Rain Physical Added As Chaos 2", "Toxic Rain gains 10% of Physical Damage as Extra Chaos Damage", statOrder = { 10412 }, level = 75, group = "EnchantmentToxicRainPhysicalAddedAsChaos", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, tradeHashes = { [1798919988] = { "Toxic Rain gains 10% of Physical Damage as Extra Chaos Damage" }, } }, + ["EnchantmentToxicRainNumOfAdditionalProjectiles1_"] = { affix = "Enchantment Toxic Rain Num Of Additional Projectiles 1", "Toxic Rain fires 1 additional Arrow", statOrder = { 10411 }, level = 75, group = "EnchantmentToxicRainNumOfAdditionalProjectiles", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2140127102] = { "Toxic Rain fires 1 additional Arrow" }, } }, + ["EnchantmentVampiricLinkDuration1_"] = { affix = "Enchantment Vampiric Link Duration 1", "20% increased Vampiric Link Duration", statOrder = { 10526 }, level = 66, group = "EnchantmentVampiricLinkDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1238426677] = { "20% increased Vampiric Link Duration" }, } }, + ["EnchantmentVampiricLinkDuration2___"] = { affix = "Enchantment Vampiric Link Duration 2", "30% increased Vampiric Link Duration", statOrder = { 10526 }, level = 75, group = "EnchantmentVampiricLinkDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1238426677] = { "30% increased Vampiric Link Duration" }, } }, + ["EnchantmentVengeanceCooldownSpeed1"] = { affix = "Enchantment Vengeance Cooldown Speed 1", "Vengeance has 20% increased Cooldown Recovery Rate", statOrder = { 3886 }, level = 66, group = "EnchantmentVengeanceCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1447427508] = { "Vengeance has 20% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentVengeanceCooldownSpeed2"] = { affix = "Enchantment Vengeance Cooldown Speed 2", "Vengeance has 30% increased Cooldown Recovery Rate", statOrder = { 3886 }, level = 75, group = "EnchantmentVengeanceCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1447427508] = { "Vengeance has 30% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentVigilantStrikeFortifyDuration1"] = { affix = "Enchantment Vigilant Strike Fortify Duration 1", "Vigilant Strike has 30% increased Fortification Duration", statOrder = { 3906 }, level = 66, group = "EnchantmentVigilantStrikeFortifyDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2275055843] = { "Vigilant Strike has 30% increased Fortification Duration" }, } }, + ["EnchantmentVigilantStrikeFortifyDuration2_"] = { affix = "Enchantment Vigilant Strike Fortify Duration 2", "Vigilant Strike has 45% increased Fortification Duration", statOrder = { 3906 }, level = 75, group = "EnchantmentVigilantStrikeFortifyDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2275055843] = { "Vigilant Strike has 45% increased Fortification Duration" }, } }, + ["EnchantmentViperStrikeCriticalStrikeChance1"] = { affix = "Enchantment Viper Strike Critical Strike Chance 1", "60% increased Viper Strike Critical Strike Chance", statOrder = { 3939 }, level = 66, group = "EnchantmentViperStrikeCriticalStrikeChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3734756042] = { "60% increased Viper Strike Critical Strike Chance" }, } }, + ["EnchantmentViperStrikeCriticalStrikeChance2"] = { affix = "Enchantment Viper Strike Critical Strike Chance 2", "90% increased Viper Strike Critical Strike Chance", statOrder = { 3939 }, level = 75, group = "EnchantmentViperStrikeCriticalStrikeChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3734756042] = { "90% increased Viper Strike Critical Strike Chance" }, } }, + ["EnchantmentViperStrikePoisonDuration1_"] = { affix = "Enchantment Viper Strike Poison Duration 1", "20% increased Viper Strike Duration", statOrder = { 3928 }, level = 66, group = "EnchantmentViperStrikePoisonDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3869217625] = { "20% increased Viper Strike Duration" }, } }, + ["EnchantmentViperStrikePoisonDuration2__"] = { affix = "Enchantment Viper Strike Poison Duration 2", "30% increased Viper Strike Duration", statOrder = { 3928 }, level = 75, group = "EnchantmentViperStrikePoisonDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3869217625] = { "30% increased Viper Strike Duration" }, } }, + ["EnchantmentVitalityManaReservation1"] = { affix = "Enchantment Vitality Mana Reservation 1", "Vitality has 40% increased Mana Reservation Efficiency", statOrder = { 10536 }, level = 66, group = "EnchantmentVitalityManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1233806203] = { "Vitality has 40% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentVitalityManaReservation2"] = { affix = "Enchantment Vitality Mana Reservation 2", "Vitality has 60% increased Mana Reservation Efficiency", statOrder = { 10536 }, level = 75, group = "EnchantmentVitalityManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1233806203] = { "Vitality has 60% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentVitalityManaReservationEfficiency1_"] = { affix = "Enchantment Vitality Mana Reservation 1", "Vitality has 50% increased Mana Reservation Efficiency", statOrder = { 10537 }, level = 66, group = "EnchantmentVitalityManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3972739758] = { "Vitality has 50% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentVitalityManaReservationEfficiency2"] = { affix = "Enchantment Vitality Mana Reservation 2", "Vitality has 75% increased Mana Reservation Efficiency", statOrder = { 10537 }, level = 75, group = "EnchantmentVitalityManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3972739758] = { "Vitality has 75% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentVoidSphereBaseCooldownSpeed1"] = { affix = "Enchantment Void Sphere Cooldown 1", "Void Sphere has 20% increased Cooldown Recovery Rate", statOrder = { 10539 }, level = 66, group = "EnchantmentVoidSphereBaseCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2690342765] = { "Void Sphere has 20% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentVoidSphereBaseCooldownSpeed2"] = { affix = "Enchantment Void Sphere Cooldown 2", "Void Sphere has 30% increased Cooldown Recovery Rate", statOrder = { 10539 }, level = 75, group = "EnchantmentVoidSphereBaseCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2690342765] = { "Void Sphere has 30% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentVoidSphereDamageTaken1__"] = { affix = "Enchantment Void Sphere Damage Taken 1", "Enemies in Void Sphere's range take up to 6% increased Damage, based on distance from the Void Sphere", statOrder = { 5076 }, level = 66, group = "EnchantmentVoidSphereDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [4271709087] = { "Enemies in Void Sphere's range take up to 6% increased Damage, based on distance from the Void Sphere" }, } }, + ["EnchantmentVoidSphereDamageTaken2"] = { affix = "Enchantment Void Sphere Damage Taken 2", "Enemies in Void Sphere's range take up to 10% increased Damage, based on distance from the Void Sphere", statOrder = { 5076 }, level = 75, group = "EnchantmentVoidSphereDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [4271709087] = { "Enemies in Void Sphere's range take up to 10% increased Damage, based on distance from the Void Sphere" }, } }, + ["EnchantmentVoidSpherePulseFrequency1"] = { affix = "Enchantment Void Sphere Pulse Rate 1", "Void Sphere has 12% increased Pulse Frequency", statOrder = { 5077 }, level = 66, group = "EnchantmentVoidSpherePulseFrequency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2523663201] = { "Void Sphere has 12% increased Pulse Frequency" }, } }, + ["EnchantmentVoidSpherePulseFrequency2"] = { affix = "Enchantment Void Sphere Pulse Rate 2", "Void Sphere has 18% increased Pulse Frequency", statOrder = { 5077 }, level = 75, group = "EnchantmentVoidSpherePulseFrequency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2523663201] = { "Void Sphere has 18% increased Pulse Frequency" }, } }, + ["EnchantmentVoltaxicBurstRadius1_"] = { affix = "Enchantment Voltaxic Burst Area Of Effect 1", "16% increased Voltaxic Burst Area of Effect", statOrder = { 10550 }, level = 66, group = "EnchantmentVoltaxicBurstRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2982851186] = { "16% increased Voltaxic Burst Area of Effect" }, } }, + ["EnchantmentVoltaxicBurstRadius2_"] = { affix = "Enchantment Voltaxic Burst Area Of Effect 2", "24% increased Voltaxic Burst Area of Effect", statOrder = { 10550 }, level = 75, group = "EnchantmentVoltaxicBurstRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2982851186] = { "24% increased Voltaxic Burst Area of Effect" }, } }, + ["EnchantmentVoltaxicBurstDamagePerDuration1_"] = { affix = "Enchantment Voltaxic Burst Damage per 0.1s Duration 1", "Voltaxic Burst deals 2% increased Damage per 0.1 seconds of Duration", statOrder = { 10549 }, level = 66, group = "EnchantmentVoltaxicBurstDamagePerDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3472104870] = { "Voltaxic Burst deals 2% increased Damage per 0.1 seconds of Duration" }, } }, + ["EnchantmentVoltaxicBurstDamagePerDuration2"] = { affix = "Enchantment Voltaxic Burst Damage per 0.1s Duration 2", "Voltaxic Burst deals 3% increased Damage per 0.1 seconds of Duration", statOrder = { 10549 }, level = 75, group = "EnchantmentVoltaxicBurstDamagePerDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3472104870] = { "Voltaxic Burst deals 3% increased Damage per 0.1 seconds of Duration" }, } }, + ["EnchantmentVortexRadius1"] = { affix = "", "16% increased Vortex Area of Effect", statOrder = { 4146 }, level = 66, group = "EnchantmentVortexRadius", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster" }, tradeHashes = { [1730614496] = { "16% increased Vortex Area of Effect" }, } }, + ["EnchantmentVortexRadius2"] = { affix = "", "24% increased Vortex Area of Effect", statOrder = { 4146 }, level = 75, group = "EnchantmentVortexRadius", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster" }, tradeHashes = { [1730614496] = { "24% increased Vortex Area of Effect" }, } }, + ["EnchantmentVortexDuration1"] = { affix = "Enchantment Vortex Duration 1", "20% increased Vortex Duration", statOrder = { 4152 }, level = 66, group = "EnchantmentVortexDuration", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [4074562940] = { "20% increased Vortex Duration" }, } }, + ["EnchantmentVortexDuration2"] = { affix = "Enchantment Vortex Duration 2", "30% increased Vortex Duration", statOrder = { 4152 }, level = 75, group = "EnchantmentVortexDuration", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [4074562940] = { "30% increased Vortex Duration" }, } }, + ["EnchantmentVortexAoEOnFrostbolt1"] = { affix = "Enchantment Vortex AoE On Frostbolt 1", "Vortex has 30% increased Area of Effect when Cast on Frostbolt", statOrder = { 10552 }, level = 66, group = "EnchantmentVortexAoEOnFrostbolt", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [2295263113] = { "Vortex has 30% increased Area of Effect when Cast on Frostbolt" }, } }, + ["EnchantmentVortexAoEOnFrostbolt2"] = { affix = "Enchantment Vortex AoE On Frostbolt 2", "Vortex has 45% increased Area of Effect when Cast on Frostbolt", statOrder = { 10552 }, level = 75, group = "EnchantmentVortexAoEOnFrostbolt", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [2295263113] = { "Vortex has 45% increased Area of Effect when Cast on Frostbolt" }, } }, + ["EnchantmentVortexCooldownRecovery1"] = { affix = "Enchantment Vortex Cooldown Recovery 1", "Vortex has 20% increased Cooldown Recovery Rate", statOrder = { 6676 }, level = 66, group = "EnchantmentVortexCooldownRecovery", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [2461424099] = { "Vortex has 20% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentVortexCooldownRecovery2_"] = { affix = "Enchantment Vortex Cooldown Recovery 2", "Vortex has 30% increased Cooldown Recovery Rate", statOrder = { 6676 }, level = 75, group = "EnchantmentVortexCooldownRecovery", weightKey = { "helmet", "default", }, weightVal = { 75, 0 }, modTags = { "caster" }, tradeHashes = { [2461424099] = { "Vortex has 30% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentVulnerabilityCurseEffect1"] = { affix = "Enchantment Vulnerability Curse Effect 1", "10% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 66, group = "EnchantmentVulnerabilityCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "10% increased Vulnerability Curse Effect" }, } }, + ["EnchantmentVulnerabilityCurseEffect2"] = { affix = "Enchantment Vulnerability Curse Effect 2", "15% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "EnchantmentVulnerabilityCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "15% increased Vulnerability Curse Effect" }, } }, + ["EnchantmentVulnerabilityDuration1"] = { affix = "Enchantment Vulnerability Duration 1", "30% increased Vulnerability Duration", statOrder = { 3911 }, level = 66, group = "EnchantmentVulnerabilityDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3229878341] = { "30% increased Vulnerability Duration" }, } }, + ["EnchantmentVulnerabilityDuration2"] = { affix = "Enchantment Vulnerability Duration 2", "45% increased Vulnerability Duration", statOrder = { 3911 }, level = 75, group = "EnchantmentVulnerabilityDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3229878341] = { "45% increased Vulnerability Duration" }, } }, + ["EnchantmentWaterSpherePulseFrequency1_"] = { affix = "Enchantment Hydrosphere Pulse Frequency 1", "Hydrosphere has 20% increased Pulse Frequency", statOrder = { 7181 }, level = 66, group = "EnchantmentWaterSpherePulseFrequency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1816969033] = { "Hydrosphere has 20% increased Pulse Frequency" }, } }, + ["EnchantmentWaterSpherePulseFrequency2__"] = { affix = "Enchantment Hydrosphere Pulse Frequency 2", "Hydrosphere has 30% increased Pulse Frequency", statOrder = { 7181 }, level = 75, group = "EnchantmentWaterSpherePulseFrequency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1816969033] = { "Hydrosphere has 30% increased Pulse Frequency" }, } }, + ["EnchantmentWaterSphereExposureAmount1"] = { affix = "Enchantment Hydrosphere Exposure Amount 1", "Enemies Drenched by Hydrosphere have Cold and Lightning Exposure, applying -4% to Resistances", statOrder = { 10585 }, level = 66, group = "EnchantmentWaterSphereExposureAmount", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3831546273] = { "Enemies Drenched by Hydrosphere have Cold and Lightning Exposure, applying -4% to Resistances" }, } }, + ["EnchantmentWaterSphereExposureAmount2"] = { affix = "Enchantment Hydrosphere Exposure Amount 2", "Enemies Drenched by Hydrosphere have Cold and Lightning Exposure, applying -6% to Resistances", statOrder = { 10585 }, level = 75, group = "EnchantmentWaterSphereExposureAmount", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3831546273] = { "Enemies Drenched by Hydrosphere have Cold and Lightning Exposure, applying -6% to Resistances" }, } }, + ["EnchantmentWarBannerEffect1"] = { affix = "Enchantment War Banner Effect 1", "War Banner has 25% increased Aura Effect", statOrder = { 10558 }, level = 66, group = "EnchantmentWarBannerEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "aura" }, tradeHashes = { [2592211591] = { "War Banner has 25% increased Aura Effect" }, } }, + ["EnchantmentWarBannerEffect2"] = { affix = "Enchantment War Banner Effect 2", "War Banner has 40% increased Aura Effect", statOrder = { 10558 }, level = 75, group = "EnchantmentWarBannerEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "aura" }, tradeHashes = { [2592211591] = { "War Banner has 40% increased Aura Effect" }, } }, + ["EnchantmentWarlordsMarkCurseEffect1"] = { affix = "Enchantment Warlords Mark Curse Effect 1", "20% increased Warlord's Mark Curse Effect", statOrder = { 4017 }, level = 66, group = "EnchantmentWarlordsMarkCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1528965411] = { "20% increased Warlord's Mark Curse Effect" }, } }, + ["EnchantmentWarlordsMarkCurseEffect2"] = { affix = "Enchantment Warlords Mark Curse Effect 2", "30% increased Warlord's Mark Curse Effect", statOrder = { 4017 }, level = 75, group = "EnchantmentWarlordsMarkCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1528965411] = { "30% increased Warlord's Mark Curse Effect" }, } }, + ["EnchantmentWarlordsMarkDuration1_"] = { affix = "Enchantment Warlords Mark Duration 1", "30% increased Warlord's Mark Duration", statOrder = { 3910 }, level = 66, group = "EnchantmentWarlordsMarkDuration", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3766479096] = { "30% increased Warlord's Mark Duration" }, } }, + ["EnchantmentWarlordsMarkDuration2"] = { affix = "Enchantment Warlords Mark Duration 2", "45% increased Warlord's Mark Duration", statOrder = { 3910 }, level = 75, group = "EnchantmentWarlordsMarkDuration", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3766479096] = { "45% increased Warlord's Mark Duration" }, } }, + ["EnchantmentWaveOfConvictionAdditionalEnemyResistance1"] = { affix = "Enchantment Wave Of Conviction Additional Enemy Resistance 1", "Wave of Conviction's Exposure applies an extra -4% to Elemental Resistance", statOrder = { 9761 }, level = 66, group = "EnchantmentWaveOfConvictionAdditionalEnemyResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance", "caster" }, tradeHashes = { [3139672534] = { "Wave of Conviction's Exposure applies an extra -4% to Elemental Resistance" }, } }, + ["EnchantmentWaveOfConvictionAdditionalEnemyResistance2"] = { affix = "Enchantment Wave Of Conviction Additional Enemy Resistance 2", "Wave of Conviction's Exposure applies an extra -6% to Elemental Resistance", statOrder = { 9761 }, level = 75, group = "EnchantmentWaveOfConvictionAdditionalEnemyResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance", "caster" }, tradeHashes = { [3139672534] = { "Wave of Conviction's Exposure applies an extra -6% to Elemental Resistance" }, } }, + ["EnchantmentWaveOfConvictionDuration1"] = { affix = "Enchantment Wave Of Conviction Duration 1", "Wave of Conviction has 20% increased Duration", statOrder = { 9764 }, level = 66, group = "EnchantmentWaveOfConvictionDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2412561418] = { "Wave of Conviction has 20% increased Duration" }, } }, + ["EnchantmentWaveOfConvictionDuration2"] = { affix = "Enchantment Wave Of Conviction Duration 2", "Wave of Conviction has 30% increased Duration", statOrder = { 9764 }, level = 75, group = "EnchantmentWaveOfConvictionDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2412561418] = { "Wave of Conviction has 30% increased Duration" }, } }, + ["EnchantmentWhirlingBladesAttackSpeed1"] = { affix = "Enchantment Whirling Blades Attack Speed 1", "10% increased Whirling Blades Attack Speed", statOrder = { 3868 }, level = 66, group = "EnchantmentWhirlingBladesAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1902197291] = { "10% increased Whirling Blades Attack Speed" }, } }, + ["EnchantmentWhirlingBladesAttackSpeed2"] = { affix = "Enchantment Whirling Blades Attack Speed 2", "15% increased Whirling Blades Attack Speed", statOrder = { 3868 }, level = 75, group = "EnchantmentWhirlingBladesAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1902197291] = { "15% increased Whirling Blades Attack Speed" }, } }, + ["EnchantmentWildStrikeNumOfAdditionalProjectilesInChain1"] = { affix = "Enchantment Wild Strike Num Of Additional Projectiles In Chain 1", "Wild Strike's Beam Chains an additional 4 times", statOrder = { 4000 }, level = 66, group = "EnchantmentWildStrikeNumOfAdditionalProjectilesInChain", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2447447843] = { "Wild Strike's Beam Chains an additional 4 times" }, } }, + ["EnchantmentWildStrikeNumOfAdditionalProjectilesInChain2"] = { affix = "Enchantment Wild Strike Num Of Additional Projectiles In Chain 2", "Wild Strike's Beam Chains an additional 6 times", statOrder = { 4000 }, level = 75, group = "EnchantmentWildStrikeNumOfAdditionalProjectilesInChain", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2447447843] = { "Wild Strike's Beam Chains an additional 6 times" }, } }, + ["EnchantmentWildStrikeRadius1"] = { affix = "Enchantment Wild Strike Area Of Effect 1", "24% increased Wild Strike Area of Effect", statOrder = { 3828 }, level = 66, group = "EnchantmentWildStrikeRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [524936200] = { "24% increased Wild Strike Area of Effect" }, } }, + ["EnchantmentWildStrikeRadius2"] = { affix = "Enchantment Wild Strike Area Of Effect 2", "36% increased Wild Strike Area of Effect", statOrder = { 3828 }, level = 75, group = "EnchantmentWildStrikeRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [524936200] = { "36% increased Wild Strike Area of Effect" }, } }, + ["EnchantmentFrostFuryAdditionalMaxNumberOfStages1"] = { affix = "Enchantment Frost Fury Additional Max Number Of Stages 1", "Winter Orb has +2 Maximum Stages", statOrder = { 6679 }, level = 75, group = "EnchantmentFrostFuryAdditionalMaxNumberOfStages", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3734339018] = { "Winter Orb has +2 Maximum Stages" }, } }, + ["EnchantmentFrostFuryAreaOfEffectPerStage1"] = { affix = "Enchantment Frost Fury Area Of Effect Per Stage 1", "Winter Orb has 2% increased Area of Effect per Stage", statOrder = { 6680 }, level = 66, group = "EnchantmentFrostFuryAreaOfEffectPerStage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1017161280] = { "Winter Orb has 2% increased Area of Effect per Stage" }, } }, + ["EnchantmentFrostFuryAreaOfEffectPerStage2_"] = { affix = "Enchantment Frost Fury Area Of Effect Per Stage 2", "Winter Orb has 3% increased Area of Effect per Stage", statOrder = { 6680 }, level = 75, group = "EnchantmentFrostFuryAreaOfEffectPerStage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1017161280] = { "Winter Orb has 3% increased Area of Effect per Stage" }, } }, + ["EnchantmentWitherDuration1"] = { affix = "Enchantment Wither Duration 1", "Wither has 24% increased Duration", statOrder = { 3924 }, level = 66, group = "EnchantmentWitherDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [447560345] = { "Wither has 24% increased Duration" }, } }, + ["EnchantmentWitherDuration2"] = { affix = "Enchantment Wither Duration 2", "Wither has 36% increased Duration", statOrder = { 3924 }, level = 75, group = "EnchantmentWitherDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [447560345] = { "Wither has 36% increased Duration" }, } }, + ["EnchantmentWitherRadius1"] = { affix = "Enchantment Wither Area Of Effect 1", "Wither has 16% increased Area of Effect", statOrder = { 3840 }, level = 66, group = "EnchantmentWitherRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1810898461] = { "Wither has 16% increased Area of Effect" }, } }, + ["EnchantmentWitherRadius2"] = { affix = "Enchantment Wither Area Of Effect 2", "Wither has 24% increased Area of Effect", statOrder = { 3840 }, level = 75, group = "EnchantmentWitherRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1810898461] = { "Wither has 24% increased Area of Effect" }, } }, + ["EnchantmentWrathManaReservation1"] = { affix = "Enchantment Wrath Mana Reservation 1", "Wrath has 20% increased Mana Reservation Efficiency", statOrder = { 10630 }, level = 66, group = "EnchantmentWrathManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1761642973] = { "Wrath has 20% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentWrathManaReservation2"] = { affix = "Enchantment Wrath Mana Reservation 2", "Wrath has 30% increased Mana Reservation Efficiency", statOrder = { 10630 }, level = 75, group = "EnchantmentWrathManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1761642973] = { "Wrath has 30% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentWrathManaReservationEfficiency1_"] = { affix = "Enchantment Wrath Mana Reservation 1", "Wrath has 20% increased Mana Reservation Efficiency", statOrder = { 10631 }, level = 66, group = "EnchantmentWrathManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3444518809] = { "Wrath has 20% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentWrathManaReservationEfficiency2_"] = { affix = "Enchantment Wrath Mana Reservation 2", "Wrath has 30% increased Mana Reservation Efficiency", statOrder = { 10631 }, level = 75, group = "EnchantmentWrathManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3444518809] = { "Wrath has 30% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentZombieAttackSpeed1"] = { affix = "Enchantment Zombie Attack Speed 1", "Raised Zombies have 10% increased Attack Speed", statOrder = { 3856 }, level = 66, group = "EnchantmentZombieAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed", "minion" }, tradeHashes = { [2499559911] = { "Raised Zombies have 10% increased Attack Speed" }, } }, + ["EnchantmentZombieAttackSpeed2"] = { affix = "Enchantment Zombie Attack Speed 2", "Raised Zombies have 15% increased Attack Speed", statOrder = { 3856 }, level = 75, group = "EnchantmentZombieAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed", "minion" }, tradeHashes = { [2499559911] = { "Raised Zombies have 15% increased Attack Speed" }, } }, + ["EnchantmentZombieElementalResistances1"] = { affix = "Enchantment Zombie Elemental Resistances 1", "Raised Zombies have +24% to Elemental Resistances", statOrder = { 3983 }, level = 66, group = "EnchantmentZombieElementalResistances", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [2871777604] = { "Raised Zombies have +24% to Elemental Resistances" }, } }, + ["EnchantmentZombieElementalResistances2"] = { affix = "Enchantment Zombie Elemental Resistances 2", "Raised Zombies have +36% to Elemental Resistances", statOrder = { 3983 }, level = 75, group = "EnchantmentZombieElementalResistances", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [2871777604] = { "Raised Zombies have +36% to Elemental Resistances" }, } }, + ["EnchantmentZealotryManaReservation1"] = { affix = "Enchantment Zealotry Mana Reservation 1", "Zealotry has 20% increased Mana Reservation Efficiency", statOrder = { 10723 }, level = 66, group = "EnchantmentZealotryManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [4216444167] = { "Zealotry has 20% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentZealotryManaReservation2_"] = { affix = "Enchantment Zealotry Mana Reservation 2", "Zealotry has 30% increased Mana Reservation Efficiency", statOrder = { 10723 }, level = 75, group = "EnchantmentZealotryManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [4216444167] = { "Zealotry has 30% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentZealotryManaReservationEfficiency1__"] = { affix = "Enchantment Zealotry Mana Reservation 1", "Zealotry has 20% increased Mana Reservation Efficiency", statOrder = { 10724 }, level = 66, group = "EnchantmentZealotryManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [168308685] = { "Zealotry has 20% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentZealotryManaReservationEfficiency2"] = { affix = "Enchantment Zealotry Mana Reservation 2", "Zealotry has 30% increased Mana Reservation Efficiency", statOrder = { 10724 }, level = 75, group = "EnchantmentZealotryManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [168308685] = { "Zealotry has 30% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentVolatileDeadOrbs1"] = { affix = "Enchantment Volatile Dead Orbs 1", "Volatile Dead Consumes up to 1 additional corpse", statOrder = { 10543 }, level = 66, group = "EnchantmentVolatileDeadOrbsBoolean", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster" }, tradeHashes = { [4006050359] = { "Volatile Dead Consumes up to 1 additional corpse" }, } }, + ["EnchantmentVolatileDeadOrbs2"] = { affix = "Enchantment Volatile Dead Orbs 2", "Volatile Dead Consumes up to 1 additional corpse", statOrder = { 10543 }, level = 75, group = "EnchantmentVolatileDeadOrbsBoolean", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster" }, tradeHashes = { [4006050359] = { "Volatile Dead Consumes up to 1 additional corpse" }, } }, + ["EnchantmentVolatileDeadOrbs3"] = { affix = "Enchantment Volatile Dead Orbs 3", "Volatile Dead Consumes up to 1 additional corpse", statOrder = { 10541 }, level = 75, group = "EnchantmentVolatileDeadOrbs", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3034788766] = { "Volatile Dead Consumes up to 1 additional corpse" }, } }, + ["EnchantmentVolatileDeadDamage1"] = { affix = "Enchantment Volatile Dead Damage 1", "25% increased Volatile Dead Damage", statOrder = { 10544 }, level = 66, group = "EnchantmentVolatileDeadDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1212590278] = { "25% increased Volatile Dead Damage" }, } }, + ["EnchantmentVolatileDeadDamage2"] = { affix = "Enchantment Volatile Dead Damage 2", "40% increased Volatile Dead Damage", statOrder = { 10544 }, level = 75, group = "EnchantmentVolatileDeadDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1212590278] = { "40% increased Volatile Dead Damage" }, } }, + ["EnchantmentVolatileDeadCastSpeed1"] = { affix = "Enchantment Volatile Dead Cast Speed 1", "8% increased Volatile Dead Cast Speed", statOrder = { 10542 }, level = 66, group = "EnchantmentVolatileDeadCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3179781611] = { "8% increased Volatile Dead Cast Speed" }, } }, + ["EnchantmentVolatileDeadCastSpeed2"] = { affix = "Enchantment Volatile Dead Cast Speed 2", "12% increased Volatile Dead Cast Speed", statOrder = { 10542 }, level = 75, group = "EnchantmentVolatileDeadCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3179781611] = { "12% increased Volatile Dead Cast Speed" }, } }, + ["EnchantmentBoneLanceCorpseLevel1"] = { affix = "Enchantment Unearth Corpse Level 1", "Unearth Spawns corpses with +3 Level", statOrder = { 10491 }, level = 66, group = "EnchantmentBoneLanceCorpseLevel", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [586167247] = { "Unearth Spawns corpses with +3 Level" }, } }, + ["EnchantmentBoneLanceCorpseLevel2__"] = { affix = "Enchantment Unearth Corpse Level 2", "Unearth Spawns corpses with +5 Level", statOrder = { 10491 }, level = 75, group = "EnchantmentBoneLanceCorpseLevel", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [586167247] = { "Unearth Spawns corpses with +5 Level" }, } }, + ["EnchantmentBoneLanceDamage1"] = { affix = "Enchantment Unearth Damage 1", "25% increased Unearth Damage", statOrder = { 5253 }, level = 66, group = "EnchantmentBoneLanceDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3953599026] = { "25% increased Unearth Damage" }, } }, + ["EnchantmentBoneLanceDamage2"] = { affix = "Enchantment Unearth Damage 2", "40% increased Unearth Damage", statOrder = { 5253 }, level = 75, group = "EnchantmentBoneLanceDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3953599026] = { "40% increased Unearth Damage" }, } }, + ["EnchantmentBoneLanceCastSpeed1_"] = { affix = "Enchantment Unearth Cast Speed 1", "8% increased Unearth Cast Speed", statOrder = { 5252 }, level = 66, group = "EnchantmentBoneLanceCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2387717928] = { "8% increased Unearth Cast Speed" }, } }, + ["EnchantmentBoneLanceCastSpeed2_"] = { affix = "Enchantment Unearth Cast Speed 2", "12% increased Unearth Cast Speed", statOrder = { 5252 }, level = 75, group = "EnchantmentBoneLanceCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2387717928] = { "12% increased Unearth Cast Speed" }, } }, + ["EnchantmentCorpseEruptionMaximumGeysers1"] = { affix = "Enchantment Cremation Maximum Geysers 1", "Cremation can have up to 1 additional Geyser at a time", statOrder = { 5873 }, level = 75, group = "EnchantmentCorpseEruptionMaximumGeysers", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3503624267] = { "Cremation can have up to 1 additional Geyser at a time" }, } }, + ["EnchantmentCorpseEruptionDamage1"] = { affix = "Enchantment Cremation Damage 1", "25% increased Cremation Damage", statOrder = { 5875 }, level = 66, group = "EnchantmentCorpseEruptionDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4175469673] = { "25% increased Cremation Damage" }, } }, + ["EnchantmentCorpseEruptionDamage2"] = { affix = "Enchantment Cremation Damage 2", "40% increased Cremation Damage", statOrder = { 5875 }, level = 75, group = "EnchantmentCorpseEruptionDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4175469673] = { "40% increased Cremation Damage" }, } }, + ["EnchantmentCorpseEruptionCastSpeed1"] = { affix = "Enchantment Cremation Cast Speed 1", "8% increased Cremation Cast Speed", statOrder = { 5874 }, level = 66, group = "EnchantmentCorpseEruptionCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2938856716] = { "8% increased Cremation Cast Speed" }, } }, + ["EnchantmentCorpseEruptionCastSpeed2"] = { affix = "Enchantment Cremation Cast Speed 2", "12% increased Cremation Cast Speed", statOrder = { 5874 }, level = 75, group = "EnchantmentCorpseEruptionCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2938856716] = { "12% increased Cremation Cast Speed" }, } }, + ["EnchantmentBodySwapDamage1_"] = { affix = "Enchantment Body Swap Damage 1", "25% increased Bodyswap Damage", statOrder = { 5877 }, level = 66, group = "EnchantmentBodySwapDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [341054435] = { "25% increased Bodyswap Damage" }, } }, + ["EnchantmentBodySwapDamage2"] = { affix = "Enchantment Body Swap Damage 2", "40% increased Bodyswap Damage", statOrder = { 5877 }, level = 75, group = "EnchantmentBodySwapDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [341054435] = { "40% increased Bodyswap Damage" }, } }, + ["EnchantmentBodySwapCastSpeed1__"] = { affix = "Enchantment Body Swap Cast Speed 1", "8% increased Bodyswap Cast Speed", statOrder = { 5876 }, level = 66, group = "EnchantmentBodySwapCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [397438226] = { "8% increased Bodyswap Cast Speed" }, } }, + ["EnchantmentBodySwapCastSpeed2"] = { affix = "Enchantment Body Swap Cast Speed 2", "12% increased Bodyswap Cast Speed", statOrder = { 5876 }, level = 75, group = "EnchantmentBodySwapCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [397438226] = { "12% increased Bodyswap Cast Speed" }, } }, + ["EnchantmentSteelskinAdditionalPhysicalDamageReduction1_"] = { affix = "Enchantment Steelskin Additional Physical Damage Reduction 1", "Steelskin grants 8% additional Physical Damage Reduction", statOrder = { 9780 }, level = 66, group = "EnchantmentSteelskinAdditionalPhysicalDamageReduction", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical" }, tradeHashes = { [680880155] = { "Steelskin grants 8% additional Physical Damage Reduction" }, } }, + ["EnchantmentSteelskinAdditionalPhysicalDamageReduction2"] = { affix = "Enchantment Steelskin Additional Physical Damage Reduction 2", "Steelskin grants 12% additional Physical Damage Reduction", statOrder = { 9780 }, level = 75, group = "EnchantmentSteelskinAdditionalPhysicalDamageReduction", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical" }, tradeHashes = { [680880155] = { "Steelskin grants 12% additional Physical Damage Reduction" }, } }, + ["EnchantmentSteelskinDamageLimit1"] = { affix = "Enchantment Steelskin Damage Limit 1", "Steelskin Buff can take 30% increased amount of Damage", statOrder = { 10233 }, level = 66, group = "EnchantmentSteelskinDamageLimit", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [4102483123] = { "Steelskin Buff can take 30% increased amount of Damage" }, } }, + ["EnchantmentSteelskinDamageLimit2_"] = { affix = "Enchantment Steelskin Damage Limit 2", "Steelskin Buff can take 45% increased amount of Damage", statOrder = { 10233 }, level = 75, group = "EnchantmentSteelskinDamageLimit", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [4102483123] = { "Steelskin Buff can take 45% increased amount of Damage" }, } }, + ["EnchantmentDashTravelDistance1_"] = { affix = "Enchantment Dash Travel Distance 1", "Dash travels 65% increased distance", statOrder = { 9779 }, level = 66, group = "EnchantmentDashTravelDistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [4147746721] = { "Dash travels 65% increased distance" }, } }, + ["EnchantmentDashTravelDistance2"] = { affix = "Enchantment Dash Travel Distance 2", "Dash travels 100% increased distance", statOrder = { 9779 }, level = 75, group = "EnchantmentDashTravelDistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [4147746721] = { "Dash travels 100% increased distance" }, } }, + ["EnchantmentDashAddedCooldownCount1"] = { affix = "Enchantment Dash Cooldown Count 1", "Dash has +1 Cooldown Use", statOrder = { 9778 }, level = 66, group = "EnchantmentDashAddedCooldownCount", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [4172171622] = { "Dash has +1 Cooldown Use" }, } }, + ["EnchantmentDashAddedCooldownCount2"] = { affix = "Enchantment Dash Cooldown Count 2", "Dash has +2 Cooldown Uses", statOrder = { 9778 }, level = 75, group = "EnchantmentDashAddedCooldownCount", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [4172171622] = { "Dash has +2 Cooldown Uses" }, } }, + ["EnchantmentBladestormMaximumNumberOfStormsAllowed1"] = { affix = "Enchantment Bladestorm Maximum Number Of Storms Allowed 1", "+1 to Maximum number of Bladestorms at a time", statOrder = { 5094 }, level = 75, group = "EnchantmentBladestormMaximumNumberOfStormsAllowed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1662993931] = { "+1 to Maximum number of Bladestorms at a time" }, } }, + ["EnchantmentBladestormSandstormMovementSpeed1"] = { affix = "Enchantment Bladestorm Sandstorm Speed 1", "Sand Bladestorms move with 50% increased speed", statOrder = { 5095 }, level = 66, group = "EnchantmentBladestormSandstormMovementSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1556508042] = { "Sand Bladestorms move with 50% increased speed" }, } }, + ["EnchantmentBladestormSandstormMovementSpeed2___"] = { affix = "Enchantment Bladestorm Sandstorm Speed 2", "Sand Bladestorms move with 75% increased speed", statOrder = { 5095 }, level = 75, group = "EnchantmentBladestormSandstormMovementSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1556508042] = { "Sand Bladestorms move with 75% increased speed" }, } }, + ["EnchantmentBladestormDamage1__"] = { affix = "Enchantment Bladestorm Damage 1", "Bladestorm deals 25% increased Damage", statOrder = { 5093 }, level = 66, group = "EnchantmentBladestormDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [599289531] = { "Bladestorm deals 25% increased Damage" }, } }, + ["EnchantmentBladestormDamage2"] = { affix = "Enchantment Bladestorm Damage 2", "Bladestorm deals 40% increased Damage", statOrder = { 5093 }, level = 75, group = "EnchantmentBladestormDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [599289531] = { "Bladestorm deals 40% increased Damage" }, } }, + ["EnchantmentBloodAndSandBuffEffect1"] = { affix = "Enchantment Blood and Sand Buff Effect 1", "Blood and Sand has 25% increased Buff Effect", statOrder = { 5236 }, level = 66, group = "EnchantmentBloodAndSandBuffEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2471636515] = { "Blood and Sand has 25% increased Buff Effect" }, } }, + ["EnchantmentBloodAndSandBuffEffect2__"] = { affix = "Enchantment Blood and Sand Buff Effect 2", "Blood and Sand has 40% increased Buff Effect", statOrder = { 5236 }, level = 75, group = "EnchantmentBloodAndSandBuffEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2471636515] = { "Blood and Sand has 40% increased Buff Effect" }, } }, + ["EnchantmentPerforateNumberOfSpears1__"] = { affix = "Enchantment Perforate Number Of Spikes 1", "Perforate creates +1 Spike", statOrder = { 5238 }, level = 66, group = "EnchantmentPerforateNumberOfSpears", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3342959456] = { "Perforate creates +1 Spike" }, } }, + ["EnchantmentPerforateNumberOfSpears2"] = { affix = "Enchantment Perforate Number Of Spikes 2", "Perforate creates +2 Spikes", statOrder = { 5238 }, level = 75, group = "EnchantmentPerforateNumberOfSpears", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3342959456] = { "Perforate creates +2 Spikes" }, } }, + ["EnchantmentPerforateAreaOfEffect1"] = { affix = "Enchantment Perforate Area Of Effect 1", "Perforate has 16% increased Area of Effect", statOrder = { 5237 }, level = 66, group = "EnchantmentPerforateAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3536566359] = { "Perforate has 16% increased Area of Effect" }, } }, + ["EnchantmentPerforateAreaOfEffect2_"] = { affix = "Enchantment Perforate Area Of Effect 2", "Perforate has 24% increased Area of Effect", statOrder = { 5237 }, level = 75, group = "EnchantmentPerforateAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3536566359] = { "Perforate has 24% increased Area of Effect" }, } }, + ["EnchantmentPerforateDamage1"] = { affix = "Enchantment Perforate Damage 1", "Perforate deals 25% increased Damage", statOrder = { 5239 }, level = 66, group = "EnchantmentPerforateDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2731606134] = { "Perforate deals 25% increased Damage" }, } }, + ["EnchantmentPerforateDamage2"] = { affix = "Enchantment Perforate Damage 2", "Perforate deals 40% increased Damage", statOrder = { 5239 }, level = 75, group = "EnchantmentPerforateDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2731606134] = { "Perforate deals 40% increased Damage" }, } }, + ["EnchantmentFrostblinkCooldownSpeed1"] = { affix = "Enchantment Frostblink Cooldown Speed 1", "Frostblink has 20% increased Cooldown Recovery Rate", statOrder = { 7187 }, level = 66, group = "EnchantmentFrostblinkCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [815588902] = { "Frostblink has 20% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentFrostblinkCooldownSpeed2"] = { affix = "Enchantment Frostblink Cooldown Speed 2", "Frostblink has 30% increased Cooldown Recovery Rate", statOrder = { 7187 }, level = 75, group = "EnchantmentFrostblinkCooldownSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [815588902] = { "Frostblink has 30% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentFrostblinkTravelDistance1_"] = { affix = "Enchantment Frostblink Travel Distance 1", "Frostblink has 50% increased maximum travel distance", statOrder = { 7189 }, level = 66, group = "EnchantmentFrostblinkTravelDistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3070497632] = { "Frostblink has 50% increased maximum travel distance" }, } }, + ["EnchantmentFrostblinkTravelDistance2"] = { affix = "Enchantment Frostblink Travel Distance 2", "Frostblink has 75% increased maximum travel distance", statOrder = { 7189 }, level = 75, group = "EnchantmentFrostblinkTravelDistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3070497632] = { "Frostblink has 75% increased maximum travel distance" }, } }, + ["EnchantmentFleshAndStoneManaReservation1"] = { affix = "Enchantment Flesh and Stone Mana Reservation 1", "Flesh and Stone has 40% increased Mana Reservation Efficiency", statOrder = { 6650 }, level = 66, group = "EnchantmentFleshAndStoneManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3563089138] = { "Flesh and Stone has 40% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentFleshAndStoneManaReservation2"] = { affix = "Enchantment Flesh and Stone Mana Reservation 2", "Flesh and Stone has 60% increased Mana Reservation Efficiency", statOrder = { 6650 }, level = 75, group = "EnchantmentFleshAndStoneManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3563089138] = { "Flesh and Stone has 60% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentFleshAndStoneManaReservationEfficiency1"] = { affix = "Enchantment Flesh and Stone Mana Reservation 1", "Flesh and Stone has 50% increased Mana Reservation Efficiency", statOrder = { 6651 }, level = 66, group = "EnchantmentFleshAndStoneManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1740848995] = { "Flesh and Stone has 50% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentFleshAndStoneManaReservationEfficiency2"] = { affix = "Enchantment Flesh and Stone Mana Reservation 2", "Flesh and Stone has 75% increased Mana Reservation Efficiency", statOrder = { 6651 }, level = 75, group = "EnchantmentFleshAndStoneManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1740848995] = { "Flesh and Stone has 75% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentChainHookGainRageOnHitChance1"] = { affix = "Enchantment Chain Hook Gain Rage On Hit Chance 1", "Chain Hook grants 1 Rage if it Hits Enemies", statOrder = { 5485 }, level = 66, group = "EnchantmentChainHookGainRageOnHitChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2588242810] = { "Chain Hook grants 1 Rage if it Hits Enemies" }, } }, + ["EnchantmentChainHookGainRageOnHitChance2"] = { affix = "Enchantment Chain Hook Gain Rage On Hit Chance 2", "Chain Hook grants 1 Rage if it Hits Enemies", statOrder = { 5485 }, level = 75, group = "EnchantmentChainHookGainRageOnHitChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2588242810] = { "Chain Hook grants 1 Rage if it Hits Enemies" }, } }, + ["EnchantmentChainHookConeRadiusPer12Rage1"] = { affix = "Enchantment Chain Hook Cone Radius Per 12 Rage 1", "Chain Hook has +0.1 metres to radius per 12 Rage", statOrder = { 5483 }, level = 75, group = "EnchantmentChainHookConeRadiusPer12Rage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3269147016] = { "Chain Hook has +0.1 metres to radius per 12 Rage" }, } }, + ["EnchantmentChainHookDamage1"] = { affix = "Enchantment Chain Hook Damage 1", "Chain Hook deals 25% increased Damage", statOrder = { 5484 }, level = 66, group = "EnchantmentChainHookDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [289027663] = { "Chain Hook deals 25% increased Damage" }, } }, + ["EnchantmentChainHookDamage2"] = { affix = "Enchantment Chain Hook Damage 2", "Chain Hook deals 40% increased Damage", statOrder = { 5484 }, level = 75, group = "EnchantmentChainHookDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [289027663] = { "Chain Hook deals 40% increased Damage" }, } }, + ["EnchantmentBerserkRageLoss1__"] = { affix = "Enchantment Berserk Rage Loss 1", "Berserk has 25% reduced Rage loss per second", statOrder = { 5069 }, level = 66, group = "EnchantmentBerserkRageLoss", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1019790379] = { "Berserk has 25% reduced Rage loss per second" }, } }, + ["EnchantmentBerserkRageLoss2_"] = { affix = "Enchantment Berserk Rage Loss 2", "Berserk has 40% reduced Rage loss per second", statOrder = { 5069 }, level = 75, group = "EnchantmentBerserkRageLoss", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1019790379] = { "Berserk has 40% reduced Rage loss per second" }, } }, + ["EnchantmentBerserkEffect1___"] = { affix = "Enchantment Berserk Effect 1", "Berserk has 20% increased Buff Effect", statOrder = { 5068 }, level = 66, group = "EnchantmentBerserkEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1663783758] = { "Berserk has 20% increased Buff Effect" }, } }, + ["EnchantmentBerserkEffect2__"] = { affix = "Enchantment Berserk Effect 2", "Berserk has 30% increased Buff Effect", statOrder = { 5068 }, level = 75, group = "EnchantmentBerserkEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1663783758] = { "Berserk has 30% increased Buff Effect" }, } }, + ["EnchantmentLightningExplosionMineDamage1"] = { affix = "Enchantment Stormblast Mine Damage 1", "Stormblast Mine deals 25% increased Damage", statOrder = { 7457 }, level = 66, group = "EnchantmentLightningExplosionMineDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [494231298] = { "Stormblast Mine deals 25% increased Damage" }, } }, + ["EnchantmentLightningExplosionMineDamage2__"] = { affix = "Enchantment Stormblast Mine Damage 2", "Stormblast Mine deals 40% increased Damage", statOrder = { 7457 }, level = 75, group = "EnchantmentLightningExplosionMineDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [494231298] = { "Stormblast Mine deals 40% increased Damage" }, } }, + ["EnchantmentLightningExplosionMineThrowingSpeed1"] = { affix = "Enchantment Stormblast Mine Throwing Speed 1", "Stormblast Mine has 10% increased Throwing Speed", statOrder = { 7458 }, level = 66, group = "EnchantmentLightningExplosionMineThrowingSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [321894708] = { "Stormblast Mine has 10% increased Throwing Speed" }, } }, + ["EnchantmentLightningExplosionMineThrowingSpeed2"] = { affix = "Enchantment Stormblast Mine Throwing Speed 2", "Stormblast Mine has 15% increased Throwing Speed", statOrder = { 7458 }, level = 75, group = "EnchantmentLightningExplosionMineThrowingSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [321894708] = { "Stormblast Mine has 15% increased Throwing Speed" }, } }, + ["EnchantmentLightningExplosionMineAuraEffect1"] = { affix = "Enchantment Stormblast Mine Aura Effect 1", "Stormblast Mine has 20% increased Aura Effect", statOrder = { 7456 }, level = 66, group = "EnchantmentLightningExplosionMineAuraEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "aura" }, tradeHashes = { [2718657160] = { "Stormblast Mine has 20% increased Aura Effect" }, } }, + ["EnchantmentLightningExplosionMineAuraEffect2"] = { affix = "Enchantment Stormblast Mine Aura Effect 2", "Stormblast Mine has 40% increased Aura Effect", statOrder = { 7456 }, level = 75, group = "EnchantmentLightningExplosionMineAuraEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "aura" }, tradeHashes = { [2718657160] = { "Stormblast Mine has 40% increased Aura Effect" }, } }, + ["EnchantmentColdProjectileMineDamage1"] = { affix = "Enchantment Icicle Mine Damage 1", "Icicle Mine deals 25% increased Damage", statOrder = { 5830 }, level = 66, group = "EnchantmentColdProjectileMineDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2363866815] = { "Icicle Mine deals 25% increased Damage" }, } }, + ["EnchantmentColdProjectileMineDamage2"] = { affix = "Enchantment Icicle Mine Damage 2", "Icicle Mine deals 40% increased Damage", statOrder = { 5830 }, level = 75, group = "EnchantmentColdProjectileMineDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2363866815] = { "Icicle Mine deals 40% increased Damage" }, } }, + ["EnchantmentColdProjectileMineThrowingSpeed1"] = { affix = "Enchantment Icicle Mine Throwing Speed 1", "Icicle Mine has 10% increased Throwing Speed", statOrder = { 5832 }, level = 66, group = "EnchantmentColdProjectileMineThrowingSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3162144587] = { "Icicle Mine has 10% increased Throwing Speed" }, } }, + ["EnchantmentColdProjectileMineThrowingSpeed2"] = { affix = "Enchantment Icicle MineThrowing Speed 2", "Icicle Mine has 15% increased Throwing Speed", statOrder = { 5832 }, level = 75, group = "EnchantmentColdProjectileMineThrowingSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3162144587] = { "Icicle Mine has 15% increased Throwing Speed" }, } }, + ["EnchantmentColdProjectileMineCritMulti1"] = { affix = "Enchantment Icicle Mine Critical Multiplier 1", "Icicle Mine has +20% to Critical Strike Multiplier", statOrder = { 5829 }, level = 66, group = "EnchantmentColdProjectileMineCritMulti", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [1555251] = { "Icicle Mine has +20% to Critical Strike Multiplier" }, } }, + ["EnchantmentColdProjectileMineCritMulti2"] = { affix = "Enchantment Icicle Mine Critical Multiplier 2", "Icicle Mine has +30% to Critical Strike Multiplier", statOrder = { 5829 }, level = 75, group = "EnchantmentColdProjectileMineCritMulti", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [1555251] = { "Icicle Mine has +30% to Critical Strike Multiplier" }, } }, + ["EnchantmentMortarBarrageMineDamage1"] = { affix = "Enchantment Pyroclast Mine Damage 1", "Pyroclast Mine deals 25% increased Damage", statOrder = { 9401 }, level = 66, group = "EnchantmentMortarBarrageMineDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4048820315] = { "Pyroclast Mine deals 25% increased Damage" }, } }, + ["EnchantmentMortarBarrageMineDamage2"] = { affix = "Enchantment Pyroclast Mine Damage 2", "Pyroclast Mine deals 40% increased Damage", statOrder = { 9401 }, level = 75, group = "EnchantmentMortarBarrageMineDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4048820315] = { "Pyroclast Mine deals 40% increased Damage" }, } }, + ["EnchantmentMortarBarrageMineThrowingSpeed1_"] = { affix = "Enchantment Pyroclast Mine Throwing Speed 1", "Pyroclast Mine has 10% increased Throwing Speed", statOrder = { 9404 }, level = 66, group = "EnchantmentMortarBarrageMineThrowingSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2432759583] = { "Pyroclast Mine has 10% increased Throwing Speed" }, } }, + ["EnchantmentMortarBarrageMineThrowingSpeed2"] = { affix = "Enchantment Pyroclast Mine Throwing Speed 2", "Pyroclast Mine has 15% increased Throwing Speed", statOrder = { 9404 }, level = 75, group = "EnchantmentMortarBarrageMineThrowingSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2432759583] = { "Pyroclast Mine has 15% increased Throwing Speed" }, } }, + ["EnchantmentMortarBarrageMineNumProjectiles1"] = { affix = "", "Pyroclast Mine fires an additional Projectile", statOrder = { 9402 }, level = 66, group = "EnchantmentMortarBarrageMineNumProjectiles", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "caster" }, tradeHashes = { [841281094] = { "Pyroclast Mine fires an additional Projectile" }, } }, + ["EnchantmentMortarBarrageMineNumProjectiles2"] = { affix = "Enchantment Pyroclast Mine Additional Projectiles 1", "Pyroclast Mine fires an additional Projectile", statOrder = { 9402 }, level = 75, group = "EnchantmentMortarBarrageMineNumProjectiles", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [841281094] = { "Pyroclast Mine fires an additional Projectile" }, } }, + ["EnchantmentCobraLashDamage1"] = { affix = "Enchantment Cobra Lash Damage 1", "Cobra Lash deals 25% increased Damage", statOrder = { 5793 }, level = 66, group = "EnchantmentCobraLashDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2224580362] = { "Cobra Lash deals 25% increased Damage" }, } }, + ["EnchantmentCobraLashDamage2"] = { affix = "Enchantment Cobra Lash Damage 2", "Cobra Lash deals 40% increased Damage", statOrder = { 5793 }, level = 75, group = "EnchantmentCobraLashDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2224580362] = { "Cobra Lash deals 40% increased Damage" }, } }, + ["EnchantmentCobraLashProjectileSpeed1_"] = { affix = "Enchantment Cobra Lash Projectile Speed 1", "Cobra Lash has 20% increased Projectile Speed", statOrder = { 5795 }, level = 66, group = "EnchantmentCobraLashProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [732631533] = { "Cobra Lash has 20% increased Projectile Speed" }, } }, + ["EnchantmentCobraLashProjectileSpeed2"] = { affix = "Enchantment Cobra Lash Projectile Speed 2", "Cobra Lash has 30% increased Projectile Speed", statOrder = { 5795 }, level = 75, group = "EnchantmentCobraLashProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [732631533] = { "Cobra Lash has 30% increased Projectile Speed" }, } }, + ["EnchantmentCobraLashNumberOfAdditionalChains1_"] = { affix = "Enchantment Cobra Lash Number Of Additional Chains 1", "Cobra Lash Chains 2 additional times", statOrder = { 5794 }, level = 66, group = "EnchantmentCobraLashNumberOfAdditionalChains", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1471796012] = { "Cobra Lash Chains 2 additional times" }, } }, + ["EnchantmentCobraLashNumberOfAdditionalChains2_"] = { affix = "Enchantment Cobra Lash Number Of Additional Chains 2", "Cobra Lash Chains 3 additional times", statOrder = { 5794 }, level = 75, group = "EnchantmentCobraLashNumberOfAdditionalChains", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1471796012] = { "Cobra Lash Chains 3 additional times" }, } }, + ["EnchantmentWitheringStepWitherStacks1"] = { affix = "Enchantment Withering Step Wither Stacks1", "Withering Step inflicts 2 additional Withered Debuffs", statOrder = { 10080 }, level = 66, group = "EnchantmentWitheringStepWitherStacks", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3782733370] = { "Withering Step inflicts 2 additional Withered Debuffs" }, } }, + ["EnchantmentWitheringStepWitherStacks2_"] = { affix = "Enchantment Withering Step Wither Stacks 2", "Withering Step inflicts 3 additional Withered Debuffs", statOrder = { 10080 }, level = 75, group = "EnchantmentWitheringStepWitherStacks", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3782733370] = { "Withering Step inflicts 3 additional Withered Debuffs" }, } }, + ["EnchantmentWitheringStepElusiveEffect1"] = { affix = "Enchantment Withering Step Elusive Effect 1", "Withering Step has 20% increased Elusive Effect", statOrder = { 10079 }, level = 66, group = "EnchantmentWitheringStepElusiveEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [281958409] = { "Withering Step has 20% increased Elusive Effect" }, } }, + ["EnchantmentWitheringStepElusiveEffect2"] = { affix = "Enchantment Withering Step Elusive Effect 2", "Withering Step has 30% increased Elusive Effect", statOrder = { 10079 }, level = 75, group = "EnchantmentWitheringStepElusiveEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [281958409] = { "Withering Step has 30% increased Elusive Effect" }, } }, + ["EnchantmentSnappingAdderDamage1__"] = { affix = "Enchantment Venom Gyre Damage 1", "Venom Gyre deals 25% increased Damage", statOrder = { 10085 }, level = 66, group = "EnchantmentSnappingAdderDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1404787106] = { "Venom Gyre deals 25% increased Damage" }, } }, + ["EnchantmentSnappingAdderDamage2"] = { affix = "Enchantment Venom Gyre Damage 2", "Venom Gyre deals 40% increased Damage", statOrder = { 10085 }, level = 75, group = "EnchantmentSnappingAdderDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1404787106] = { "Venom Gyre deals 40% increased Damage" }, } }, + ["EnchantmentSnappingAdderWitheredOnHitFor2SecondsChance1"] = { affix = "Enchantment Venom Gyre Withering On Hit Chance 1", "Venom Gyre has a 12% chance to inflict Withered for 2 seconds on Hit", statOrder = { 10087 }, level = 66, group = "EnchantmentSnappingAdderWitheredOnHitFor2SecondsChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2157671820] = { "Venom Gyre has a 12% chance to inflict Withered for 2 seconds on Hit" }, } }, + ["EnchantmentSnappingAdderWitheredOnHitFor2SecondsChance2"] = { affix = "Enchantment Venom Gyre Withering On Hit Chance 2", "Venom Gyre has a 20% chance to inflict Withered for 2 seconds on Hit", statOrder = { 10087 }, level = 75, group = "EnchantmentSnappingAdderWitheredOnHitFor2SecondsChance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2157671820] = { "Venom Gyre has a 20% chance to inflict Withered for 2 seconds on Hit" }, } }, + ["EnchantmentSnappingAdderChanceToRetainProjectileOnRelease1"] = { affix = "Enchantment Venom Gyre Chance To Retain Projectile On Release 1", "Venom Gyre has a 15% chance to keep each caught Projectile fired with Whirling Blades", statOrder = { 10086 }, level = 66, group = "EnchantmentSnappingAdderChanceToRetainProjectileOnRelease", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [2563177940] = { "Venom Gyre has a 15% chance to keep each caught Projectile fired with Whirling Blades" }, } }, + ["EnchantmentSnappingAdderChanceToRetainProjectileOnRelease2_"] = { affix = "Enchantment Venom Gyre Chance To Retain Projectile On Release 2", "Venom Gyre has a 25% chance to keep each caught Projectile fired with Whirling Blades", statOrder = { 10086 }, level = 75, group = "EnchantmentSnappingAdderChanceToRetainProjectileOnRelease", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2563177940] = { "Venom Gyre has a 25% chance to keep each caught Projectile fired with Whirling Blades" }, } }, + ["EnchantmentPlagueBearerPoisonDotMultiplierWhileAuraActive1"] = { affix = "Enchantment Plague Bearer Poison Dot Multiplier While Aura Active 1", "Plague Bearer Buff grants +12% to Poison Damage over Time Multiplier while Infecting", statOrder = { 5880 }, level = 66, group = "EnchantmentPlagueBearerPoisonDotMultiplierWhileAuraActive", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1967208066] = { "Plague Bearer Buff grants +12% to Poison Damage over Time Multiplier while Infecting" }, } }, + ["EnchantmentPlagueBearerPoisonDotMultiplierWhileAuraActive2_"] = { affix = "Enchantment Plague Bearer Poison Dot Multiplier While Aura Active 2", "Plague Bearer Buff grants +20% to Poison Damage over Time Multiplier while Infecting", statOrder = { 5880 }, level = 75, group = "EnchantmentPlagueBearerPoisonDotMultiplierWhileAuraActive", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1967208066] = { "Plague Bearer Buff grants +20% to Poison Damage over Time Multiplier while Infecting" }, } }, + ["EnchantmentPlagueBearerStoredPoisonDamageToDealPerSecond1"] = { affix = "Enchantment Plague Bearer Stored Poison Damage To Deal Per Second 1", "Plague Bearer deals Damage based on an additional 3% of Plague Value", statOrder = { 5879 }, level = 66, group = "EnchantmentPlagueBearerStoredPoisonDamageToDealPerSecond", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2093796647] = { "Plague Bearer deals Damage based on an additional 3% of Plague Value" }, } }, + ["EnchantmentPlagueBearerStoredPoisonDamageToDealPerSecond2"] = { affix = "Enchantment Plague Bearer Stored Poison Damage To Deal Per Second 2", "Plague Bearer deals Damage based on an additional 5% of Plague Value", statOrder = { 5879 }, level = 75, group = "EnchantmentPlagueBearerStoredPoisonDamageToDealPerSecond", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2093796647] = { "Plague Bearer deals Damage based on an additional 5% of Plague Value" }, } }, + ["EnchantmentMambaStrikeDamage1_"] = { affix = "Enchantment Pestilent Strike Damage 1", "Pestilent Strike deals 25% increased Damage", statOrder = { 8165 }, level = 66, group = "EnchantmentMambaStrikeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [856157011] = { "Pestilent Strike deals 25% increased Damage" }, } }, + ["EnchantmentMambaStrikeDamage2"] = { affix = "Enchantment Pestilent Strike Damage 2", "Pestilent Strike deals 40% increased Damage", statOrder = { 8165 }, level = 75, group = "EnchantmentMambaStrikeDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [856157011] = { "Pestilent Strike deals 40% increased Damage" }, } }, + ["EnchantmentMambaStrikeDuration1"] = { affix = "Enchantment Pestilent Strike Duration 1", "Pestilent Strike has 25% increased Duration", statOrder = { 8166 }, level = 66, group = "EnchantmentMambaStrikeDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [64670441] = { "Pestilent Strike has 25% increased Duration" }, } }, + ["EnchantmentMambaStrikeDuration2"] = { affix = "Enchantment Pestilent Strike Duration 2", "Pestilent Strike has 40% increased Duration", statOrder = { 8166 }, level = 75, group = "EnchantmentMambaStrikeDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [64670441] = { "Pestilent Strike has 40% increased Duration" }, } }, + ["EnchantmentMambaStrikeAreaOfEffect1"] = { affix = "Enchantment Pestilent Strike Area Of Effect 1", "Pestilent Strike has 16% increased Area of Effect", statOrder = { 8164 }, level = 66, group = "EnchantmentMambaStrikeAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3787328468] = { "Pestilent Strike has 16% increased Area of Effect" }, } }, + ["EnchantmentMambaStrikeAreaOfEffect2_"] = { affix = "Enchantment Pestilent Strike Area Of Effect 2", "Pestilent Strike has 24% increased Area of Effect", statOrder = { 8164 }, level = 75, group = "EnchantmentMambaStrikeAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3787328468] = { "Pestilent Strike has 24% increased Area of Effect" }, } }, + ["EnchantmentCarrionGolemDamage1"] = { affix = "Enchantment Summon Carrion Golem Damage 1", "Summoned Carrion Golems deal 25% increased Damage", statOrder = { 5250 }, level = 66, group = "EnchantmentCarrionGolemDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3593547682] = { "Summoned Carrion Golems deal 25% increased Damage" }, } }, + ["EnchantmentCarrionGolemDamage2"] = { affix = "Enchantment Summon Carrion Golem Damage 2", "Summoned Carrion Golems deal 40% increased Damage", statOrder = { 5250 }, level = 75, group = "EnchantmentCarrionGolemDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3593547682] = { "Summoned Carrion Golems deal 40% increased Damage" }, } }, + ["EnchantmentCarrionGolemGrantedBuffEffect1"] = { affix = "Enchantment Summon Carrion Golem Granted Buff Effect 1", "100% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 66, group = "EnchantmentCarrionGolemGrantedBuffEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [2420972973] = { "100% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["EnchantmentCarrionGolemGrantedBuffEffect2___"] = { affix = "Enchantment Summon Carrion Golem Granted Buff Effect 2", "150% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "EnchantmentCarrionGolemGrantedBuffEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [2420972973] = { "150% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["EnchantmentCarrionGolemElementalResistances1"] = { affix = "Enchantment Summon Carrion Golem Elemental Resistances 1", "Summoned Carrion Golems have +24% to all Elemental Resistances", statOrder = { 5251 }, level = 66, group = "EnchantmentCarrionGolemElementalResistances", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [59544006] = { "Summoned Carrion Golems have +24% to all Elemental Resistances" }, } }, + ["EnchantmentCarrionGolemElementalResistances2"] = { affix = "Enchantment Summon Carrion Golem Elemental Resistances 2", "Summoned Carrion Golems have +36% to all Elemental Resistances", statOrder = { 5251 }, level = 75, group = "EnchantmentCarrionGolemElementalResistances", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [59544006] = { "Summoned Carrion Golems have +36% to all Elemental Resistances" }, } }, + ["EnchantmentSummonSkitterbotsAreaOfEffect1_"] = { affix = "Enchantment Summon Skitterbots Area Of Effect 1", "Summoned Skitterbots have 60% increased Area of Effect", statOrder = { 10303 }, level = 66, group = "EnchantmentSummonSkitterbotsAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [2844839137] = { "Summoned Skitterbots have 60% increased Area of Effect" }, } }, + ["EnchantmentSummonSkitterbotsAreaOfEffect2"] = { affix = "Enchantment Summon Skitterbots Area Of Effect 2", "Summoned Skitterbots have 90% increased Area of Effect", statOrder = { 10303 }, level = 75, group = "EnchantmentSummonSkitterbotsAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [2844839137] = { "Summoned Skitterbots have 90% increased Area of Effect" }, } }, + ["EnchantmentSummonSkitterbotsManaReservation1"] = { affix = "Enchantment Summon Skitterbots Mana Reservation 1", "Summon Skitterbots has 28% increased Mana Reservation Efficiency", statOrder = { 10073 }, level = 66, group = "EnchantmentSummonSkitterbotsManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3818053347] = { "Summon Skitterbots has 28% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentSummonSkitterbotsManaReservation2"] = { affix = "Enchantment Summon Skitterbots Mana Reservation 2", "Summon Skitterbots has 40% increased Mana Reservation Efficiency", statOrder = { 10073 }, level = 75, group = "EnchantmentSummonSkitterbotsManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3818053347] = { "Summon Skitterbots has 40% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentSummonSkitterbotsManaReservationEfficiency1_"] = { affix = "Enchantment Summon Skitterbots Mana Reservation 1", "Summon Skitterbots has 30% increased Mana Reservation Efficiency", statOrder = { 10074 }, level = 66, group = "EnchantmentSummonSkitterbotsManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1695754537] = { "Summon Skitterbots has 30% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentSummonSkitterbotsManaReservationEfficiency2"] = { affix = "Enchantment Summon Skitterbots Mana Reservation 2", "Summon Skitterbots has 45% increased Mana Reservation Efficiency", statOrder = { 10074 }, level = 75, group = "EnchantmentSummonSkitterbotsManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1695754537] = { "Summon Skitterbots has 45% increased Mana Reservation Efficiency" }, } }, + ["EnchantmentArtilleryBallistaFirePenetration1_"] = { affix = "Enchantment Artillery Ballista Fire Penetration 1", "Artillery Ballista Damage Penetrates 6% Fire Resistance", statOrder = { 4785 }, level = 66, group = "EnchantmentArtilleryBallistaFirePenetration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1734517294] = { "Artillery Ballista Damage Penetrates 6% Fire Resistance" }, } }, + ["EnchantmentArtilleryBallistaFirePenetration2___"] = { affix = "Enchantment Artillery Ballista Fire Penetration 2", "Artillery Ballista Damage Penetrates 10% Fire Resistance", statOrder = { 4785 }, level = 75, group = "EnchantmentArtilleryBallistaFirePenetration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1734517294] = { "Artillery Ballista Damage Penetrates 10% Fire Resistance" }, } }, + ["EnchantmentArtilleryBallistaExtraArrows1"] = { affix = "Enchantment Artillery Ballista Additional Arrows 1", "Artillery Ballista fires an additional Arrow", statOrder = { 4786 }, level = 66, group = "EnchantmentArtilleryBallistaExtraArrows", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3283028259] = { "Artillery Ballista fires an additional Arrow" }, } }, + ["EnchantmentArtilleryBallistaExtraArrows2"] = { affix = "Enchantment Artillery Ballista Additional Arrows 2", "Artillery Ballista fires 2 additional Arrows", statOrder = { 4786 }, level = 75, group = "EnchantmentArtilleryBallistaExtraArrows", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3283028259] = { "Artillery Ballista fires 2 additional Arrows" }, } }, + ["EnchantmentArtilleryBallistaCrossPattern1__"] = { affix = "Enchantment Artillery Ballista Cross Pattern 1", "Artillery Ballista Projectiles fall in two perpendicular lines instead", statOrder = { 4784 }, level = 75, group = "EnchantmentArtilleryBallistaCrossPattern", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2056176052] = { "Artillery Ballista Projectiles fall in two perpendicular lines instead" }, } }, + ["EnchantmentShrapnelBallistaExtraArrows1"] = { affix = "Enchantment Shrapnel Ballista Additional Arrows 1", "Shrapnel Ballista fires an additional Arrow", statOrder = { 10024 }, level = 75, group = "EnchantmentShrapnelBallistaExtraArrows", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [959534996] = { "Shrapnel Ballista fires an additional Arrow" }, } }, + ["EnchantmentShrapnelBallistaExtraPierce1"] = { affix = "Enchantment Shrapnel Ballista Extra Pierces 1", "Shrapnel Ballista Pierces 4 additional Targets", statOrder = { 10025 }, level = 66, group = "EnchantmentShrapnelBallistaExtraPierce", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1494168614] = { "Shrapnel Ballista Pierces 4 additional Targets" }, } }, + ["EnchantmentShrapnelBallistaExtraPierce2"] = { affix = "Enchantment Shrapnel Ballista Extra Pierces 2", "Shrapnel Ballista Pierces 6 additional Targets", statOrder = { 10025 }, level = 75, group = "EnchantmentShrapnelBallistaExtraPierce", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1494168614] = { "Shrapnel Ballista Pierces 6 additional Targets" }, } }, + ["EnchantmentShrapnelBallistaProjectileSpeed1____"] = { affix = "Enchantment Shrapnel Ballista Projectile Speed 1", "Shrapnel Ballista has 20% increased Projectile Speed", statOrder = { 10026 }, level = 66, group = "EnchantmentShrapnelBallistaProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1213017413] = { "Shrapnel Ballista has 20% increased Projectile Speed" }, } }, + ["EnchantmentShrapnelBallistaProjectileSpeed2"] = { affix = "Enchantment Shrapnel Ballista Projectile Speed 2", "Shrapnel Ballista has 30% increased Projectile Speed", statOrder = { 10026 }, level = 75, group = "EnchantmentShrapnelBallistaProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1213017413] = { "Shrapnel Ballista has 30% increased Projectile Speed" }, } }, + ["EnchantmentKineticBoltAttackSpeed1"] = { affix = "Enchantment Kinetic Bolt Attack Speed 1", "Kinetic Bolt has 10% increased Attack Speed", statOrder = { 7317 }, level = 66, group = "EnchantmentKineticBoltAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2244239056] = { "Kinetic Bolt has 10% increased Attack Speed" }, } }, + ["EnchantmentKineticBoltAttackSpeed2"] = { affix = "Enchantment Kinetic Bolt Attack Speed 2", "Kinetic Bolt has 15% increased Attack Speed", statOrder = { 7317 }, level = 75, group = "EnchantmentKineticBoltAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2244239056] = { "Kinetic Bolt has 15% increased Attack Speed" }, } }, + ["EnchantmentKineticBoltProjectileSpeed1"] = { affix = "Enchantment Kinetic Bolt Projectile Speed 1", "Kinetic Bolt has 20% increased Projectile Speed", statOrder = { 7320 }, level = 66, group = "EnchantmentKineticBoltProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2482018205] = { "Kinetic Bolt has 20% increased Projectile Speed" }, } }, + ["EnchantmentKineticBoltProjectileSpeed2"] = { affix = "Enchantment Kinetic Bolt Projectile Speed 2", "Kinetic Bolt has 30% increased Projectile Speed", statOrder = { 7320 }, level = 75, group = "EnchantmentKineticBoltProjectileSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2482018205] = { "Kinetic Bolt has 30% increased Projectile Speed" }, } }, + ["EnchantmentKineticBoltExtraZigZags1"] = { affix = "Enchantment Kinetic Bolt Extra Bounces 1", "Kinetic Bolt changes direction 1 additional time", statOrder = { 7321 }, level = 66, group = "EnchantmentKineticBoltExtraZigZags", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1460506005] = { "Kinetic Bolt changes direction 1 additional time" }, } }, + ["EnchantmentKineticBoltExtraZigZags2"] = { affix = "Enchantment Kinetic Bolt Extra Bounces 2", "Kinetic Bolt changes direction 2 additional times", statOrder = { 7321 }, level = 75, group = "EnchantmentKineticBoltExtraZigZags", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1460506005] = { "Kinetic Bolt changes direction 2 additional times" }, } }, + ["EnchantmentBladeBlastAreaOfEffect1"] = { affix = "Enchantment Blade Blast Area of Effect 1", "Blade Blast has 16% increased Area of Effect", statOrder = { 5083 }, level = 66, group = "EnchantmentBladeBlastAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3569393676] = { "Blade Blast has 16% increased Area of Effect" }, } }, + ["EnchantmentBladeBlastAreaOfEffect2___"] = { affix = "Enchantment Blade Blast Area of Effect 2", "Blade Blast has 24% increased Area of Effect", statOrder = { 5083 }, level = 75, group = "EnchantmentBladeBlastAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3569393676] = { "Blade Blast has 24% increased Area of Effect" }, } }, + ["EnchantmentBladeBlastDetonationArea1"] = { affix = "Enchantment Blade Blast Detonation Area 1", "Blade Blast detonates other Lingering Blades within an 50% increased Area", statOrder = { 5084 }, level = 66, group = "EnchantmentBladeBlastDetonationArea", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3309486263] = { "Blade Blast detonates other Lingering Blades within an 50% increased Area" }, } }, + ["EnchantmentBladeBlastDetonationArea2"] = { affix = "Enchantment Blade Blast Detonation Area 2", "Blade Blast detonates other Lingering Blades within an 75% increased Area", statOrder = { 5084 }, level = 75, group = "EnchantmentBladeBlastDetonationArea", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3309486263] = { "Blade Blast detonates other Lingering Blades within an 75% increased Area" }, } }, + ["EnchantmentBladeBlastDamage1"] = { affix = "Enchantment Blade Blast Damage 1", "Blade Blast deals 25% increased Damage", statOrder = { 5082 }, level = 66, group = "EnchantmentBladeBlastDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2276547155] = { "Blade Blast deals 25% increased Damage" }, } }, + ["EnchantmentBladeBlastDamage2"] = { affix = "Enchantment Blade Blast Damage 2", "Blade Blast deals 40% increased Damage", statOrder = { 5082 }, level = 75, group = "EnchantmentBladeBlastDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2276547155] = { "Blade Blast deals 40% increased Damage" }, } }, + ["EnchantmentStormbindAreaOfEffect1"] = { affix = "Enchantment Stormbind Area of Effect 1", "Stormbind has 16% increased Area of Effect", statOrder = { 10252 }, level = 66, group = "EnchantmentStormbindAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3823033989] = { "Stormbind has 16% increased Area of Effect" }, } }, + ["EnchantmentStormbindAreaOfEffect2"] = { affix = "Enchantment Stormbind Area of Effect 2", "Stormbind has 24% increased Area of Effect", statOrder = { 10252 }, level = 75, group = "EnchantmentStormbindAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3823033989] = { "Stormbind has 24% increased Area of Effect" }, } }, + ["EnchantmentStormbindDamage1"] = { affix = "Enchantment Stormbind Damage 1", "Stormbind deals 25% increased Damage", statOrder = { 10253 }, level = 66, group = "EnchantmentStormbindDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1235531589] = { "Stormbind deals 25% increased Damage" }, } }, + ["EnchantmentStormbindDamage2_"] = { affix = "Enchantment Stormbind Damage 2", "Stormbind deals 40% increased Damage", statOrder = { 10253 }, level = 75, group = "EnchantmentStormbindDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1235531589] = { "Stormbind deals 40% increased Damage" }, } }, + ["EnchantmentRuneBlastTeleport1__"] = { affix = "Enchantment Rune Blast Teleport 1", "Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 1 second", statOrder = { 9948 }, level = 66, group = "EnchantmentRuneBlastTeleport1000", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1296244953] = { "Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 1 second" }, } }, + ["EnchantmentRuneBlastTeleport2_"] = { affix = "Enchantment Rune Blast Teleport 2", "Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 1.5 seconds", statOrder = { 9949 }, level = 75, group = "EnchantmentRuneBlastTeleport1500", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [242209782] = { "Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 1.5 seconds" }, } }, + ["EnchantmentSpellslingerManaReservation1___"] = { affix = "Enchantment Spellslinger Reservation 1", "20% increased Mana Reservation Efficiency of Skills Supported by Spellslinger", statOrder = { 10199 }, level = 66, group = "EnchantmentSpellslingerManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "attack", "caster" }, tradeHashes = { [1341061286] = { "20% increased Mana Reservation Efficiency of Skills Supported by Spellslinger" }, } }, + ["EnchantmentSpellslingerManaReservation2"] = { affix = "Enchantment Spellslinger Reservation 2", "30% increased Mana Reservation Efficiency of Skills Supported by Spellslinger", statOrder = { 10199 }, level = 75, group = "EnchantmentSpellslingerManaReservation", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "attack", "caster" }, tradeHashes = { [1341061286] = { "30% increased Mana Reservation Efficiency of Skills Supported by Spellslinger" }, } }, + ["EnchantmentSpellslingerManaReservationEfficiency1"] = { affix = "Enchantment Spellslinger Reservation 1", "20% increased Mana Reservation Efficiency of Skills Supported by Spellslinger", statOrder = { 10200 }, level = 66, group = "EnchantmentSpellslingerManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "attack", "caster" }, tradeHashes = { [3305838454] = { "20% increased Mana Reservation Efficiency of Skills Supported by Spellslinger" }, } }, + ["EnchantmentSpellslingerManaReservationEfficiency2"] = { affix = "Enchantment Spellslinger Reservation 2", "30% increased Mana Reservation Efficiency of Skills Supported by Spellslinger", statOrder = { 10200 }, level = 75, group = "EnchantmentSpellslingerManaReservationEfficiency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana", "attack", "caster" }, tradeHashes = { [3305838454] = { "30% increased Mana Reservation Efficiency of Skills Supported by Spellslinger" }, } }, + ["EnchantmentSpellslingerCooldownRecovery1_"] = { affix = "Enchantment Spellslinger Cooldown Recovery 1", "Skills Supported by Spellslinger have 20% increased Cooldown Recovery Rate", statOrder = { 10198 }, level = 66, group = "EnchantmentSpellslingerCooldownRecovery", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "caster" }, tradeHashes = { [465162370] = { "Skills Supported by Spellslinger have 20% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentSpellslingerCooldownRecovery2_"] = { affix = "Enchantment Spellslinger Cooldown Recovery 2", "Skills Supported by Spellslinger have 30% increased Cooldown Recovery Rate", statOrder = { 10198 }, level = 75, group = "EnchantmentSpellslingerCooldownRecovery", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "caster" }, tradeHashes = { [465162370] = { "Skills Supported by Spellslinger have 30% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentWinterBrandDamage1"] = { affix = "Enchantment Winter Brand Damage 1", "Wintertide Brand deals 25% increased Damage", statOrder = { 10620 }, level = 66, group = "EnchantmentWinterBrandDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [770334536] = { "Wintertide Brand deals 25% increased Damage" }, } }, + ["EnchantmentWinterBrandDamage2"] = { affix = "Enchantment Winter Brand Damage 2", "Wintertide Brand deals 40% increased Damage", statOrder = { 10620 }, level = 75, group = "EnchantmentWinterBrandDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [770334536] = { "Wintertide Brand deals 40% increased Damage" }, } }, + ["EnchantmentWinterBrandStages1"] = { affix = "Enchantment Winter Brand Stages 1", "Wintertide Brand has +2 to maximum Stages", statOrder = { 10621 }, level = 66, group = "EnchantmentWinterBrandStages", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [35081783] = { "Wintertide Brand has +2 to maximum Stages" }, } }, + ["EnchantmentWinterBrandStages2__"] = { affix = "Enchantment Winter Brand Stages 2", "Wintertide Brand has +4 to maximum Stages", statOrder = { 10621 }, level = 75, group = "EnchantmentWinterBrandStages", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [35081783] = { "Wintertide Brand has +4 to maximum Stages" }, } }, + ["EnchantmentWinterBrandChillEfffect1"] = { affix = "Enchantment Winter Brand Chill Efffect 1", "Wintertide Brand has 25% increased Chill Effect", statOrder = { 10619 }, level = 66, group = "EnchantmentWinterBrandChillEfffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "caster", "ailment" }, tradeHashes = { [1831757355] = { "Wintertide Brand has 25% increased Chill Effect" }, } }, + ["EnchantmentWinterBrandChillEfffect2"] = { affix = "Enchantment Winter Brand Chill Efffect 2", "Wintertide Brand has 40% increased Chill Effect", statOrder = { 10619 }, level = 75, group = "EnchantmentWinterBrandChillEfffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "caster", "ailment" }, tradeHashes = { [1831757355] = { "Wintertide Brand has 40% increased Chill Effect" }, } }, + ["EnchantmentPenanceBrandDamage1"] = { affix = "Enchantment Penance Brand Damage 1", "Penance Brand deals 25% increased Damage", statOrder = { 9593 }, level = 66, group = "EnchantmentPenanceBrandDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [610562666] = { "Penance Brand deals 25% increased Damage" }, } }, + ["EnchantmentPenanceBrandDamage2"] = { affix = "Enchantment Penance Brand Damage 2", "Penance Brand deals 40% increased Damage", statOrder = { 9593 }, level = 75, group = "EnchantmentPenanceBrandDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [610562666] = { "Penance Brand deals 40% increased Damage" }, } }, + ["EnchantmentPenanceBrandCastSpeed1_"] = { affix = "Enchantment Penance Brand Cast Speed 1", "Penance Brand has 8% increased Cast Speed", statOrder = { 9592 }, level = 66, group = "EnchantmentPenanceBrandCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [709541481] = { "Penance Brand has 8% increased Cast Speed" }, } }, + ["EnchantmentPenanceBrandCastSpeed2"] = { affix = "Enchantment Penance Brand Cast Speed 2", "Penance Brand has 12% increased Cast Speed", statOrder = { 9592 }, level = 75, group = "EnchantmentPenanceBrandCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [709541481] = { "Penance Brand has 12% increased Cast Speed" }, } }, + ["EnchantmentPenanceBrandRadius1"] = { affix = "Enchantment Penance Brand Radius 1", "Penance Brand has 16% increased Area of Effect", statOrder = { 9591 }, level = 66, group = "EnchantmentPenanceBrandRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1486948114] = { "Penance Brand has 16% increased Area of Effect" }, } }, + ["EnchantmentPenanceBrandRadius2"] = { affix = "Enchantment Penance Brand Radius 2", "Penance Brand has 24% increased Area of Effect", statOrder = { 9591 }, level = 75, group = "EnchantmentPenanceBrandRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1486948114] = { "Penance Brand has 24% increased Area of Effect" }, } }, + ["EnchantmentEarthshatterDamage1"] = { affix = "Enchantment Earthshatter Damage 1", "Earthshatter deals 25% increased Damage", statOrder = { 6288 }, level = 66, group = "EnchantmentEarthshatterDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [335520087] = { "Earthshatter deals 25% increased Damage" }, } }, + ["EnchantmentEarthshatterDamage2"] = { affix = "Enchantment Earthshatter Damage 2", "Earthshatter deals 40% increased Damage", statOrder = { 6288 }, level = 75, group = "EnchantmentEarthshatterDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [335520087] = { "Earthshatter deals 40% increased Damage" }, } }, + ["EnchantmentEarthshatterRadius1___"] = { affix = "Enchantment Earthshatter Radius 1", "Earthshatter has 16% increased Area of Effect", statOrder = { 6287 }, level = 66, group = "EnchantmentEarthshatterRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3469056056] = { "Earthshatter has 16% increased Area of Effect" }, } }, + ["EnchantmentEarthshatterRadius2"] = { affix = "Enchantment Earthshatter Radius 2", "Earthshatter has 24% increased Area of Effect", statOrder = { 6287 }, level = 75, group = "EnchantmentEarthshatterRadius", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3469056056] = { "Earthshatter has 24% increased Area of Effect" }, } }, + ["EnchantmentEarthshatterSpikes1"] = { affix = "Enchantment Earthshatter Additional Spike 1", "Earthshatter creates +1 fissures", statOrder = { 10206 }, level = 75, group = "EnchantmentEarthshatterSpikes", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [701215561] = { "Earthshatter creates +1 fissures" }, } }, + ["EnchantmentArcanistBrandCastSpeed1"] = { affix = "Enchantment Arcanist Brand Cast Speed 1", "Arcanist Brand has 8% increased Cast Speed", statOrder = { 4710 }, level = 66, group = "EnchantmentArcanistBrandCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [1147445274] = { "Arcanist Brand has 8% increased Cast Speed" }, } }, + ["EnchantmentArcanistBrandCastSpeed2__"] = { affix = "Enchantment Arcanist Brand Cast Speed 2", "Arcanist Brand has 12% increased Cast Speed", statOrder = { 4710 }, level = 75, group = "EnchantmentArcanistBrandCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [1147445274] = { "Arcanist Brand has 12% increased Cast Speed" }, } }, + ["EnchantmentArcanistBrandUnnerve"] = { affix = "Enchantment Arcanist Brand Unnerve 1", "Spells Triggered by Arcanist Brand Unnerve enemies on Hit for 4 seconds", statOrder = { 4711 }, level = 75, group = "EnchantmentArcanistBrandUnnerve", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [1350243490] = { "Spells Triggered by Arcanist Brand Unnerve enemies on Hit for 4 seconds" }, } }, + ["EnchantmentDefianceBannerAuraEffect1"] = { affix = "Enchantment Defiance Banner Aura Effect 1", "Defiance Banner has 25% increased Aura Effect", statOrder = { 6159 }, level = 66, group = "EnchantmentDefianceBannerAuraEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "aura" }, tradeHashes = { [1105773670] = { "Defiance Banner has 25% increased Aura Effect" }, } }, + ["EnchantmentDefianceBannerAuraEffect2"] = { affix = "Enchantment Defiance Banner Aura Effect 2", "Defiance Banner has 40% increased Aura Effect", statOrder = { 6159 }, level = 75, group = "EnchantmentDefianceBannerAuraEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "aura" }, tradeHashes = { [1105773670] = { "Defiance Banner has 40% increased Aura Effect" }, } }, + ["EnchantmentStormRainDamage1"] = { affix = "Enchantment Storm Rain Damage 1", "25% increased Storm Rain Damage", statOrder = { 10250 }, level = 66, group = "EnchantmentStormRainDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1463790510] = { "25% increased Storm Rain Damage" }, } }, + ["EnchantmentStormRainDamage2"] = { affix = "Enchantment Storm Rain Damage 2", "40% increased Storm Rain Damage", statOrder = { 10250 }, level = 75, group = "EnchantmentStormRainDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1463790510] = { "40% increased Storm Rain Damage" }, } }, + ["EnchantmentStormRainFrequency1_"] = { affix = "Enchantment Storm Rain Frequency 1", "Storm Rain has 25% increased Beam frequency", statOrder = { 9722 }, level = 66, group = "EnchantmentStormRainFrequency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1799087078] = { "Storm Rain has 25% increased Beam frequency" }, } }, + ["EnchantmentStormRainFrequency2_"] = { affix = "Enchantment Storm Rain Frequency 2", "Storm Rain has 40% increased Beam frequency", statOrder = { 9722 }, level = 75, group = "EnchantmentStormRainFrequency", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1799087078] = { "Storm Rain has 40% increased Beam frequency" }, } }, + ["EnchantmentStormRainAdditionalArrow1_"] = { affix = "Enchantment Storm Rain Additional Arrow 1", "Storm Rain fires an additional Arrow", statOrder = { 10251 }, level = 75, group = "EnchantmentStormRainAdditionalArrow", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3548112418] = { "Storm Rain fires an additional Arrow" }, } }, + ["EnchantmentRageVortexDamage1"] = { affix = "Enchantment Rage Vortex Damage 1", "25% increased Rage Vortex Damage", statOrder = { 9801 }, level = 66, group = "EnchantmentRageVortexDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3153431030] = { "25% increased Rage Vortex Damage" }, } }, + ["EnchantmentRageVortexDamage2__"] = { affix = "Enchantment Rage Vortex Damage 2", "40% increased Rage Vortex Damage", statOrder = { 9801 }, level = 75, group = "EnchantmentRageVortexDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3153431030] = { "40% increased Rage Vortex Damage" }, } }, + ["EnchantmentRageVortexAreaOfEffect1"] = { affix = "Enchantment Rage Vortex Area of Effect 1", "16% increased Rage Vortex Area of Effect", statOrder = { 9800 }, level = 66, group = "EnchantmentRageVortexAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3988628118] = { "16% increased Rage Vortex Area of Effect" }, } }, + ["EnchantmentRageVortexAreaOfEffect2"] = { affix = "Enchantment Rage Vortex Area of Effect 2", "24% increased Rage Vortex Area of Effect", statOrder = { 9800 }, level = 75, group = "EnchantmentRageVortexAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3988628118] = { "24% increased Rage Vortex Area of Effect" }, } }, + ["EnchantmentRageVortexSacrificeMoreRage1"] = { affix = "Enchantment Rage Vortex Rage Sacrificed 1", "Rage Vortex Sacrifices +3% of Rage", statOrder = { 9799 }, level = 66, group = "EnchantmentRageVortexSacrificeMoreRage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1957790343] = { "Rage Vortex Sacrifices +3% of Rage" }, } }, + ["EnchantmentRageVortexSacrificeMoreRage2"] = { affix = "Enchantment Rage Vortex Rage Sacrificed 2", "Rage Vortex Sacrifices +5% of Rage", statOrder = { 9799 }, level = 75, group = "EnchantmentRageVortexSacrificeMoreRage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1957790343] = { "Rage Vortex Sacrifices +5% of Rage" }, } }, + ["EnchantmentShieldCrushDamage1_"] = { affix = "Enchantment Shield Crush Damage 1", "25% increased Shield Crush Damage", statOrder = { 10002 }, level = 66, group = "EnchantmentShieldCrushDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1451671945] = { "25% increased Shield Crush Damage" }, } }, + ["EnchantmentShieldCrushDamage2"] = { affix = "Enchantment Shield Crush Damage 2", "40% increased Shield Crush Damage", statOrder = { 10002 }, level = 75, group = "EnchantmentShieldCrushDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1451671945] = { "40% increased Shield Crush Damage" }, } }, + ["EnchantmentShieldCrushAttackSpeed1"] = { affix = "Enchantment Shield Crush Attack Speed 1", "10% increased Shield Crush Attack Speed", statOrder = { 10001 }, level = 66, group = "EnchantmentShieldCrushAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1948292587] = { "10% increased Shield Crush Attack Speed" }, } }, + ["EnchantmentShieldCrushAttackSpeed2"] = { affix = "Enchantment Shield Crush Attack Speed 2", "15% increased Shield Crush Attack Speed", statOrder = { 10001 }, level = 75, group = "EnchantmentShieldCrushAttackSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1948292587] = { "15% increased Shield Crush Attack Speed" }, } }, + ["EnchantmentShieldCrushCentralConeArea1"] = { affix = "Enchantment Shield Crush Central Cone Area 1", "Shield Crush central wave has 16% more Area of Effect", statOrder = { 10003 }, level = 66, group = "EnchantmentShieldCrushCentralConeArea", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [734712401] = { "Shield Crush central wave has 16% more Area of Effect" }, } }, + ["EnchantmentShieldCrushCentralConeArea2"] = { affix = "Enchantment Shield Crush Central Cone Area 2", "Shield Crush central wave has 24% more Area of Effect", statOrder = { 10003 }, level = 75, group = "EnchantmentShieldCrushCentralConeArea", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [734712401] = { "Shield Crush central wave has 24% more Area of Effect" }, } }, + ["EnchantmentSummonedReaperDamage1"] = { affix = "Enchantment Summoned Reaper Damage 1", "Summoned Reaper deals 25% increased Damage", statOrder = { 10308 }, level = 66, group = "EnchantmentSummonedReaperDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [2516903912] = { "Summoned Reaper deals 25% increased Damage" }, } }, + ["EnchantmentSummonedReaperDamage2"] = { affix = "Enchantment Summoned Reaper Damage 2", "Summoned Reaper deals 40% increased Damage", statOrder = { 10308 }, level = 75, group = "EnchantmentSummonedReaperDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [2516903912] = { "Summoned Reaper deals 40% increased Damage" }, } }, + ["EnchantmentSummonedReaperPhysicalDamageOverTimeMultiplier1_"] = { affix = "Enchantment Summoned Reaper Physical Damage over time Multiplier 1", "Summoned Reaper has +12% to Physical Damage over Time Multiplier", statOrder = { 10309 }, level = 66, group = "EnchantmentSummonedReaperPhysicalDamageOverTimeMultiplier", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [1975621585] = { "Summoned Reaper has +12% to Physical Damage over Time Multiplier" }, } }, + ["EnchantmentSummonedReaperPhysicalDamageOverTimeMultiplier2"] = { affix = "Enchantment Summoned Reaper Physical Damage over time Multiplier 2", "Summoned Reaper has +20% to Physical Damage over Time Multiplier", statOrder = { 10309 }, level = 75, group = "EnchantmentSummonedReaperPhysicalDamageOverTimeMultiplier", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [1975621585] = { "Summoned Reaper has +20% to Physical Damage over Time Multiplier" }, } }, + ["EnchantmentSummonReaperCooldownRecovery1_"] = { affix = "Enchantment Summon Reaper Cooldown Recovery 1", "20% increased Summon Reaper Cooldown Recovery Rate", statOrder = { 10299 }, level = 66, group = "EnchantmentSummonReaperCooldownRecovery", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [82475304] = { "20% increased Summon Reaper Cooldown Recovery Rate" }, } }, + ["EnchantmentSummonReaperCooldownRecovery2"] = { affix = "Enchantment Summon Reaper Cooldown Recovery 2", "30% increased Summon Reaper Cooldown Recovery Rate", statOrder = { 10299 }, level = 75, group = "EnchantmentSummonReaperCooldownRecovery", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [82475304] = { "30% increased Summon Reaper Cooldown Recovery Rate" }, } }, + ["EnchantmentBoneshatterDamage1"] = { affix = "Enchantment Boneshatter Damage 1", "25% increased Boneshatter Damage", statOrder = { 5255 }, level = 66, group = "EnchantmentBoneshatterDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2384264970] = { "25% increased Boneshatter Damage" }, } }, + ["EnchantmentBoneshatterDamage2"] = { affix = "Enchantment Boneshatter Damage 2", "40% increased Boneshatter Damage", statOrder = { 5255 }, level = 75, group = "EnchantmentBoneshatterDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2384264970] = { "40% increased Boneshatter Damage" }, } }, + ["EnchantmentBoneshatterStunDuration1"] = { affix = "Enchantment Boneshatter Stun Duration 1", "25% increased Boneshatter Stun Duration", statOrder = { 5256 }, level = 66, group = "EnchantmentBoneshatterStunDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2742093846] = { "25% increased Boneshatter Stun Duration" }, } }, + ["EnchantmentBoneshatterStunDuration2_"] = { affix = "Enchantment Boneshatter Stun Duration 2", "40% increased Boneshatter Stun Duration", statOrder = { 5256 }, level = 75, group = "EnchantmentBoneshatterStunDuration", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2742093846] = { "40% increased Boneshatter Stun Duration" }, } }, + ["EnchantmentBoneshatterAdditionalTrauma1"] = { affix = "Enchantment Boneshatter Chance for Additional Trauma 1", "Boneshatter has 16% chance to grant +1 Trauma", statOrder = { 5254 }, level = 66, group = "EnchantmentBoneshatterAdditionalTrauma", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2870283358] = { "Boneshatter has 16% chance to grant +1 Trauma" }, } }, + ["EnchantmentBoneshatterAdditionalTrauma2"] = { affix = "Enchantment Boneshatter Chance for Additional Trauma 2", "Boneshatter has 24% chance to grant +1 Trauma", statOrder = { 5254 }, level = 75, group = "EnchantmentBoneshatterAdditionalTrauma", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2870283358] = { "Boneshatter has 24% chance to grant +1 Trauma" }, } }, + ["EnchantmentAmbushCooldownRecovery1"] = { affix = "Enchantment Ambush Cooldown Recovery 1", "20% increased Ambush Cooldown Recovery Rate", statOrder = { 4661 }, level = 66, group = "EnchantmentAmbushCooldownRecovery", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2977107166] = { "20% increased Ambush Cooldown Recovery Rate" }, } }, + ["EnchantmentAmbushCooldownRecovery2__"] = { affix = "Enchantment Ambush Cooldown Recovery 2", "30% increased Ambush Cooldown Recovery Rate", statOrder = { 4661 }, level = 75, group = "EnchantmentAmbushCooldownRecovery", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2977107166] = { "30% increased Ambush Cooldown Recovery Rate" }, } }, + ["EnchantmentAmbushCriticalStrikeMultiplier1"] = { affix = "Enchantment Ambush Critical Strike Multiplier 1", "Attacks Exerted by Ambush have +25% to Critical Strike Multiplier", statOrder = { 4660 }, level = 66, group = "EnchantmentAmbushCriticalStrikeMultiplier", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2343571547] = { "Attacks Exerted by Ambush have +25% to Critical Strike Multiplier" }, } }, + ["EnchantmentAmbushCriticalStrikeMultiplier2__"] = { affix = "Enchantment Ambush Critical Strike Multiplier 2", "Attacks Exerted by Ambush have +40% to Critical Strike Multiplier", statOrder = { 4660 }, level = 75, group = "EnchantmentAmbushCriticalStrikeMultiplier", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2343571547] = { "Attacks Exerted by Ambush have +40% to Critical Strike Multiplier" }, } }, + ["EnchantmentGalvanicFieldDamage1"] = { affix = "Enchantment Galvanic Field Damage 1", "Galvanic Field deals 25% increased Damage", statOrder = { 6856 }, level = 66, group = "EnchantmentGalvanicFieldDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3821213705] = { "Galvanic Field deals 25% increased Damage" }, } }, + ["EnchantmentGalvanicFieldDamage2"] = { affix = "Enchantment Galvanic Field Damage 2", "Galvanic Field deals 40% increased Damage", statOrder = { 6856 }, level = 75, group = "EnchantmentGalvanicFieldDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3821213705] = { "Galvanic Field deals 40% increased Damage" }, } }, + ["EnchantmentGalvanicFieldCastSpeed1"] = { affix = "Enchantment Galvanic Field Cast Speed 1", "Galvanic Field has 8% increased Cast Speed", statOrder = { 6855 }, level = 66, group = "EnchantmentGalvanicFieldCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2364563825] = { "Galvanic Field has 8% increased Cast Speed" }, } }, + ["EnchantmentGalvanicFieldCastSpeed2"] = { affix = "Enchantment Galvanic Field Cast Speed 2", "Galvanic Field has 12% increased Cast Speed", statOrder = { 6855 }, level = 75, group = "EnchantmentGalvanicFieldCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2364563825] = { "Galvanic Field has 12% increased Cast Speed" }, } }, + ["EnchantmentGalvanicFieldChain1"] = { affix = "Enchantment Galvanic Field Additional Chain 1", "Galvanic Field Chains an additional time", statOrder = { 6857 }, level = 75, group = "EnchantmentGalvanicFieldChain", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [3893203185] = { "Galvanic Field Chains an additional time" }, } }, + ["EnchantmentLightningConduitDamage1"] = { affix = "Enchantment Lightning Conduit Damage 1", "Lightning Conduit deals 25% increased Damage", statOrder = { 7443 }, level = 66, group = "EnchantmentLightningConduitDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2511245659] = { "Lightning Conduit deals 25% increased Damage" }, } }, + ["EnchantmentLightningConduitDamage2"] = { affix = "Enchantment Lightning Conduit Damage 2", "Lightning Conduit deals 40% increased Damage", statOrder = { 7443 }, level = 75, group = "EnchantmentLightningConduitDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2511245659] = { "Lightning Conduit deals 40% increased Damage" }, } }, + ["EnchantmentLightningConduitCastSpeed1"] = { affix = "Enchantment Lightning Conduit Cast Speed 1", "Lightning Conduit has 8% increased Cast Speed", statOrder = { 7442 }, level = 66, group = "EnchantmentLightningConduitCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2437571727] = { "Lightning Conduit has 8% increased Cast Speed" }, } }, + ["EnchantmentLightningConduitCastSpeed2"] = { affix = "Enchantment Lightning Conduit Cast Speed 2", "Lightning Conduit has 12% increased Cast Speed", statOrder = { 7442 }, level = 75, group = "EnchantmentLightningConduitCastSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2437571727] = { "Lightning Conduit has 12% increased Cast Speed" }, } }, + ["EnchantmentLightningConduitArea1"] = { affix = "Enchantment Lightning Conduit Area of Effect 1", "Lightning Conduit has 16% increased Area of Effect", statOrder = { 7441 }, level = 66, group = "EnchantmentLightningConduitArea", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2252888886] = { "Lightning Conduit has 16% increased Area of Effect" }, } }, + ["EnchantmentLightningConduitArea2"] = { affix = "Enchantment Lightning Conduit Area of Effect 2", "Lightning Conduit has 24% increased Area of Effect", statOrder = { 7441 }, level = 75, group = "EnchantmentLightningConduitArea", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster" }, tradeHashes = { [2252888886] = { "Lightning Conduit has 24% increased Area of Effect" }, } }, + ["EnchantmentAlchemistsMarkCurseEffect1"] = { affix = "Enchantment Alchemist's Mark Curse Effect 1", "20% increased Alchemist's Mark Curse Effect", statOrder = { 4620 }, level = 66, group = "EnchantmentAlchemistsMarkCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3583185303] = { "20% increased Alchemist's Mark Curse Effect" }, } }, + ["EnchantmentAlchemistsMarkCurseEffect2"] = { affix = "Enchantment Alchemist's Mark Curse Effect 2", "30% increased Alchemist's Mark Curse Effect", statOrder = { 4620 }, level = 75, group = "EnchantmentAlchemistsMarkCurseEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3583185303] = { "30% increased Alchemist's Mark Curse Effect" }, } }, + ["EnchantmentVolcanicFissureDamage1"] = { affix = "Enchantment Volcanic Fissure Damage 1", "Volcanic Fissure deals 25% increased Damage", statOrder = { 10545 }, level = 66, group = "VolcanicFissureDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1124690737] = { "Volcanic Fissure deals 25% increased Damage" }, } }, + ["EnchantmentVolcanicFissureDamage2"] = { affix = "Enchantment Volcanic Fissure Damage 2", "Volcanic Fissure deals 40% increased Damage", statOrder = { 10545 }, level = 75, group = "VolcanicFissureDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1124690737] = { "Volcanic Fissure deals 40% increased Damage" }, } }, + ["EnchantmentVolcanicFissureAdditionalProjectiles1"] = { affix = "Enchantment Volcanic Fissure Additional Projectiles 1", "Volcanic Fissure fires an additional Projectile", statOrder = { 10546 }, level = 66, group = "VolcanicFissureCooldownRecovery", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1460853241] = { "Volcanic Fissure fires an additional Projectile" }, } }, + ["EnchantmentVolcanicFissureAdditionalProjectiles2"] = { affix = "Enchantment Volcanic Fissure Additional Projectiles 2", "Volcanic Fissure fires 2 additional Projectiles", statOrder = { 10546 }, level = 75, group = "VolcanicFissureCooldownRecovery", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1460853241] = { "Volcanic Fissure fires 2 additional Projectiles" }, } }, + ["EnchantmentVolcanicFissureFissureSpeed1"] = { affix = "Enchantment Volcanic Fissure Fissure Speed 1", "Volcanic Fissure travels 60% faster", statOrder = { 10547 }, level = 66, group = "VolcanicFissureFissureSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [373677479] = { "Volcanic Fissure travels 60% faster" }, } }, + ["EnchantmentVolcanicFissureFissureSpeed2"] = { affix = "Enchantment Volcanic Fissure Fissure Speed 2", "Volcanic Fissure travels 80% faster", statOrder = { 10547 }, level = 75, group = "VolcanicFissureFissureSpeed", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [373677479] = { "Volcanic Fissure travels 80% faster" }, } }, + ["EnchantmentFrozenLegionDamage1"] = { affix = "Enchantment Frozen Sweep Damage 1", "Frozen Sweep deals 25% increased Damage", statOrder = { 6692 }, level = 66, group = "FrozenLegionDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1048825825] = { "Frozen Sweep deals 25% increased Damage" }, } }, + ["EnchantmentFrozenLegionDamage2"] = { affix = "Enchantment Frozen Sweep Damage 2", "Frozen Sweep deals 40% increased Damage", statOrder = { 6692 }, level = 75, group = "FrozenLegionDamage", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1048825825] = { "Frozen Sweep deals 40% increased Damage" }, } }, + ["EnchantmentFrozenLegionCooldownRecovery1"] = { affix = "Enchantment Frozen Legion Cooldown Recovery 1", "Frozen Legion has 20% increased Cooldown Recovery Rate", statOrder = { 6689 }, level = 66, group = "FrozenLegionCooldownRecovery", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3809563078] = { "Frozen Legion has 20% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentFrozenLegionCooldownRecovery2"] = { affix = "Enchantment Frozen Legion Cooldown Recovery 2", "Frozen Legion has 30% increased Cooldown Recovery Rate", statOrder = { 6689 }, level = 75, group = "FrozenLegionCooldownRecovery", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3809563078] = { "Frozen Legion has 30% increased Cooldown Recovery Rate" }, } }, + ["EnchantmentFrozenLegionAdditionalCooldowns1"] = { affix = "Enchantment Frozen Legion Additional Cooldown 1", "Frozen Legion has +1 Cooldown Use", statOrder = { 6687 }, level = 66, group = "FrozenLegionAdditionalCooldowns", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2876793597] = { "Frozen Legion has +1 Cooldown Use" }, } }, + ["EnchantmentFrozenLegionAdditionalCooldowns2"] = { affix = "Enchantment Frozen Legion Additional Cooldown 2", "Frozen Legion has +2 Cooldown Uses", statOrder = { 6687 }, level = 75, group = "FrozenLegionAdditionalCooldowns", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2876793597] = { "Frozen Legion has +2 Cooldown Uses" }, } }, + ["EnchantmentEnsnaringArrowDebuffEffect1__"] = { affix = "Enchantment Ensnaring Arrow Debuff Effect 1", "Ensnaring Arrow has 20% increased Debuff Effect", statOrder = { 6466 }, level = 66, group = "EnchantmentEnsnaringArrowDebuffEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1405738574] = { "Ensnaring Arrow has 20% increased Debuff Effect" }, } }, + ["EnchantmentEnsnaringArrowDebuffEffect2_"] = { affix = "Enchantment Ensnaring Arrow Debuff Effect 2", "Ensnaring Arrow has 30% increased Debuff Effect", statOrder = { 6466 }, level = 75, group = "EnchantmentEnsnaringArrowDebuffEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [1405738574] = { "Ensnaring Arrow has 30% increased Debuff Effect" }, } }, + ["EnchantmentEnsnaringArrowAreaOfEffect1"] = { affix = "Enchantment Ensnaring Arrow Area Of Effect 1", "Ensnaring Arrow has 60% increased Area of Effect", statOrder = { 6465 }, level = 66, group = "EnchantmentEnsnaringArrowAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2791271819] = { "Ensnaring Arrow has 60% increased Area of Effect" }, } }, + ["EnchantmentEnsnaringArrowAreaOfEffect2"] = { affix = "Enchantment Ensnaring Arrow Area Of Effect 2", "Ensnaring Arrow has 90% increased Area of Effect", statOrder = { 6465 }, level = 75, group = "EnchantmentEnsnaringArrowAreaOfEffect", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [2791271819] = { "Ensnaring Arrow has 90% increased Area of Effect" }, } }, + ["EnchantmentBurningArrowDebuffEffect1"] = { affix = "Enchantment Burning Arrow Ignite Chance 1", "Burning Arrow has +16% chance to Ignite", statOrder = { 3956 }, level = 66, group = "EnchantmentBurningArrowIgniteChance", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "attack", "ailment" }, tradeHashes = { [2226973351] = { "Burning Arrow has +16% chance to Ignite" }, } }, + ["EnchantmentBurningArrowDebuffEffect2"] = { affix = "Enchantment Burning Arrow Ignite Chance 2", "Burning Arrow has +24% chance to Ignite", statOrder = { 3956 }, level = 75, group = "EnchantmentBurningArrowIgniteChance", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "attack", "ailment" }, tradeHashes = { [2226973351] = { "Burning Arrow has +24% chance to Ignite" }, } }, + ["EnchantmentExplosiveArrowIncreasedDuration1"] = { affix = "Enchantment Explosive Arrow Increased Duration 1", "Explosive Arrow has 25% increased Duration", statOrder = { 6518 }, level = 66, group = "EnchantmentExplosiveArrowDuration", weightKey = { "helmet", "default", }, weightVal = { 50, 0 }, modTags = { "attack" }, tradeHashes = { [3590425794] = { "Explosive Arrow has 25% increased Duration" }, } }, + ["EnchantmentExplosiveArrowIncreasedDuration2"] = { affix = "Enchantment Explosive Arrow Increased Duration 2", "Explosive Arrow has 40% increased Duration", statOrder = { 6518 }, level = 75, group = "EnchantmentExplosiveArrowDuration", weightKey = { "helmet", "default", }, weightVal = { 50, 0 }, modTags = { "attack" }, tradeHashes = { [3590425794] = { "Explosive Arrow has 40% increased Duration" }, } }, + ["EnchantmentExplosiveArrowReducedDuration1"] = { affix = "Enchantment Explosive Arrow Reduced Duration 1", "Explosive Arrow has 20% reduced Duration", statOrder = { 6518 }, level = 66, group = "EnchantmentExplosiveArrowDuration", weightKey = { "helmet", "default", }, weightVal = { 50, 0 }, modTags = { "attack" }, tradeHashes = { [3590425794] = { "Explosive Arrow has 20% reduced Duration" }, } }, + ["EnchantmentExplosiveArrowReducedDuration2"] = { affix = "Enchantment Explosive Arrow Reduced Duration 2", "Explosive Arrow has 30% reduced Duration", statOrder = { 6518 }, level = 75, group = "EnchantmentExplosiveArrowDuration", weightKey = { "helmet", "default", }, weightVal = { 50, 0 }, modTags = { "attack" }, tradeHashes = { [3590425794] = { "Explosive Arrow has 30% reduced Duration" }, } }, + ["EnchantmentArcaneSurge"] = { affix = "", "15% increased Area of Effect while you have Arcane Surge", statOrder = { 4739 }, level = 83, group = "EnchantmentArcaneSurge", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1406617410] = { "15% increased Area of Effect while you have Arcane Surge" }, } }, + ["EnchantmentFortify_"] = { affix = "", "+300 to Armour while Fortified", statOrder = { 4767 }, level = 83, group = "EnchantmentFortify", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [153004860] = { "+300 to Armour while Fortified" }, } }, + ["EnchantmentRage_"] = { affix = "", "Recover 2% of Life when you Kill an Enemy while you have Rage", statOrder = { 9865 }, level = 83, group = "EnchantmentRage", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3305072079] = { "Recover 2% of Life when you Kill an Enemy while you have Rage" }, } }, + ["EnchantmentPhasing__"] = { affix = "", "+300 to Evasion Rating while you have Phasing", statOrder = { 6491 }, level = 83, group = "EnchantmentPhasing", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3169671355] = { "+300 to Evasion Rating while you have Phasing" }, } }, + ["EnchantmentElusive"] = { affix = "", "20% chance to Avoid Elemental Ailments while you have Elusive", statOrder = { 4941 }, level = 83, group = "EnchantmentElusive", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [2662268382] = { "20% chance to Avoid Elemental Ailments while you have Elusive" }, } }, + ["EnchantmentConsecratedGround"] = { affix = "", "30% reduced Effect of Curses on you while on Consecrated Ground", statOrder = { 5996 }, level = 83, group = "EnchantmentConsecratedGround", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3444629796] = { "30% reduced Effect of Curses on you while on Consecrated Ground" }, } }, + ["EnchantmentOnslaught_"] = { affix = "", "30% increased Accuracy Rating while you have Onslaught", statOrder = { 4519 }, level = 83, group = "EnchantmentOnslaught", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2593021351] = { "30% increased Accuracy Rating while you have Onslaught" }, } }, + ["EnchantmentHinder"] = { affix = "", "Enemies Hindered by you have 50% reduced Life Regeneration rate", statOrder = { 6411 }, level = 83, group = "EnchantmentHinder", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3709502856] = { "Enemies Hindered by you have 50% reduced Life Regeneration rate" }, } }, + ["EnchantmentExposure"] = { affix = "", "Elemental Ailments inflicted on Enemies Exposed by you have 20% increased Duration", statOrder = { 6410 }, level = 83, group = "EnchantmentExposure", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [261996832] = { "Elemental Ailments inflicted on Enemies Exposed by you have 20% increased Duration" }, } }, + ["EnchantmentMaim"] = { affix = "", "Enemies Maimed by you take 8% increased Damage Over Time", statOrder = { 6415 }, level = 83, group = "EnchantmentMaim", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2745149002] = { "Enemies Maimed by you take 8% increased Damage Over Time" }, } }, + ["EnchantmentTaunt"] = { affix = "", "Enemies Taunted by you deal 5% less Area Damage", statOrder = { 5067 }, level = 83, group = "EnchantmentTaunt", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1684204928] = { "Enemies Taunted by you deal 5% less Area Damage" }, } }, + ["EnchantmentWither_"] = { affix = "", "Enemies Withered by you have -6% to all Resistances", statOrder = { 6417 }, level = 83, group = "EnchantmentWither", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1032614900] = { "Enemies Withered by you have -6% to all Resistances" }, } }, + ["EnchantmentBlind"] = { affix = "", "Enemies Blinded by you have 30% reduced Critical Strike Chance", statOrder = { 6405 }, level = 83, group = "EnchantmentBlind", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [4216282855] = { "Enemies Blinded by you have 30% reduced Critical Strike Chance" }, } }, + ["EnchantmentIntimidate"] = { affix = "", "Enemies Intimidated by you have 20% increased duration of stuns against them", statOrder = { 6414 }, level = 83, group = "EnchantmentIntimidate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1919892065] = { "Enemies Intimidated by you have 20% increased duration of stuns against them" }, } }, + ["EnchantmentUnnerve"] = { affix = "", "Hits against Enemies Unnerved by you have 50% increased Spell Critical Strike Chance", statOrder = { 6416 }, level = 83, group = "EnchantmentUnnerve", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [2090693207] = { "Hits against Enemies Unnerved by you have 50% increased Spell Critical Strike Chance" }, } }, +} \ No newline at end of file diff --git a/src/Data/ModExplicit.lua b/src/Data/ModExplicit.lua index b72d7ea205b..61fd805e1a8 100644 --- a/src/Data/ModExplicit.lua +++ b/src/Data/ModExplicit.lua @@ -281,23 +281,23 @@ return { ["ElementalDamagePercent3"] = { type = "Prefix", affix = "Druid's", "(17-24)% increased Elemental Damage", statOrder = { 1980 }, level = 30, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(17-24)% increased Elemental Damage" }, } }, ["ElementalDamagePercent4"] = { type = "Prefix", affix = "Haruspex's", "(25-29)% increased Elemental Damage", statOrder = { 1980 }, level = 60, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(25-29)% increased Elemental Damage" }, } }, ["ElementalDamagePercent5"] = { type = "Prefix", affix = "Harbinger's", "(30-34)% increased Elemental Damage", statOrder = { 1980 }, level = 81, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(30-34)% increased Elemental Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating1"] = { type = "Prefix", affix = "Squire's", "(15-19)% increased Physical Damage", "+(16-20) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 1, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(15-19)% increased Physical Damage" }, [691932474] = { "+(16-20) to Accuracy Rating" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating2"] = { type = "Prefix", affix = "Journeyman's", "(20-24)% increased Physical Damage", "+(21-46) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 11, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(20-24)% increased Physical Damage" }, [691932474] = { "+(21-46) to Accuracy Rating" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating3"] = { type = "Prefix", affix = "Reaver's", "(25-34)% increased Physical Damage", "+(47-72) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 23, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [691932474] = { "+(47-72) to Accuracy Rating" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating4"] = { type = "Prefix", affix = "Mercenary's", "(35-44)% increased Physical Damage", "+(73-97) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 35, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [691932474] = { "+(73-97) to Accuracy Rating" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating5"] = { type = "Prefix", affix = "Champion's", "(45-54)% increased Physical Damage", "+(98-123) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 46, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [691932474] = { "+(98-123) to Accuracy Rating" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating6"] = { type = "Prefix", affix = "Conqueror's", "(55-64)% increased Physical Damage", "+(124-149) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 60, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [691932474] = { "+(124-149) to Accuracy Rating" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating7"] = { type = "Prefix", affix = "Emperor's", "(65-74)% increased Physical Damage", "+(150-174) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 73, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-74)% increased Physical Damage" }, [691932474] = { "+(150-174) to Accuracy Rating" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating8"] = { type = "Prefix", affix = "Dictator's", "(75-79)% increased Physical Damage", "+(175-200) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 83, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(75-79)% increased Physical Damage" }, [691932474] = { "+(175-200) to Accuracy Rating" }, } }, - ["LocalIncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(40-49)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(40-49)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(50-64)% increased Physical Damage", statOrder = { 1232 }, level = 11, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(50-64)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(65-84)% increased Physical Damage", statOrder = { 1232 }, level = 23, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-84)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Vicious", "(85-109)% increased Physical Damage", statOrder = { 1232 }, level = 35, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(85-109)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent5"] = { type = "Prefix", affix = "Bloodthirsty", "(110-134)% increased Physical Damage", statOrder = { 1232 }, level = 46, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(110-134)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent6"] = { type = "Prefix", affix = "Cruel", "(135-154)% increased Physical Damage", statOrder = { 1232 }, level = 60, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(135-154)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent7"] = { type = "Prefix", affix = "Tyrannical", "(155-169)% increased Physical Damage", statOrder = { 1232 }, level = 73, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(155-169)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent8"] = { type = "Prefix", affix = "Merciless", "(170-179)% increased Physical Damage", statOrder = { 1232 }, level = 83, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(170-179)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamageEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (9-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1232, 1935 }, level = 1, group = "LocalPhysicalDamagePercentAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, tradeHashes = { [1805374733] = { "(155-169)% increased Physical Damage" }, [3319896421] = { "Gain (9-10)% of Physical Damage as Extra Chaos Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating1"] = { type = "Prefix", affix = "Squire's", "(15-19)% increased Physical Damage", "+(16-20) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 1, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(16-20) to Accuracy Rating" }, [1509134228] = { "(15-19)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating2"] = { type = "Prefix", affix = "Journeyman's", "(20-24)% increased Physical Damage", "+(21-46) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 11, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(21-46) to Accuracy Rating" }, [1509134228] = { "(20-24)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating3"] = { type = "Prefix", affix = "Reaver's", "(25-34)% increased Physical Damage", "+(47-72) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 23, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(47-72) to Accuracy Rating" }, [1509134228] = { "(25-34)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating4"] = { type = "Prefix", affix = "Mercenary's", "(35-44)% increased Physical Damage", "+(73-97) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 35, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(73-97) to Accuracy Rating" }, [1509134228] = { "(35-44)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating5"] = { type = "Prefix", affix = "Champion's", "(45-54)% increased Physical Damage", "+(98-123) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 46, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(98-123) to Accuracy Rating" }, [1509134228] = { "(45-54)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating6"] = { type = "Prefix", affix = "Conqueror's", "(55-64)% increased Physical Damage", "+(124-149) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 60, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(124-149) to Accuracy Rating" }, [1509134228] = { "(55-64)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating7"] = { type = "Prefix", affix = "Emperor's", "(65-74)% increased Physical Damage", "+(150-174) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 73, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(150-174) to Accuracy Rating" }, [1509134228] = { "(65-74)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating8"] = { type = "Prefix", affix = "Dictator's", "(75-79)% increased Physical Damage", "+(175-200) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 83, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(175-200) to Accuracy Rating" }, [1509134228] = { "(75-79)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(40-49)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(40-49)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(50-64)% increased Physical Damage", statOrder = { 1232 }, level = 11, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(50-64)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(65-84)% increased Physical Damage", statOrder = { 1232 }, level = 23, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(65-84)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Vicious", "(85-109)% increased Physical Damage", statOrder = { 1232 }, level = 35, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(85-109)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent5"] = { type = "Prefix", affix = "Bloodthirsty", "(110-134)% increased Physical Damage", statOrder = { 1232 }, level = 46, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(110-134)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent6"] = { type = "Prefix", affix = "Cruel", "(135-154)% increased Physical Damage", statOrder = { 1232 }, level = 60, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(135-154)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent7"] = { type = "Prefix", affix = "Tyrannical", "(155-169)% increased Physical Damage", statOrder = { 1232 }, level = 73, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(155-169)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent8"] = { type = "Prefix", affix = "Merciless", "(170-179)% increased Physical Damage", statOrder = { 1232 }, level = 83, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(170-179)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamageEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (9-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1232, 1935 }, level = 1, group = "LocalPhysicalDamagePercentAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, tradeHashes = { [3319896421] = { "Gain (9-10)% of Physical Damage as Extra Chaos Damage" }, [1509134228] = { "(155-169)% increased Physical Damage" }, } }, ["IncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(8-12)% increased Global Physical Damage", statOrder = { 1231 }, level = 4, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(8-12)% increased Global Physical Damage" }, } }, ["IncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(13-17)% increased Global Physical Damage", statOrder = { 1231 }, level = 15, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(13-17)% increased Global Physical Damage" }, } }, ["IncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(18-22)% increased Global Physical Damage", statOrder = { 1231 }, level = 30, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(18-22)% increased Global Physical Damage" }, } }, @@ -1271,13 +1271,13 @@ return { ["ChanceToAvoidShockEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 58, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(47-50)% chance to Avoid being Shocked" }, } }, ["ChanceToAvoidShockEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 74, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(51-55)% chance to Avoid being Shocked" }, } }, ["ChanceToAvoidShockEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 82, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(56-60)% chance to Avoid being Shocked" }, } }, - ["AttackerTakesDamage1"] = { type = "Prefix", affix = "Thorny", "Reflects (1-4) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (1-4) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamage2"] = { type = "Prefix", affix = "Spiny", "Reflects (5-10) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 10, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (5-10) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamage3"] = { type = "Prefix", affix = "Barbed", "Reflects (11-24) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 20, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (11-24) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamage4"] = { type = "Prefix", affix = "Jagged", "Reflects (25-50) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 35, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (25-50) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageEssence5"] = { type = "Prefix", affix = "Essences", "Reflects (51-100) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (51-100) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageEssence6"] = { type = "Prefix", affix = "Essences", "Reflects (101-150) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 74, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (101-150) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageEssence7"] = { type = "Prefix", affix = "Essences", "Reflects (151-200) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 82, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (151-200) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamage1"] = { type = "Prefix", affix = "Thorny", "Reflects (1-4) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (1-4) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamage2"] = { type = "Prefix", affix = "Spiny", "Reflects (5-10) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 10, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (5-10) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamage3"] = { type = "Prefix", affix = "Barbed", "Reflects (11-24) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 20, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (11-24) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamage4"] = { type = "Prefix", affix = "Jagged", "Reflects (25-50) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 35, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (25-50) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageEssence5"] = { type = "Prefix", affix = "Essences", "Reflects (51-100) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (51-100) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageEssence6"] = { type = "Prefix", affix = "Essences", "Reflects (101-150) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 74, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (101-150) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageEssence7"] = { type = "Prefix", affix = "Essences", "Reflects (151-200) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 82, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (151-200) Physical Damage to Melee Attackers" }, } }, ["ChanceToAvoidFreezeEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(39-42)% chance to Avoid being Frozen" }, } }, ["ChanceToAvoidFreezeEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(43-46)% chance to Avoid being Frozen" }, } }, ["ChanceToAvoidFreezeEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(47-50)% chance to Avoid being Frozen" }, } }, @@ -1389,7 +1389,7 @@ return { ["BleedOnHitGainedDexMasterVendorItem"] = { type = "Prefix", affix = "Tora's", "25% chance to cause Bleeding on Hit", statOrder = { 2481 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1401349154] = { "25% chance to cause Bleeding on Hit" }, } }, ["BleedOnHitGainedDexMasterVendorItemUpdated_"] = { type = "Prefix", affix = "Tora's", "25% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "CausesBleedingChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "25% chance to cause Bleeding on Hit" }, } }, ["AlwaysHitsStrDexMasterVendorItem"] = { type = "Prefix", affix = "Vagan's", "Hits can't be Evaded", statOrder = { 2043 }, level = 1, group = "AlwaysHits", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [4126210832] = { "Hits can't be Evaded" }, } }, - ["MapInvasionBossMasterVendorItem"] = { type = "Prefix", affix = "Kirac's", "Area is inhabited by an additional Invasion Boss", statOrder = { 2620 }, level = 1, group = "MapExtraInvasionBosses", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [223497523] = { "" }, [3629113735] = { "" }, [279246355] = { "Area is inhabited by an additional Invasion Boss" }, [2390685262] = { "" }, } }, + ["MapInvasionBossMasterVendorItem"] = { type = "Prefix", affix = "Kirac's", "Area is inhabited by an additional Invasion Boss", statOrder = { 2620 }, level = 1, group = "MapExtraInvasionBosses", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [279246355] = { "Area is inhabited by an additional Invasion Boss" }, } }, ["LightningPenetrationWarbands"] = { type = "Prefix", affix = "Turncoat's", "Damage Penetrates (6-10)% Lightning Resistance", statOrder = { 2984 }, level = 60, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (6-10)% Lightning Resistance" }, } }, ["LightningResistancePenetrationEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2984 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 5% Lightning Resistance" }, } }, ["LightningResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2984 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } }, @@ -1578,8 +1578,8 @@ return { ["SocketedGemsHaveMoreAttackAndCastSpeedEssenceNew1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 16% more Attack and Cast Speed", statOrder = { 550 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack", "caster", "speed", "gem" }, tradeHashes = { [346351023] = { "Socketed Gems have 16% more Attack and Cast Speed" }, } }, ["SocketedGemsAddPercentageOfPhysicalAsLightningEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems gain 50% of Physical Damage as extra Lightning Damage", statOrder = { 557 }, level = 63, group = "SocketedGemsAddPercentageOfPhysicalAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "gem" }, tradeHashes = { [1859937391] = { "Socketed Gems gain 50% of Physical Damage as extra Lightning Damage" }, } }, ["SocketedGemsDealMoreElementalDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Elemental Damage", statOrder = { 553 }, level = 63, group = "SocketedGemsDealMoreElementalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, tradeHashes = { [3835899275] = { "Socketed Gems deal 30% more Elemental Damage" }, } }, - ["ElementalDamageTakenWhileStationaryEssence1"] = { type = "Suffix", affix = "of the Essence", "5% reduced Elemental Damage Taken while stationary", statOrder = { 4312 }, level = 63, group = "ElementalDamageTakenWhileStationary", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [3859593448] = { "5% reduced Elemental Damage Taken while stationary" }, [2936538132] = { "" }, } }, - ["BurningGroundWhileMovingEssence1"] = { type = "Suffix", affix = "of the Essence", "Drops Burning Ground while moving, dealing 2500 Fire Damage per second for 4 seconds", statOrder = { 4309 }, level = 63, group = "BurningGroundWhileMoving", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2876075610] = { "" }, [685387835] = { "" }, [223497523] = { "" }, } }, + ["ElementalDamageTakenWhileStationaryEssence1"] = { type = "Suffix", affix = "of the Essence", "5% reduced Elemental Damage Taken while stationary", statOrder = { 4312 }, level = 63, group = "ElementalDamageTakenWhileStationary", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [3859593448] = { "5% reduced Elemental Damage Taken while stationary" }, } }, + ["BurningGroundWhileMovingEssence1"] = { type = "Suffix", affix = "of the Essence", "Drops Burning Ground while moving, dealing 2500 Fire Damage per second for 4 seconds", statOrder = { 4309 }, level = 63, group = "BurningGroundWhileMoving", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3595254837] = { "Drops Burning Ground while moving, dealing 2500 Fire Damage per second for 4 seconds" }, } }, ["PhysicalDamageTakenAsColdEssence1"] = { type = "Prefix", affix = "Essences", "15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 63, group = "PhysicalDamageTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "15% of Physical Damage from Hits taken as Cold Damage" }, } }, ["ReducedDamageFromCriticalStrikesPerEnduranceChargeEssence1"] = { type = "Suffix", affix = "of the Essence", "You take 10% reduced Extra Damage from Critical Strikes per Endurance Charge", statOrder = { 1514 }, level = 63, group = "ReducedDamageFromCriticalStrikesPerEnduranceCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [2380848911] = { "You take 10% reduced Extra Damage from Critical Strikes per Endurance Charge" }, } }, ["FireDamageAsPortionOfPhysicalDamageEssence1"] = { type = "Prefix", affix = "Essences", "Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 10% of Physical Damage as Extra Fire Damage" }, } }, @@ -1648,12 +1648,12 @@ return { ["ChanceToPoison2"] = { type = "Suffix", affix = "of Toxins", "20% chance to Poison on Hit", statOrder = { 8003 }, level = 55, group = "LocalChanceToPoisonOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit" }, } }, ["ChanceToPoison3_"] = { type = "Suffix", affix = "of Death", "30% chance to Poison on Hit", statOrder = { 8003 }, level = 85, group = "LocalChanceToPoisonOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "30% chance to Poison on Hit" }, } }, ["ChanceToPoisonEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "30% chance to Poison on Hit", statOrder = { 1385, 8003 }, level = 1, group = "LocalChanceToPoisonOnHitChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "30% chance to Poison on Hit" }, [736967255] = { "(26-30)% increased Chaos Damage" }, } }, - ["ChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(18-24)% chance to Freeze", statOrder = { 2029 }, level = 15, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(18-24)% chance to Freeze" }, } }, - ["ChanceToFreeze2"] = { type = "Suffix", affix = "of Bleakness", "(25-30)% chance to Freeze", statOrder = { 2029 }, level = 45, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(25-30)% chance to Freeze" }, } }, - ["ChanceToFreeze3"] = { type = "Suffix", affix = "of the Hyperboreal", "(31-40)% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(31-40)% chance to Freeze" }, } }, - ["TwoHandChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(25-32)% chance to Freeze", statOrder = { 2029 }, level = 15, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(25-32)% chance to Freeze" }, } }, - ["TwoHandChanceToFreeze2"] = { type = "Suffix", affix = "of Bleakness", "(33-42)% chance to Freeze", statOrder = { 2029 }, level = 45, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(33-42)% chance to Freeze" }, } }, - ["TwoHandChanceToFreeze3____"] = { type = "Suffix", affix = "of the Hyperboreal", "(43-55)% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(43-55)% chance to Freeze" }, } }, + ["ChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(18-24)% chance to Freeze", statOrder = { 2029 }, level = 15, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "(18-24)% chance to Freeze" }, } }, + ["ChanceToFreeze2"] = { type = "Suffix", affix = "of Bleakness", "(25-30)% chance to Freeze", statOrder = { 2029 }, level = 45, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "(25-30)% chance to Freeze" }, } }, + ["ChanceToFreeze3"] = { type = "Suffix", affix = "of the Hyperboreal", "(31-40)% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "(31-40)% chance to Freeze" }, } }, + ["TwoHandChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(25-32)% chance to Freeze", statOrder = { 2029 }, level = 15, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "(25-32)% chance to Freeze" }, } }, + ["TwoHandChanceToFreeze2"] = { type = "Suffix", affix = "of Bleakness", "(33-42)% chance to Freeze", statOrder = { 2029 }, level = 45, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "(33-42)% chance to Freeze" }, } }, + ["TwoHandChanceToFreeze3____"] = { type = "Suffix", affix = "of the Hyperboreal", "(43-55)% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "(43-55)% chance to Freeze" }, } }, ["ChanceToShock1"] = { type = "Suffix", affix = "of Shocking", "(18-24)% chance to Shock", statOrder = { 2033 }, level = 15, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(18-24)% chance to Shock" }, } }, ["ChanceToShock2__"] = { type = "Suffix", affix = "of Zapping", "(25-30)% chance to Shock", statOrder = { 2033 }, level = 45, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(25-30)% chance to Shock" }, } }, ["ChanceToShock3"] = { type = "Suffix", affix = "of Electrocution", "(31-40)% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(31-40)% chance to Shock" }, } }, @@ -1671,9 +1671,9 @@ return { ["PoisonDamage3"] = { type = "Suffix", affix = "of Virulence", "(41-50)% increased Damage with Poison", "30% chance to Poison on Hit", statOrder = { 3181, 8003 }, level = 60, group = "PoisonDamageAndLocalChanceOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "30% chance to Poison on Hit" }, [1290399200] = { "(41-50)% increased Damage with Poison" }, } }, ["PoisonDamageEnhancedAttacksMod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(31-35)% increased Damage with Poison", statOrder = { 1390, 3181 }, level = 1, group = "PoisonDamageAddedChaosToAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [2223678961] = { "Adds (23-36) to (49-61) Chaos Damage" }, [1290399200] = { "(31-35)% increased Damage with Poison" }, } }, ["PoisonDamageEnhancedSpellsMod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(31-35)% increased Damage with Poison", statOrder = { 1407, 3181 }, level = 1, group = "PoisonDamageAddedChaosToSpells", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "poison", "damage", "chaos", "caster", "ailment" }, tradeHashes = { [2300399854] = { "Adds (17-24) to (36-40) Chaos Damage to Spells" }, [1290399200] = { "(31-35)% increased Damage with Poison" }, } }, - ["BleedDamage1_"] = { type = "Suffix", affix = "of Bloodletting", "Attacks have 20% chance to cause Bleeding", "(21-30)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 20, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 20% chance to cause Bleeding" }, [1294118672] = { "(21-30)% increased Damage with Bleeding" }, } }, - ["BleedDamage2"] = { type = "Suffix", affix = "of Haemophilia", "Attacks have 25% chance to cause Bleeding", "(31-40)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 40, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, [1294118672] = { "(31-40)% increased Damage with Bleeding" }, } }, - ["BleedDamage3"] = { type = "Suffix", affix = "of Exsanguination", "Attacks have 30% chance to cause Bleeding", "(41-50)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 60, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 30% chance to cause Bleeding" }, [1294118672] = { "(41-50)% increased Damage with Bleeding" }, } }, + ["BleedDamage1_"] = { type = "Suffix", affix = "of Bloodletting", "Attacks have 20% chance to cause Bleeding", "(21-30)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 20, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have 20% chance to cause Bleeding" }, [1294118672] = { "(21-30)% increased Damage with Bleeding" }, } }, + ["BleedDamage2"] = { type = "Suffix", affix = "of Haemophilia", "Attacks have 25% chance to cause Bleeding", "(31-40)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 40, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have 25% chance to cause Bleeding" }, [1294118672] = { "(31-40)% increased Damage with Bleeding" }, } }, + ["BleedDamage3"] = { type = "Suffix", affix = "of Exsanguination", "Attacks have 30% chance to cause Bleeding", "(41-50)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 60, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have 30% chance to cause Bleeding" }, [1294118672] = { "(41-50)% increased Damage with Bleeding" }, } }, ["ReducedPhysicalDamageTaken1"] = { type = "Suffix", affix = "of Dampening", "2% additional Physical Damage Reduction", statOrder = { 2273 }, level = 25, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "2% additional Physical Damage Reduction" }, } }, ["ReducedPhysicalDamageTaken2_"] = { type = "Suffix", affix = "of Numbing", "(3-4)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 85, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-4)% additional Physical Damage Reduction" }, } }, ["ChanceToDodge1_"] = { type = "Suffix", affix = "of Haze", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 25, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(4-6)% chance to Suppress Spell Damage" }, } }, @@ -2002,8 +2002,8 @@ return { ["NonChaosAddedAsChaosUber1"] = { type = "Prefix", affix = "The Elder's", "Gain (3-5)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 9489 }, level = 81, group = "NonChaosAddedAsChaos", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "chaos_damage", "influence_mod", "damage", "chaos" }, tradeHashes = { [2063695047] = { "Gain (3-5)% of Non-Chaos Damage as extra Chaos Damage" }, } }, ["PowerFrenzyOrEnduranceChargeOnKillUber1_"] = { type = "Suffix", affix = "of Shaping", "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3612 }, level = 68, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "influence_mod" }, tradeHashes = { [498214257] = { "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill" }, } }, ["PowerFrenzyOrEnduranceChargeOnKillUber2"] = { type = "Suffix", affix = "of Shaping", "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3612 }, level = 75, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "influence_mod" }, tradeHashes = { [498214257] = { "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill" }, } }, - ["MaximumZombiesUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to maximum number of Raised Zombies", statOrder = { 2160 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, [2428829184] = { "" }, [125218179] = { "" }, } }, - ["MaximumSkeletonsUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to maximum number of Skeletons", statOrder = { 2162 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } }, + ["MaximumZombiesUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to maximum number of Raised Zombies", statOrder = { 2160 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "minion" }, tradeHashes = { [1225383362] = { "" }, [966747987] = { "+1 to maximum number of Raised Zombies" }, [125218179] = { "" }, } }, + ["MaximumSkeletonsUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to maximum number of Skeletons", statOrder = { 2162 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "minion" }, tradeHashes = { [1225383362] = { "+1 to maximum number of Skeletons" }, [966747987] = { "" }, [125218179] = { "" }, } }, ["MaximumBlockChanceUber1"] = { type = "Suffix", affix = "of Shaping", "+2% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 68, group = "MaximumBlockChance", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [4124805414] = { "+2% to maximum Chance to Block Attack Damage" }, } }, ["MaximumLifeLeechRateUber1"] = { type = "Prefix", affix = "The Elder's", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1732 }, level = 68, group = "MaximumLifeLeechRateOldFix", weightKey = { "amulet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2916634441] = { "(15-25)% increased Maximum total Life Recovery per second from Leech" }, } }, ["MaximumLifeLeechRateUpdatedUber1"] = { type = "Prefix", affix = "The Elder's", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [4118987751] = { "(15-25)% increased Maximum total Life Recovery per second from Leech" }, } }, @@ -2074,8 +2074,8 @@ return { ["AdditionalChanceToEvadeUber2"] = { type = "Suffix", affix = "of the Elder", "+(4-5)% chance to Evade Attack Hits", statOrder = { 5673 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2021058489] = { "+(4-5)% chance to Evade Attack Hits" }, } }, ["ChanceToIgniteAddedDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (19-26) to (38-46) Fire Damage against Ignited Enemies", statOrder = { 6885 }, level = 68, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "" }, [794830148] = { "Adds (19-26) to (38-46) Fire Damage against Ignited Enemies" }, } }, ["ChanceToIgniteAddedDamageUber2__"] = { type = "Prefix", affix = "The Elder's", "Adds (23-30) to (47-54) Fire Damage against Ignited Enemies", statOrder = { 6885 }, level = 75, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "" }, [794830148] = { "Adds (23-30) to (47-54) Fire Damage against Ignited Enemies" }, } }, - ["ChanceToFreezeAddedDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6884 }, level = 68, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [2233361223] = { "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies" }, [44571480] = { "" }, } }, - ["ChanceToFreezeAddedDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6884 }, level = 75, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [2233361223] = { "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies" }, [44571480] = { "" }, } }, + ["ChanceToFreezeAddedDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6884 }, level = 68, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [2233361223] = { "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies" }, [2309614417] = { "" }, } }, + ["ChanceToFreezeAddedDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6884 }, level = 75, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [2233361223] = { "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies" }, [2309614417] = { "" }, } }, ["ChanceToShockAddedDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (3-7) to (68-73) Lightning Damage against Shocked Enemies", statOrder = { 6887 }, level = 68, group = "ChanceToShockAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, tradeHashes = { [90012347] = { "Adds (3-7) to (68-73) Lightning Damage against Shocked Enemies" }, [1538773178] = { "" }, } }, ["ChanceToShockAddedDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (4-8) to (82-86) Lightning Damage against Shocked Enemies", statOrder = { 6887 }, level = 75, group = "ChanceToShockAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, tradeHashes = { [90012347] = { "Adds (4-8) to (82-86) Lightning Damage against Shocked Enemies" }, [1538773178] = { "" }, } }, ["PhysicalAttackDamageTakenUber1_"] = { type = "Suffix", affix = "of Shaping", "-(35-25) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 68, group = "PhysicalAttackDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "physical", "attack" }, tradeHashes = { [3441651621] = { "-(35-25) Physical Damage taken from Attack Hits" }, } }, @@ -2133,8 +2133,8 @@ return { ["AdditionalArrowUber1__"] = { type = "Prefix", affix = "The Shaper's", "Bow Attacks fire an additional Arrow", statOrder = { 1794 }, level = 80, group = "AdditionalArrows", weightKey = { "quiver_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, ["PoisonOnHitQuiverUber1_"] = { type = "Suffix", affix = "of the Elder", "15% chance to Poison on Hit", "(15-25)% increased Damage with Poison", statOrder = { 3173, 3181 }, level = 68, group = "PoisonOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(15-25)% increased Damage with Poison" }, [795138349] = { "15% chance to Poison on Hit" }, } }, ["PoisonOnHitQuiverUber2"] = { type = "Suffix", affix = "of the Elder", "20% chance to Poison on Hit", "(26-30)% increased Damage with Poison", statOrder = { 3173, 3181 }, level = 75, group = "PoisonOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(26-30)% increased Damage with Poison" }, [795138349] = { "20% chance to Poison on Hit" }, } }, - ["BleedOnHitQuiverUber1"] = { type = "Suffix", affix = "of the Elder", "Attacks have 10% chance to cause Bleeding", "(15-25)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 68, group = "BleedOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(15-25)% increased Damage with Bleeding" }, [3204820200] = { "Attacks have 10% chance to cause Bleeding" }, } }, - ["BleedOnHitQuiverUber2_"] = { type = "Suffix", affix = "of the Elder", "Attacks have 15% chance to cause Bleeding", "(26-30)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 75, group = "BleedOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(26-30)% increased Damage with Bleeding" }, [3204820200] = { "Attacks have 15% chance to cause Bleeding" }, } }, + ["BleedOnHitQuiverUber1"] = { type = "Suffix", affix = "of the Elder", "Attacks have 10% chance to cause Bleeding", "(15-25)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 68, group = "BleedOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have 10% chance to cause Bleeding" }, [1294118672] = { "(15-25)% increased Damage with Bleeding" }, } }, + ["BleedOnHitQuiverUber2_"] = { type = "Suffix", affix = "of the Elder", "Attacks have 15% chance to cause Bleeding", "(26-30)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 75, group = "BleedOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have 15% chance to cause Bleeding" }, [1294118672] = { "(26-30)% increased Damage with Bleeding" }, } }, ["MaimOnHitQuiverUber1"] = { type = "Suffix", affix = "of Shaping", "Attacks have 15% chance to Maim on Hit", statOrder = { 8155 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have 15% chance to Maim on Hit" }, } }, ["MaimOnHitQuiverUber2"] = { type = "Suffix", affix = "of Shaping", "Attacks have 20% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have 20% chance to Maim on Hit" }, } }, ["ChancetoGainPhasingOnKillUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(5-6)% chance to gain Phasing for 4 seconds on Kill" }, } }, @@ -2187,39 +2187,39 @@ return { ["SupportedByFortifyWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 1 Fortify", statOrder = { 496 }, level = 68, group = "SupportedByFortifyWeapon", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 1 Fortify" }, } }, ["SupportedByArcaneSurgeWeaponUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 226 }, level = 68, group = "SupportedByArcaneSurgeWeapon", weightKey = { "grants_2h_support", "staff_shaper", "default", }, weightVal = { 0, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2287264161] = { "Socketed Gems are Supported by Level 1 Arcane Surge" }, } }, ["SupportedByInspirationWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 1 Inspiration", statOrder = { 494 }, level = 68, group = "SupportedByInspirationWeapon", weightKey = { "grants_2h_support", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1866911844] = { "Socketed Gems are Supported by Level 1 Inspiration" }, } }, - ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Melee Physical Damage", "(101-115)% increased Physical Damage", statOrder = { 468, 1232 }, level = 68, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [2985291457] = { "Socketed Gems are Supported by Level 16 Melee Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Melee Physical Damage", "(116-126)% increased Physical Damage", statOrder = { 468, 1232 }, level = 75, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [2985291457] = { "Socketed Gems are Supported by Level 18 Melee Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Melee Physical Damage", "(127-134)% increased Physical Damage", statOrder = { 468, 1232 }, level = 80, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [2985291457] = { "Socketed Gems are Supported by Level 20 Melee Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentBrutalityUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Brutality", "(101-115)% increased Physical Damage", statOrder = { 237, 1232 }, level = 68, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [715256302] = { "Socketed Gems are Supported by Level 16 Brutality" }, } }, - ["LocalIncreasedPhysicalDamagePercentBrutalityUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Brutality", "(116-126)% increased Physical Damage", statOrder = { 237, 1232 }, level = 75, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [715256302] = { "Socketed Gems are Supported by Level 18 Brutality" }, } }, - ["LocalIncreasedPhysicalDamagePercentBrutalityUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Brutality", "(127-134)% increased Physical Damage", statOrder = { 237, 1232 }, level = 80, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [715256302] = { "Socketed Gems are Supported by Level 20 Brutality" }, } }, - ["LocalIncreasedPhysicalDamagePercentAddedFireUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Added Fire Damage", "(101-115)% increased Physical Damage", statOrder = { 462, 1232 }, level = 68, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [2572192375] = { "Socketed Gems are Supported by Level 16 Added Fire Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAddedFireUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Added Fire Damage", "(116-126)% increased Physical Damage", statOrder = { 462, 1232 }, level = 75, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [2572192375] = { "Socketed Gems are Supported by Level 18 Added Fire Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAddedFireUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Added Fire Damage", "(127-134)% increased Physical Damage", statOrder = { 462, 1232 }, level = 80, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [2572192375] = { "Socketed Gems are Supported by Level 20 Added Fire Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentRuthlessUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Ruthless", "(101-115)% increased Physical Damage", statOrder = { 370, 1232 }, level = 68, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [3796013729] = { "Socketed Gems are Supported by Level 16 Ruthless" }, } }, - ["LocalIncreasedPhysicalDamagePercentRuthlessUber2__"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Ruthless", "(116-126)% increased Physical Damage", statOrder = { 370, 1232 }, level = 75, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [3796013729] = { "Socketed Gems are Supported by Level 18 Ruthless" }, } }, - ["LocalIncreasedPhysicalDamagePercentRuthlessUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Ruthless", "(127-134)% increased Physical Damage", statOrder = { 370, 1232 }, level = 80, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [3796013729] = { "Socketed Gems are Supported by Level 20 Ruthless" }, } }, - ["LocalIncreasedPhysicalDamagePercentOnslaughtUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Momentum", "(101-115)% increased Physical Damage", statOrder = { 344, 1232 }, level = 68, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [3237923082] = { "Socketed Gems are Supported by Level 16 Momentum" }, } }, - ["LocalIncreasedPhysicalDamagePercentOnslaughtUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Momentum", "(116-126)% increased Physical Damage", statOrder = { 344, 1232 }, level = 75, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [3237923082] = { "Socketed Gems are Supported by Level 18 Momentum" }, } }, - ["LocalIncreasedPhysicalDamagePercentOnslaughtUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Momentum", "(127-134)% increased Physical Damage", statOrder = { 344, 1232 }, level = 80, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [3237923082] = { "Socketed Gems are Supported by Level 20 Momentum" }, } }, - ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Endurance Charge on Melee Stun", "(101-115)% increased Physical Damage", statOrder = { 526, 1232 }, level = 68, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [3375208082] = { "Socketed Gems are Supported by Level 16 Endurance Charge on Melee Stun" }, } }, - ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Endurance Charge on Melee Stun", "(116-126)% increased Physical Damage", statOrder = { 526, 1232 }, level = 75, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [3375208082] = { "Socketed Gems are Supported by Level 18 Endurance Charge on Melee Stun" }, } }, - ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", "(127-134)% increased Physical Damage", statOrder = { 526, 1232 }, level = 80, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [3375208082] = { "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun" }, } }, - ["LocalIncreasedPhysicalDamagePercentFortifyUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Fortify", "(101-115)% increased Physical Damage", statOrder = { 496, 1232 }, level = 68, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [107118693] = { "Socketed Gems are Supported by Level 16 Fortify" }, } }, - ["LocalIncreasedPhysicalDamagePercentFortifyUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Fortify", "(116-126)% increased Physical Damage", statOrder = { 496, 1232 }, level = 75, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [107118693] = { "Socketed Gems are Supported by Level 18 Fortify" }, } }, - ["LocalIncreasedPhysicalDamagePercentFortifyUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Fortify", "(127-134)% increased Physical Damage", statOrder = { 496, 1232 }, level = 80, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [107118693] = { "Socketed Gems are Supported by Level 20 Fortify" }, } }, - ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike", "(101-115)% increased Physical Damage", statOrder = { 356, 1232 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [4015918489] = { "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike" }, } }, - ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike", "(116-126)% increased Physical Damage", statOrder = { 356, 1232 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [4015918489] = { "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike" }, } }, - ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", "(127-134)% increased Physical Damage", statOrder = { 356, 1232 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [4015918489] = { "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike" }, } }, - ["LocalIncreasedPhysicalDamagePercentIronGripUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Iron Grip", "(101-115)% increased Physical Damage", statOrder = { 319, 1232 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [251446805] = { "Socketed Gems are Supported by Level 16 Iron Grip" }, } }, - ["LocalIncreasedPhysicalDamagePercentIronGripUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Iron Grip", "(116-126)% increased Physical Damage", statOrder = { 319, 1232 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [251446805] = { "Socketed Gems are Supported by Level 18 Iron Grip" }, } }, - ["LocalIncreasedPhysicalDamagePercentIronGripUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Iron Grip", "(127-134)% increased Physical Damage", statOrder = { 319, 1232 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [251446805] = { "Socketed Gems are Supported by Level 20 Iron Grip" }, } }, - ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 16 Faster Projectiles", "(101-115)% increased Physical Damage", statOrder = { 482, 1232 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [99089516] = { "Socketed Gems are supported by Level 16 Faster Projectiles" }, } }, - ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 18 Faster Projectiles", "(116-126)% increased Physical Damage", statOrder = { 482, 1232 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [99089516] = { "Socketed Gems are supported by Level 18 Faster Projectiles" }, } }, - ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 20 Faster Projectiles", "(127-134)% increased Physical Damage", statOrder = { 482, 1232 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [99089516] = { "Socketed Gems are supported by Level 20 Faster Projectiles" }, } }, - ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Vicious Projectiles", "(101-115)% increased Physical Damage", statOrder = { 351, 1232 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [2513293614] = { "Socketed Gems are Supported by Level 16 Vicious Projectiles" }, } }, - ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Vicious Projectiles", "(116-126)% increased Physical Damage", statOrder = { 351, 1232 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [2513293614] = { "Socketed Gems are Supported by Level 18 Vicious Projectiles" }, } }, - ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Vicious Projectiles", "(127-134)% increased Physical Damage", statOrder = { 351, 1232 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [2513293614] = { "Socketed Gems are Supported by Level 20 Vicious Projectiles" }, } }, + ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Melee Physical Damage", "(101-115)% increased Physical Damage", statOrder = { 468, 1232 }, level = 68, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [2985291457] = { "Socketed Gems are Supported by Level 16 Melee Physical Damage" }, [1509134228] = { "(101-115)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Melee Physical Damage", "(116-126)% increased Physical Damage", statOrder = { 468, 1232 }, level = 75, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [2985291457] = { "Socketed Gems are Supported by Level 18 Melee Physical Damage" }, [1509134228] = { "(116-126)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Melee Physical Damage", "(127-134)% increased Physical Damage", statOrder = { 468, 1232 }, level = 80, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [2985291457] = { "Socketed Gems are Supported by Level 20 Melee Physical Damage" }, [1509134228] = { "(127-134)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentBrutalityUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Brutality", "(101-115)% increased Physical Damage", statOrder = { 237, 1232 }, level = 68, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [715256302] = { "Socketed Gems are Supported by Level 16 Brutality" }, [1509134228] = { "(101-115)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentBrutalityUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Brutality", "(116-126)% increased Physical Damage", statOrder = { 237, 1232 }, level = 75, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [715256302] = { "Socketed Gems are Supported by Level 18 Brutality" }, [1509134228] = { "(116-126)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentBrutalityUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Brutality", "(127-134)% increased Physical Damage", statOrder = { 237, 1232 }, level = 80, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [715256302] = { "Socketed Gems are Supported by Level 20 Brutality" }, [1509134228] = { "(127-134)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAddedFireUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Added Fire Damage", "(101-115)% increased Physical Damage", statOrder = { 462, 1232 }, level = 68, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, tradeHashes = { [2572192375] = { "Socketed Gems are Supported by Level 16 Added Fire Damage" }, [1509134228] = { "(101-115)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAddedFireUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Added Fire Damage", "(116-126)% increased Physical Damage", statOrder = { 462, 1232 }, level = 75, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, tradeHashes = { [2572192375] = { "Socketed Gems are Supported by Level 18 Added Fire Damage" }, [1509134228] = { "(116-126)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAddedFireUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Added Fire Damage", "(127-134)% increased Physical Damage", statOrder = { 462, 1232 }, level = 80, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, tradeHashes = { [2572192375] = { "Socketed Gems are Supported by Level 20 Added Fire Damage" }, [1509134228] = { "(127-134)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentRuthlessUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Ruthless", "(101-115)% increased Physical Damage", statOrder = { 370, 1232 }, level = 68, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [3796013729] = { "Socketed Gems are Supported by Level 16 Ruthless" }, [1509134228] = { "(101-115)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentRuthlessUber2__"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Ruthless", "(116-126)% increased Physical Damage", statOrder = { 370, 1232 }, level = 75, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [3796013729] = { "Socketed Gems are Supported by Level 18 Ruthless" }, [1509134228] = { "(116-126)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentRuthlessUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Ruthless", "(127-134)% increased Physical Damage", statOrder = { 370, 1232 }, level = 80, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [3796013729] = { "Socketed Gems are Supported by Level 20 Ruthless" }, [1509134228] = { "(127-134)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentOnslaughtUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Momentum", "(101-115)% increased Physical Damage", statOrder = { 344, 1232 }, level = 68, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [3237923082] = { "Socketed Gems are Supported by Level 16 Momentum" }, [1509134228] = { "(101-115)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentOnslaughtUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Momentum", "(116-126)% increased Physical Damage", statOrder = { 344, 1232 }, level = 75, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [3237923082] = { "Socketed Gems are Supported by Level 18 Momentum" }, [1509134228] = { "(116-126)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentOnslaughtUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Momentum", "(127-134)% increased Physical Damage", statOrder = { 344, 1232 }, level = 80, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [3237923082] = { "Socketed Gems are Supported by Level 20 Momentum" }, [1509134228] = { "(127-134)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Endurance Charge on Melee Stun", "(101-115)% increased Physical Damage", statOrder = { 526, 1232 }, level = 68, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [3375208082] = { "Socketed Gems are Supported by Level 16 Endurance Charge on Melee Stun" }, [1509134228] = { "(101-115)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Endurance Charge on Melee Stun", "(116-126)% increased Physical Damage", statOrder = { 526, 1232 }, level = 75, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [3375208082] = { "Socketed Gems are Supported by Level 18 Endurance Charge on Melee Stun" }, [1509134228] = { "(116-126)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", "(127-134)% increased Physical Damage", statOrder = { 526, 1232 }, level = 80, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [3375208082] = { "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun" }, [1509134228] = { "(127-134)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentFortifyUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Fortify", "(101-115)% increased Physical Damage", statOrder = { 496, 1232 }, level = 68, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 16 Fortify" }, [1509134228] = { "(101-115)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentFortifyUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Fortify", "(116-126)% increased Physical Damage", statOrder = { 496, 1232 }, level = 75, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 18 Fortify" }, [1509134228] = { "(116-126)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentFortifyUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Fortify", "(127-134)% increased Physical Damage", statOrder = { 496, 1232 }, level = 80, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 20 Fortify" }, [1509134228] = { "(127-134)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike", "(101-115)% increased Physical Damage", statOrder = { 356, 1232 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [4015918489] = { "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike" }, [1509134228] = { "(101-115)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike", "(116-126)% increased Physical Damage", statOrder = { 356, 1232 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [4015918489] = { "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike" }, [1509134228] = { "(116-126)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", "(127-134)% increased Physical Damage", statOrder = { 356, 1232 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [4015918489] = { "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike" }, [1509134228] = { "(127-134)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentIronGripUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Iron Grip", "(101-115)% increased Physical Damage", statOrder = { 319, 1232 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [251446805] = { "Socketed Gems are Supported by Level 16 Iron Grip" }, [1509134228] = { "(101-115)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentIronGripUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Iron Grip", "(116-126)% increased Physical Damage", statOrder = { 319, 1232 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [251446805] = { "Socketed Gems are Supported by Level 18 Iron Grip" }, [1509134228] = { "(116-126)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentIronGripUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Iron Grip", "(127-134)% increased Physical Damage", statOrder = { 319, 1232 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [251446805] = { "Socketed Gems are Supported by Level 20 Iron Grip" }, [1509134228] = { "(127-134)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 16 Faster Projectiles", "(101-115)% increased Physical Damage", statOrder = { 482, 1232 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [99089516] = { "Socketed Gems are supported by Level 16 Faster Projectiles" }, [1509134228] = { "(101-115)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 18 Faster Projectiles", "(116-126)% increased Physical Damage", statOrder = { 482, 1232 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [99089516] = { "Socketed Gems are supported by Level 18 Faster Projectiles" }, [1509134228] = { "(116-126)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 20 Faster Projectiles", "(127-134)% increased Physical Damage", statOrder = { 482, 1232 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [99089516] = { "Socketed Gems are supported by Level 20 Faster Projectiles" }, [1509134228] = { "(127-134)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Vicious Projectiles", "(101-115)% increased Physical Damage", statOrder = { 351, 1232 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [2513293614] = { "Socketed Gems are Supported by Level 16 Vicious Projectiles" }, [1509134228] = { "(101-115)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Vicious Projectiles", "(116-126)% increased Physical Damage", statOrder = { 351, 1232 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [2513293614] = { "Socketed Gems are Supported by Level 18 Vicious Projectiles" }, [1509134228] = { "(116-126)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Vicious Projectiles", "(127-134)% increased Physical Damage", statOrder = { 351, 1232 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [2513293614] = { "Socketed Gems are Supported by Level 20 Vicious Projectiles" }, [1509134228] = { "(127-134)% increased Physical Damage" }, } }, ["SupportedByMeleeSplashDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 16 Melee Splash", "(23-27)% increased Area Damage", statOrder = { 471, 2035 }, level = 68, group = "SupportedByMeleeSplashDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1811422871] = { "Socketed Gems are supported by Level 16 Melee Splash" }, [4251717817] = { "(23-27)% increased Area Damage" }, } }, ["SupportedByMeleeSplashDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 18 Melee Splash", "(28-32)% increased Area Damage", statOrder = { 471, 2035 }, level = 75, group = "SupportedByMeleeSplashDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1811422871] = { "Socketed Gems are supported by Level 18 Melee Splash" }, [4251717817] = { "(28-32)% increased Area Damage" }, } }, ["SupportedByMeleeSplashDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 20 Melee Splash", "(33-37)% increased Area Damage", statOrder = { 471, 2035 }, level = 80, group = "SupportedByMeleeSplashDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1811422871] = { "Socketed Gems are supported by Level 20 Melee Splash" }, [4251717817] = { "(33-37)% increased Area Damage" }, } }, @@ -2437,7 +2437,7 @@ return { ["AccuracyRatingPerFrenzyChargeUber1"] = { type = "Suffix", affix = "of Shaping", "5% increased Accuracy Rating per Frenzy Charge", "(20-25)% chance to gain a Frenzy Charge when you Block", statOrder = { 2050, 5690 }, level = 68, group = "AccuracyRatingPerFrenzyChargeUber", weightKey = { "sword_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "block", "frenzy_charge", "influence_mod", "attack" }, tradeHashes = { [3700381193] = { "5% increased Accuracy Rating per Frenzy Charge" }, [3769211656] = { "(20-25)% chance to gain a Frenzy Charge when you Block" }, } }, ["MovementSkillsCostNoManaUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Movement Skills Cost no Mana", statOrder = { 560 }, level = 68, group = "DisplayMovementSkillsCostNoMana", weightKey = { "2h_sword_shaper", "sword_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "skill", "resource", "influence_mod", "mana", "gem" }, tradeHashes = { [3263216405] = { "Socketed Movement Skills Cost no Mana" }, } }, ["GainEnduranceChargeWhileStationaryUber1"] = { type = "Suffix", affix = "of the Elder", "Gain an Endurance Charge every 4 seconds while Stationary", statOrder = { 9533 }, level = 68, group = "GainEnduranceChargeWhileStationary", weightKey = { "2h_sword_elder", "sword_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [2156210979] = { "Gain an Endurance Charge every 4 seconds while Stationary" }, } }, - ["CullingStrikeOnBleedingEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "(30-49)% increased Physical Damage", "Hits with this Weapon have Culling Strike against Bleeding Enemies", statOrder = { 1232, 7885 }, level = 68, group = "CullingStrikeOnBleedingEnemiesUber", weightKey = { "2h_axe_elder", "axe_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [2558253923] = { "Hits with this Weapon have Culling Strike against Bleeding Enemies" }, [1805374733] = { "(30-49)% increased Physical Damage" }, } }, + ["CullingStrikeOnBleedingEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "(30-49)% increased Physical Damage", "Hits with this Weapon have Culling Strike against Bleeding Enemies", statOrder = { 1232, 7885 }, level = 68, group = "CullingStrikeOnBleedingEnemiesUber", weightKey = { "2h_axe_elder", "axe_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [2558253923] = { "Hits with this Weapon have Culling Strike against Bleeding Enemies" }, [1509134228] = { "(30-49)% increased Physical Damage" }, } }, ["GainEnduranceChargeOnHittingBleedingEnemyUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% chance to gain an Endurance Charge when you Hit a Bleeding Enemy", statOrder = { 5686 }, level = 68, group = "GainEnduranceChargeOnHittingBleedingEnemy", weightKey = { "axe_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1536266147] = { "(5-10)% chance to gain an Endurance Charge when you Hit a Bleeding Enemy" }, } }, ["GainEnduranceChargeOnCritUber1"] = { type = "Suffix", affix = "of Shaping", "(15-20)% increased Critical Strike Chance", "(5-10)% chance to gain an Endurance Charge on Critical Strike", statOrder = { 1464, 1819 }, level = 68, group = "GainEnduranceChargeOnCritUber", weightKey = { "2h_axe_shaper", "axe_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "endurance_charge", "influence_mod", "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-20)% increased Critical Strike Chance" }, [2542650946] = { "(5-10)% chance to gain an Endurance Charge on Critical Strike" }, } }, ["CriticalStrikeChanceIfKilledRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(80-100)% increased Critical Strike Chance if you have Killed Recently", statOrder = { 5925 }, level = 68, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "axe_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [3914638685] = { "(80-100)% increased Critical Strike Chance if you have Killed Recently" }, } }, @@ -2463,16 +2463,16 @@ return { ["GrantsSpiderAspectCrafted30"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 30 Aspect of the Spider Skill", statOrder = { 720 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 30 Aspect of the Spider Skill" }, } }, ["GrantsCrabAspectCrafted30"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 30 Aspect of the Crab Skill", statOrder = { 697 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 30 Aspect of the Crab Skill" }, } }, ["LocalIncreaseSocketedMinionGemLevelDelve"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 60, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, - ["MaximumMinionCountZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Raised Zombies", statOrder = { 2160 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, [2428829184] = { "" }, [125218179] = { "" }, } }, - ["MaximumMinionCountSkeletonDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrder = { 2162 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } }, - ["MaximumMinionCountSpectreDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Spectres", statOrder = { 2161 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, + ["MaximumMinionCountZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Raised Zombies", statOrder = { 2160 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1225383362] = { "" }, [966747987] = { "+1 to maximum number of Raised Zombies" }, [125218179] = { "" }, } }, + ["MaximumMinionCountSkeletonDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrder = { 2162 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1225383362] = { "+1 to maximum number of Skeletons" }, [966747987] = { "" }, [125218179] = { "" }, } }, + ["MaximumMinionCountSpectreDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Spectres", statOrder = { 2161 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1225383362] = { "" }, [966747987] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, ["MinionDamageDelve"] = { type = "Suffix", affix = "of the Underground", "Minions deal (25-35)% increased Damage", statOrder = { 1973 }, level = 60, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (25-35)% increased Damage" }, } }, - ["MaximumMinionCountAmuletZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Raised Zombies", statOrder = { 2160 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, [2428829184] = { "" }, [125218179] = { "" }, } }, - ["MaximumMinionCountAmuletSkeletonDelve__"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrder = { 2162 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } }, + ["MaximumMinionCountAmuletZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Raised Zombies", statOrder = { 2160 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1225383362] = { "" }, [966747987] = { "+1 to maximum number of Raised Zombies" }, [125218179] = { "" }, } }, + ["MaximumMinionCountAmuletSkeletonDelve__"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrder = { 2162 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1225383362] = { "+1 to maximum number of Skeletons" }, [966747987] = { "" }, [125218179] = { "" }, } }, ["ReducedManaReservationsCostDelve_"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 60, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, ["LocalIncreaseSocketedAuraLevelDelve"] = { type = "Suffix", affix = "of the Underground", "+2 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 60, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, ["ReducedPhysicalDamageTakenDelve"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 60, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } }, - ["BleedingDamageChanceDelve__"] = { type = "Suffix", affix = "of the Underground", "Attacks have 25% chance to cause Bleeding", "(30-50)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 60, group = "BleedingDamageChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(30-50)% increased Damage with Bleeding" }, [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } }, + ["BleedingDamageChanceDelve__"] = { type = "Suffix", affix = "of the Underground", "Attacks have 25% chance to cause Bleeding", "(30-50)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 60, group = "BleedingDamageChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have 25% chance to cause Bleeding" }, [1294118672] = { "(30-50)% increased Damage with Bleeding" }, } }, ["CorruptedBloodImmunityDelve"] = { type = "Suffix", affix = "of the Underground", "Corrupted Blood cannot be inflicted on you", statOrder = { 5408 }, level = 60, group = "CorruptedBloodImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, ["DoubleDamageChanceDelve"] = { type = "Suffix", affix = "of the Underground", "10% chance to deal Double Damage", statOrder = { 5659 }, level = 60, group = "DoubleDamageChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1172810729] = { "10% chance to deal Double Damage" }, } }, ["SpellAddedPhysicalDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Global Physical Damage", "Adds (11-15) to (23-26) Physical Damage to Spells", statOrder = { 1231, 1403 }, level = 60, group = "SpellAddedPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (11-15) to (23-26) Physical Damage to Spells" }, [1310194496] = { "(20-40)% increased Global Physical Damage" }, } }, @@ -2663,7 +2663,7 @@ return { ["AddedFireDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (11-13) Fire Damage to Attacks", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1360, 1955 }, level = 50, group = "FireDamagePhysConvertedToFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [1533563525] = { "25% of Physical Damage Converted to Fire Damage" }, [1573130764] = { "Adds (5-7) to (11-13) Fire Damage to Attacks" }, } }, ["AddedColdDamageEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (10-12) Cold Damage to Attacks", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1369, 1957 }, level = 50, group = "ColdDamagePhysConvertedToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "attack" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, [4067062424] = { "Adds (5-7) to (10-12) Cold Damage to Attacks" }, } }, ["AddedLightningDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (1-2) to (22-23) Lightning Damage to Attacks", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1380, 1959 }, level = 50, group = "LightningDamagePhysConvertedToLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (22-23) Lightning Damage to Attacks" }, [3240769289] = { "25% of Physical Damage Converted to Lightning Damage" }, } }, - ["LocalIncreasedPhysicalDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (3-5)% of Physical Damage as Extra Chaos Damage", statOrder = { 1232, 1935 }, level = 50, group = "LocalPhysicalDamagePercentAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, tradeHashes = { [1805374733] = { "(155-169)% increased Physical Damage" }, [3319896421] = { "Gain (3-5)% of Physical Damage as Extra Chaos Damage" }, } }, + ["LocalIncreasedPhysicalDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (3-5)% of Physical Damage as Extra Chaos Damage", statOrder = { 1232, 1935 }, level = 50, group = "LocalPhysicalDamagePercentAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, tradeHashes = { [3319896421] = { "Gain (3-5)% of Physical Damage as Extra Chaos Damage" }, [1509134228] = { "(155-169)% increased Physical Damage" }, } }, ["LocalAddedFireDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (45-61) to (91-106) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 50, group = "LocalFireDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (45-61) to (91-106) Fire Damage" }, } }, ["LocalAddedFireDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (79-106) to (159-186) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 50, group = "LocalFireDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (79-106) to (159-186) Fire Damage" }, } }, ["LocalAddedColdDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (37-50) to (74-87) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 50, group = "LocalColdDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (37-50) to (74-87) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } }, @@ -2886,8 +2886,8 @@ return { ["ChanceToDodgeSpellsInfluence3"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 80, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(13-15)% chance to Suppress Spell Damage" }, } }, ["IncreasedAilmentEffectOnEnemiesInfluence1"] = { type = "Suffix", affix = "of Redemption", "(30-34)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "ailment" }, tradeHashes = { [782230869] = { "(30-34)% increased Effect of Non-Damaging Ailments" }, } }, ["IncreasedAilmentEffectOnEnemiesInfluence2"] = { type = "Suffix", affix = "of Redemption", "(35-40)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 73, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "ailment" }, tradeHashes = { [782230869] = { "(35-40)% increased Effect of Non-Damaging Ailments" }, } }, - ["OnslaughtOnKillInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 75, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2988593550] = { "(5-7)% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["OnslaughtOnKillInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 80, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2988593550] = { "(8-10)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["OnslaughtOnKillInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 75, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3023957681] = { "(5-7)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["OnslaughtOnKillInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 80, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3023957681] = { "(8-10)% chance to gain Onslaught for 4 seconds on Kill" }, } }, ["UnaffectedByDesecratedGroundInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Unaffected by Desecrated Ground", statOrder = { 10468 }, level = 68, group = "DesecratedGroundEffectEffectiveness", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos" }, tradeHashes = { [4004298002] = { "Unaffected by Desecrated Ground" }, } }, ["SocketedChaosGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+2 to Level of Socketed Chaos Gems", statOrder = { 170 }, level = 68, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2675603254] = { "+2 to Level of Socketed Chaos Gems" }, } }, ["AdditionalPierceInfluence1"] = { type = "Prefix", affix = "Hunter's", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "boots_basilisk", "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, @@ -3020,7 +3020,7 @@ return { ["PowerChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 80, group = "PowerChargeOnKillChance", weightKey = { "helmet_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [2483795307] = { "(7-10)% chance to gain a Power Charge on Kill" }, } }, ["PhysTakenAsColdHelmetInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 68, group = "PhysicalDamageTakenAsColdUber", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(4-6)% of Physical Damage from Hits taken as Cold Damage" }, } }, ["PhysTakenAsColdHelmetInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 83, group = "PhysicalDamageTakenAsColdUber", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(7-10)% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["SpellsAdditionalUnleashSealInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Skills supported by Unleash have +1 to maximum number of Seals", statOrder = { 10721 }, level = 80, group = "SpellsAdditionalUnleashSeal", weightKey = { "helmet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3155029005] = { "Skills supported by Unleash have +1 to maximum number of Seals" }, } }, + ["SpellsAdditionalUnleashSealInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Skills supported by Unleash have +1 to maximum number of Seals", statOrder = { 10721 }, level = 80, group = "SpellsAdditionalUnleashSeal", weightKey = { "helmet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1264919148] = { "Skills supported by Unleash have +1 to maximum number of Seals" }, } }, ["EnemyColdResistanceAuraInfluence1__"] = { type = "Suffix", affix = "of Redemption", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 7913 }, level = 85, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-9% to Cold Resistance" }, [2674336304] = { "Nearby Enemies have -9% to Cold Resistance" }, } }, ["ReducedManaReservationInfluence1"] = { type = "Suffix", affix = "of Redemption", "(4-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 68, group = "ReducedReservation", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1269219558] = { "(4-6)% increased Mana Reservation Efficiency of Skills" }, } }, ["ManaReservationEfficiencyInfluence1___"] = { type = "Suffix", affix = "of Redemption", "(4-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 68, group = "ManaReservationEfficiency", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4237190083] = { "(4-6)% increased Mana Reservation Efficiency of Skills" }, } }, @@ -3028,8 +3028,8 @@ return { ["ManaReservationEfficiencyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(7-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4237190083] = { "(7-10)% increased Mana Reservation Efficiency of Skills" }, } }, ["IgniteChanceAndDamageInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(15-17)% increased Burning Damage", "(6-8)% chance to Ignite", statOrder = { 1877, 2026 }, level = 68, group = "IgniteChanceAndDamage", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(6-8)% chance to Ignite" }, [1175385867] = { "(15-17)% increased Burning Damage" }, } }, ["IgniteChanceAndDamageInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(18-20)% increased Burning Damage", "(6-8)% chance to Ignite", statOrder = { 1877, 2026 }, level = 75, group = "IgniteChanceAndDamage", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(6-8)% chance to Ignite" }, [1175385867] = { "(18-20)% increased Burning Damage" }, } }, - ["FreezeChanceAndDurationInfluence1____"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Freeze Duration on Enemies", "(6-8)% chance to Freeze", statOrder = { 1858, 2029 }, level = 68, group = "FreezeChanceAndDuration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1073942215] = { "(8-12)% increased Freeze Duration on Enemies" }, [44571480] = { "(6-8)% chance to Freeze" }, } }, - ["FreezeChanceAndDurationInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(13-15)% increased Freeze Duration on Enemies", "(6-8)% chance to Freeze", statOrder = { 1858, 2029 }, level = 75, group = "FreezeChanceAndDuration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1073942215] = { "(13-15)% increased Freeze Duration on Enemies" }, [44571480] = { "(6-8)% chance to Freeze" }, } }, + ["FreezeChanceAndDurationInfluence1____"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Freeze Duration on Enemies", "(6-8)% chance to Freeze", statOrder = { 1858, 2029 }, level = 68, group = "FreezeChanceAndDuration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1073942215] = { "(8-12)% increased Freeze Duration on Enemies" }, [2309614417] = { "(6-8)% chance to Freeze" }, } }, + ["FreezeChanceAndDurationInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(13-15)% increased Freeze Duration on Enemies", "(6-8)% chance to Freeze", statOrder = { 1858, 2029 }, level = 75, group = "FreezeChanceAndDuration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1073942215] = { "(13-15)% increased Freeze Duration on Enemies" }, [2309614417] = { "(6-8)% chance to Freeze" }, } }, ["ShockChanceAndEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "(6-8)% chance to Shock", "(8-12)% increased Effect of Lightning Ailments", statOrder = { 2033, 7434 }, level = 68, group = "ShockChanceAndEffect", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "(8-12)% increased Effect of Lightning Ailments" }, [1538773178] = { "(6-8)% chance to Shock" }, } }, ["ShockChanceAndEffectInfluence2"] = { type = "Suffix", affix = "of Redemption", "(6-8)% chance to Shock", "(13-15)% increased Effect of Lightning Ailments", statOrder = { 2033, 7434 }, level = 75, group = "ShockChanceAndEffect", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "(13-15)% increased Effect of Lightning Ailments" }, [1538773178] = { "(6-8)% chance to Shock" }, } }, ["AddedManaRegenerationInfluence1"] = { type = "Suffix", affix = "of Redemption", "Regenerate (3-5) Mana per second", statOrder = { 1582 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (3-5) Mana per second" }, } }, @@ -3089,7 +3089,7 @@ return { ["SocketedSupportGemLevelInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+1 to Level of Socketed Support Gems", statOrder = { 189 }, level = 80, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [4154259475] = { "+1 to Level of Socketed Support Gems" }, } }, ["ReflectedElementalDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 6335 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take 100% reduced Reflected Elemental Damage" }, } }, ["ElementalDamageCannotBeReflectedPercentInfluence1"] = { type = "Prefix", affix = "Redeemer's", "100% of Elemental Hit Damage from you and your Minions cannot be Reflected", statOrder = { 2 }, level = 75, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3408683611] = { "100% of Elemental Hit Damage from you and your Minions cannot be Reflected" }, } }, - ["NearbyEnemiesAreBlindedInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Nearby Enemies are Blinded", statOrder = { 3396 }, level = 75, group = "NearbyEnemiesAreBlinded", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [223497523] = { "" }, [2826979740] = { "Nearby Enemies are Blinded" }, } }, + ["NearbyEnemiesAreBlindedInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Nearby Enemies are Blinded", statOrder = { 3396 }, level = 75, group = "NearbyEnemiesAreBlinded", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2826979740] = { "Nearby Enemies are Blinded" }, } }, ["PercentageDexterityBodyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-8)% increased Dexterity", statOrder = { 1185 }, level = 68, group = "PercentageDexterity", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [4139681126] = { "(5-8)% increased Dexterity" }, } }, ["PercentageDexterityBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(9-12)% increased Dexterity", statOrder = { 1185 }, level = 75, group = "PercentageDexterity", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [4139681126] = { "(9-12)% increased Dexterity" }, } }, ["FrenzyChargeOnHitChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1833 }, level = 80, group = "FrenzyChargeOnHitChance", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [2323242761] = { "10% chance to gain a Frenzy Charge on Hit" }, } }, @@ -3187,8 +3187,8 @@ return { ["ChancetoGainPhasingOnKillInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(5-6)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(5-6)% chance to gain Phasing for 4 seconds on Kill" }, } }, ["ChancetoGainPhasingOnKillInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(7-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 70, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(7-8)% chance to gain Phasing for 4 seconds on Kill" }, } }, ["ChancetoGainPhasingOnKillInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(9-10)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 73, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(9-10)% chance to gain Phasing for 4 seconds on Kill" }, } }, - ["BleedOnHitDamageInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 10% chance to cause Bleeding", "(15-25)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 68, group = "BleedOnHitAndDamage", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(15-25)% increased Damage with Bleeding" }, [3204820200] = { "Attacks have 10% chance to cause Bleeding" }, } }, - ["BleedOnHitDamageInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 15% chance to cause Bleeding", "(26-30)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 75, group = "BleedOnHitAndDamage", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(26-30)% increased Damage with Bleeding" }, [3204820200] = { "Attacks have 15% chance to cause Bleeding" }, } }, + ["BleedOnHitDamageInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 10% chance to cause Bleeding", "(15-25)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 68, group = "BleedOnHitAndDamage", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have 10% chance to cause Bleeding" }, [1294118672] = { "(15-25)% increased Damage with Bleeding" }, } }, + ["BleedOnHitDamageInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 15% chance to cause Bleeding", "(26-30)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 75, group = "BleedOnHitAndDamage", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have 15% chance to cause Bleeding" }, [1294118672] = { "(26-30)% increased Damage with Bleeding" }, } }, ["PhysicalAddedAsExtraColdInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Gain (5-10)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "quiver_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (5-10)% of Physical Damage as Extra Cold Damage" }, } }, ["PhysicalAddedAsExtraColdInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (11-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "quiver_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (11-15)% of Physical Damage as Extra Cold Damage" }, } }, ["MovementVelocityExtraInfluence1"] = { type = "Prefix", affix = "Hunter's", "(3-6)% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(3-6)% increased Movement Speed" }, } }, @@ -3310,8 +3310,8 @@ return { ["BleedDamageAndDurationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(8-12)% increased Damage with Bleeding", "(5-6)% increased Bleeding Duration", statOrder = { 3169, 4994 }, level = 68, group = "BleedDamageAndDuration", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(5-6)% increased Bleeding Duration" }, [1294118672] = { "(8-12)% increased Damage with Bleeding" }, } }, ["BleedDamageAndDurationInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(13-17)% increased Damage with Bleeding", "(7-8)% increased Bleeding Duration", statOrder = { 3169, 4994 }, level = 75, group = "BleedDamageAndDuration", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(7-8)% increased Bleeding Duration" }, [1294118672] = { "(13-17)% increased Damage with Bleeding" }, } }, ["BleedDamageAndDurationInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(18-22)% increased Damage with Bleeding", "(9-10)% increased Bleeding Duration", statOrder = { 3169, 4994 }, level = 80, group = "BleedDamageAndDuration", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(9-10)% increased Bleeding Duration" }, [1294118672] = { "(18-22)% increased Damage with Bleeding" }, } }, - ["ChanceToFreezeAddedDamageInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6884 }, level = 68, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [2233361223] = { "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies" }, [44571480] = { "" }, } }, - ["ChanceToFreezeAddedDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6884 }, level = 75, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [2233361223] = { "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies" }, [44571480] = { "" }, } }, + ["ChanceToFreezeAddedDamageInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6884 }, level = 68, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [2233361223] = { "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies" }, [2309614417] = { "" }, } }, + ["ChanceToFreezeAddedDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6884 }, level = 75, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [2233361223] = { "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies" }, [2309614417] = { "" }, } }, ["AddedColdDamagePerFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(2-3) to (4-5) Added Cold Damage per Frenzy Charge", statOrder = { 4273 }, level = 75, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "(2-3) to (4-5) Added Cold Damage per Frenzy Charge" }, } }, ["AddedColdDamagePerFrenzyChargeInfluence2__"] = { type = "Prefix", affix = "Redeemer's", "(3-4) to (6-7) Added Cold Damage per Frenzy Charge", statOrder = { 4273 }, level = 80, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "(3-4) to (6-7) Added Cold Damage per Frenzy Charge" }, } }, ["ProjectileAttackDamageRingInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(15-17)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(15-17)% increased Projectile Attack Damage" }, } }, @@ -3437,46 +3437,46 @@ return { ["RandomChargeOnKillInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3612 }, level = 75, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [498214257] = { "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill" }, } }, ["ReducedAttributeRequirementsInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrder = { 2552 }, level = 68, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have (5-10)% reduced Attribute Requirements" }, } }, ["ReducedAttributeRequirementsInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Items and Gems have (11-15)% reduced Attribute Requirements", statOrder = { 2552 }, level = 75, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have (11-15)% reduced Attribute Requirements" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence1"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1232, 1651 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1232, 1651 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence3"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1232, 1651 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1232, 1651 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence5_"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1232, 1651 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence1"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1232, 1413 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [210067635] = { "(3-4)% increased Attack Speed" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence2"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1232, 1413 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [210067635] = { "(3-4)% increased Attack Speed" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence3"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1232, 1413 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [210067635] = { "(3-4)% increased Attack Speed" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1232, 1413 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [210067635] = { "(3-4)% increased Attack Speed" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1232, 1413 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [210067635] = { "(3-4)% increased Attack Speed" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1232, 1464 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [2375316951] = { "(8-10)% increased Critical Strike Chance" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1232, 1464 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [2375316951] = { "(8-10)% increased Critical Strike Chance" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1232, 1464 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [2375316951] = { "(8-10)% increased Critical Strike Chance" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1232, 1464 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [2375316951] = { "(8-10)% increased Critical Strike Chance" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1232, 1464 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [2375316951] = { "(8-10)% increased Critical Strike Chance" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence1"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1232, 1488 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence2"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1232, 1488 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1232, 1488 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1232, 1488 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1232, 1488 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndStunInfluence1__"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1232, 1517 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndStunInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1232, 1517 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndStunInfluence3"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1232, 1517 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 150, 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndStunInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1232, 1517 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndStunInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1232, 1517 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 50, 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1232, 1880 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [280731498] = { "(10-15)% increased Area of Effect" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1232, 1880 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [280731498] = { "(10-15)% increased Area of Effect" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1232, 1880 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 150, 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [280731498] = { "(10-15)% increased Area of Effect" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1232, 1880 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [280731498] = { "(10-15)% increased Area of Effect" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1232, 1880 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 50, 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [280731498] = { "(10-15)% increased Area of Effect" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence1"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1232, 1796 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [3759663284] = { "(20-25)% increased Projectile Speed" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1232, 1796 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [3759663284] = { "(20-25)% increased Projectile Speed" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1232, 1796 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [3759663284] = { "(20-25)% increased Projectile Speed" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1232, 1796 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [3759663284] = { "(20-25)% increased Projectile Speed" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1232, 1796 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [3759663284] = { "(20-25)% increased Projectile Speed" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(25-34)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1232, 1790 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [2067062068] = { "Projectiles Pierce an additional Target" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence2"] = { type = "Prefix", affix = "Hunter's", "(35-44)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1232, 1790 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [2067062068] = { "Projectiles Pierce an additional Target" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence3"] = { type = "Prefix", affix = "Hunter's", "(45-54)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1232, 1790 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [2067062068] = { "Projectiles Pierce an additional Target" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence4_"] = { type = "Prefix", affix = "Hunter's", "(55-64)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1232, 1790 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [2067062068] = { "Projectiles Pierce an additional Target" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence5_"] = { type = "Prefix", affix = "Hunter's", "(65-69)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1232, 1790 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [2067062068] = { "Projectiles Pierce an additional Target" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence1"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1232, 1651 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, [1509134228] = { "(25-34)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1232, 1651 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, [1509134228] = { "(35-44)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence3"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1232, 1651 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, [1509134228] = { "(45-54)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1232, 1651 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, [1509134228] = { "(55-64)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence5_"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1232, 1651 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, [1509134228] = { "(65-69)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence1"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1232, 1413 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [210067635] = { "(3-4)% increased Attack Speed" }, [1509134228] = { "(25-34)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence2"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1232, 1413 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [210067635] = { "(3-4)% increased Attack Speed" }, [1509134228] = { "(35-44)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence3"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1232, 1413 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [210067635] = { "(3-4)% increased Attack Speed" }, [1509134228] = { "(45-54)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1232, 1413 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [210067635] = { "(3-4)% increased Attack Speed" }, [1509134228] = { "(55-64)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1232, 1413 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [210067635] = { "(3-4)% increased Attack Speed" }, [1509134228] = { "(65-69)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1232, 1464 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [2375316951] = { "(8-10)% increased Critical Strike Chance" }, [1509134228] = { "(25-34)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1232, 1464 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [2375316951] = { "(8-10)% increased Critical Strike Chance" }, [1509134228] = { "(35-44)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1232, 1464 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [2375316951] = { "(8-10)% increased Critical Strike Chance" }, [1509134228] = { "(45-54)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1232, 1464 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [2375316951] = { "(8-10)% increased Critical Strike Chance" }, [1509134228] = { "(55-64)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1232, 1464 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [2375316951] = { "(8-10)% increased Critical Strike Chance" }, [1509134228] = { "(65-69)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence1"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1232, 1488 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, [1509134228] = { "(25-34)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence2"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1232, 1488 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, [1509134228] = { "(35-44)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1232, 1488 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, [1509134228] = { "(45-54)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1232, 1488 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, [1509134228] = { "(55-64)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1232, 1488 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, [1509134228] = { "(65-69)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndStunInfluence1__"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1232, 1517 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, [1509134228] = { "(25-34)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndStunInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1232, 1517 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, [1509134228] = { "(35-44)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndStunInfluence3"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1232, 1517 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 150, 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, [1509134228] = { "(45-54)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndStunInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1232, 1517 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, [1509134228] = { "(55-64)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndStunInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1232, 1517 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 50, 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, [1509134228] = { "(65-69)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1232, 1880 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [280731498] = { "(10-15)% increased Area of Effect" }, [1509134228] = { "(25-34)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1232, 1880 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [280731498] = { "(10-15)% increased Area of Effect" }, [1509134228] = { "(35-44)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1232, 1880 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 150, 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [280731498] = { "(10-15)% increased Area of Effect" }, [1509134228] = { "(45-54)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1232, 1880 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [280731498] = { "(10-15)% increased Area of Effect" }, [1509134228] = { "(55-64)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1232, 1880 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 50, 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [280731498] = { "(10-15)% increased Area of Effect" }, [1509134228] = { "(65-69)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence1"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1232, 1796 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [3759663284] = { "(20-25)% increased Projectile Speed" }, [1509134228] = { "(25-34)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1232, 1796 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [3759663284] = { "(20-25)% increased Projectile Speed" }, [1509134228] = { "(35-44)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1232, 1796 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [3759663284] = { "(20-25)% increased Projectile Speed" }, [1509134228] = { "(45-54)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1232, 1796 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [3759663284] = { "(20-25)% increased Projectile Speed" }, [1509134228] = { "(55-64)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1232, 1796 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [3759663284] = { "(20-25)% increased Projectile Speed" }, [1509134228] = { "(65-69)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(25-34)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1232, 1790 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, [1509134228] = { "(25-34)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence2"] = { type = "Prefix", affix = "Hunter's", "(35-44)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1232, 1790 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, [1509134228] = { "(35-44)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence3"] = { type = "Prefix", affix = "Hunter's", "(45-54)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1232, 1790 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, [1509134228] = { "(45-54)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence4_"] = { type = "Prefix", affix = "Hunter's", "(55-64)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1232, 1790 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, [1509134228] = { "(55-64)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence5_"] = { type = "Prefix", affix = "Hunter's", "(65-69)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1232, 1790 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, [1509134228] = { "(65-69)% increased Physical Damage" }, } }, ["LocalAddedFireDamageAndPenetrationInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (8-10) to (15-18) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 68, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (8-10) to (15-18) Fire Damage" }, } }, ["LocalAddedFireDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (12-16) to (24-28) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 71, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (12-16) to (24-28) Fire Damage" }, } }, ["LocalAddedFireDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (17-22) to (33-39) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 74, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (17-22) to (33-39) Fire Damage" }, } }, @@ -3685,9 +3685,9 @@ return { ["ChanceToIntimidateOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(12-15)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7875 }, level = 81, group = "LocalChanceToIntimidateOnHit", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attack" }, tradeHashes = { [2089652545] = { "(12-15)% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, ["DamageFromAurasWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3458 }, level = 82, group = "IncreasedDamageFromAuras", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "influence_mod", "damage", "aura" }, tradeHashes = { [3729445224] = { "Auras from your Skills grant 2% increased Damage to you and Allies" }, } }, ["DamageFromAurasTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3458 }, level = 82, group = "IncreasedDamageFromAuras", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 0 }, modTags = { "influence_mod", "damage", "aura" }, tradeHashes = { [3729445224] = { "Auras from your Skills grant 4% increased Damage to you and Allies" }, } }, - ["LocalChanceToMaimPhysicalDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(10-13)% increased Physical Damage", "10% chance to Maim on Hit", statOrder = { 1232, 7989 }, level = 68, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(10-13)% increased Physical Damage" }, [2763429652] = { "10% chance to Maim on Hit" }, } }, - ["LocalChanceToMaimPhysicalDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(14-16)% increased Physical Damage", "15% chance to Maim on Hit", statOrder = { 1232, 7989 }, level = 70, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(14-16)% increased Physical Damage" }, [2763429652] = { "15% chance to Maim on Hit" }, } }, - ["LocalChanceToMaimPhysicalDamageInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(17-20)% increased Physical Damage", "20% chance to Maim on Hit", statOrder = { 1232, 7989 }, level = 73, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(17-20)% increased Physical Damage" }, [2763429652] = { "20% chance to Maim on Hit" }, } }, + ["LocalChanceToMaimPhysicalDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(10-13)% increased Physical Damage", "10% chance to Maim on Hit", statOrder = { 1232, 7989 }, level = 68, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(10-13)% increased Physical Damage" }, [2763429652] = { "10% chance to Maim on Hit" }, } }, + ["LocalChanceToMaimPhysicalDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(14-16)% increased Physical Damage", "15% chance to Maim on Hit", statOrder = { 1232, 7989 }, level = 70, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(14-16)% increased Physical Damage" }, [2763429652] = { "15% chance to Maim on Hit" }, } }, + ["LocalChanceToMaimPhysicalDamageInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(17-20)% increased Physical Damage", "20% chance to Maim on Hit", statOrder = { 1232, 7989 }, level = 73, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(17-20)% increased Physical Damage" }, [2763429652] = { "20% chance to Maim on Hit" }, } }, ["BlindOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-18)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 68, group = "AttacksBlindOnHitChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(15-18)% chance to Blind Enemies on Hit with Attacks" }, } }, ["BlindOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(19-22)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 70, group = "AttacksBlindOnHitChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(19-22)% chance to Blind Enemies on Hit with Attacks" }, } }, ["BlindOnHitWeaponInfluence3"] = { type = "Suffix", affix = "of Redemption", "(23-25)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 73, group = "AttacksBlindOnHitChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(23-25)% chance to Blind Enemies on Hit with Attacks" }, } }, @@ -3963,12 +3963,12 @@ return { ["MinionLifeInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Minions have (36-40)% increased maximum Life", "Minions Regenerate (1-1.5)% of Life per second", statOrder = { 1766, 2911 }, level = 85, group = "MinionLifeMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate (1-1.5)% of Life per second" }, [770672621] = { "Minions have (36-40)% increased maximum Life" }, } }, ["PowerChargeOnKillInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "50% increased Power Charge Duration", "(11-15)% chance to gain a Power Charge on Kill", statOrder = { 2142, 2633 }, level = 90, group = "PowerChargeOnKillChanceMaven", weightKey = { "helmet_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [2483795307] = { "(11-15)% chance to gain a Power Charge on Kill" }, [3872306017] = { "50% increased Power Charge Duration" }, } }, ["PhysTakenAsColdHelmetInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(11-13)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 93, group = "PhysicalDamageTakenAsColdUber", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(11-13)% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["SpellsAdditionalUnleashSealInfluenceMaven___"] = { type = "Prefix", affix = "Elevated Redeemer's", "(50-75)% increased Critical Strike Chance with Spells which remove the maximum number of Seals", "Skills supported by Unleash have +1 to maximum number of Seals", statOrder = { 10138, 10721 }, level = 90, group = "SpellsAdditionalUnleashSealMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "critical" }, tradeHashes = { [2897207025] = { "(50-75)% increased Critical Strike Chance with Spells which remove the maximum number of Seals" }, [3155029005] = { "Skills supported by Unleash have +1 to maximum number of Seals" }, } }, + ["SpellsAdditionalUnleashSealInfluenceMaven___"] = { type = "Prefix", affix = "Elevated Redeemer's", "(50-75)% increased Critical Strike Chance with Spells which remove the maximum number of Seals", "Skills supported by Unleash have +1 to maximum number of Seals", statOrder = { 10138, 10721 }, level = 90, group = "SpellsAdditionalUnleashSealMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "critical" }, tradeHashes = { [1264919148] = { "Skills supported by Unleash have +1 to maximum number of Seals" }, [2897207025] = { "(50-75)% increased Critical Strike Chance with Spells which remove the maximum number of Seals" }, } }, ["EnemyColdResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "Nearby Enemies have -12% to Cold Resistance", statOrder = { 7913 }, level = 95, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-12% to Cold Resistance" }, [2674336304] = { "Nearby Enemies have -12% to Cold Resistance" }, } }, ["ReducedManaReservationInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(12-14)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 85, group = "ReducedReservation", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1269219558] = { "(12-14)% increased Mana Reservation Efficiency of Skills" }, } }, ["ManaReservationEfficiencyInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(11-14)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 85, group = "ManaReservationEfficiency", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4237190083] = { "(11-14)% increased Mana Reservation Efficiency of Skills" }, } }, ["IgniteChanceAndDamageInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Ignite", "Ignites you inflict deal Damage (10-15)% faster", statOrder = { 2026, 2564 }, level = 85, group = "IgniteChanceAndDamageMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(10-15)% chance to Ignite" }, [2443492284] = { "Ignites you inflict deal Damage (10-15)% faster" }, } }, - ["FreezeChanceAndDurationInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Freeze", "Freeze Enemies as though dealing (30-50)% more Damage", statOrder = { 2029, 7103 }, level = 85, group = "FreezeChanceAndDurationMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1302208736] = { "Freeze Enemies as though dealing (30-50)% more Damage" }, [44571480] = { "(10-15)% chance to Freeze" }, } }, + ["FreezeChanceAndDurationInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Freeze", "Freeze Enemies as though dealing (30-50)% more Damage", statOrder = { 2029, 7103 }, level = 85, group = "FreezeChanceAndDurationMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1302208736] = { "Freeze Enemies as though dealing (30-50)% more Damage" }, [2309614417] = { "(10-15)% chance to Freeze" }, } }, ["ShockChanceAndEffectInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Shock", "Shock Enemies as though dealing (30-50)% more Damage", statOrder = { 2033, 7104 }, level = 85, group = "ShockChanceAndEffectMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2206792089] = { "Shock Enemies as though dealing (30-50)% more Damage" }, [1538773178] = { "(10-15)% chance to Shock" }, } }, ["AddedManaRegenerationInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "Regenerate (6-8) Mana per second", "Mana Flasks gain 1 Charge every 3 seconds", statOrder = { 1582, 8176 }, level = 85, group = "AddedManaRegenerationMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (6-8) Mana per second" }, [1193925814] = { "Mana Flasks gain 1 Charge every 3 seconds" }, } }, ["SpellAddedFireDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (35-49) to (60-73) Fire Damage to Spells", statOrder = { 1404 }, level = 85, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (35-49) to (60-73) Fire Damage to Spells" }, } }, @@ -3983,7 +3983,7 @@ return { ["ShockingConfluxInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(20-30)% increased Shock Duration on Enemies", "You have Shocking Conflux for 3 seconds every 8 seconds", statOrder = { 1857, 6822 }, level = 90, group = "ShockingConfluxMaven", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1190121450] = { "You have Shocking Conflux for 3 seconds every 8 seconds" }, [3668351662] = { "(20-30)% increased Shock Duration on Enemies" }, } }, ["IncreasedAttackSpeedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Faster Attacks", "(13-14)% increased Attack Speed", statOrder = { 469, 1410 }, level = 92, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [681332047] = { "(13-14)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 25 Faster Attacks" }, } }, ["IncreasedCastSpeedUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Faster Casting", "(13-14)% increased Cast Speed", statOrder = { 500, 1446 }, level = 94, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 25 Faster Casting" }, [2891184298] = { "(13-14)% increased Cast Speed" }, } }, - ["IncreasedAttackAndCastSpeedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "(13-14)% increased Attack and Cast Speed", "(5-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2046, 2993 }, level = 95, group = "IncreasedAttackAndCastSpeedSupportedMaven", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(13-14)% increased Attack and Cast Speed" }, [2988593550] = { "(5-10)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["IncreasedAttackAndCastSpeedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "(13-14)% increased Attack and Cast Speed", "(5-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2046, 2993 }, level = 95, group = "IncreasedAttackAndCastSpeedSupportedMaven", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(13-14)% increased Attack and Cast Speed" }, [3023957681] = { "(5-10)% chance to gain Onslaught for 4 seconds on Kill" }, } }, ["SupportedByManaLeechUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are Supported by Level 20 Mana Leech", "(20-30)% increased Maximum total Mana Recovery per second from Leech", statOrder = { 514, 1733 }, level = 78, group = "DisplaySupportedByManaLeechMaven", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "resource", "influence_mod", "mana", "gem" }, tradeHashes = { [96977651] = { "(20-30)% increased Maximum total Mana Recovery per second from Leech" }, [2608615082] = { "Socketed Gems are Supported by Level 20 Mana Leech" }, } }, ["ProjectileSpeedUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are supported by Level 25 Faster Projectiles", "(26-30)% increased Projectile Speed", statOrder = { 482, 1796 }, level = 92, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [99089516] = { "Socketed Gems are supported by Level 25 Faster Projectiles" }, [3759663284] = { "(26-30)% increased Projectile Speed" }, } }, ["ProjectileDamageUberMaven_"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are Supported by Level 25 Slower Projectiles", "(23-25)% increased Projectile Damage", statOrder = { 377, 1996 }, level = 93, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1390285657] = { "Socketed Gems are Supported by Level 25 Slower Projectiles" }, [1839076647] = { "(23-25)% increased Projectile Damage" }, } }, @@ -4053,8 +4053,8 @@ return { ["ImmuneToBurningGroundUberMaven_"] = { type = "Prefix", affix = "Elevated Shaper's", "Unaffected by Ignite", statOrder = { 10474 }, level = 78, group = "BurningGroundEffectEffectivenessMaven", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [2635869389] = { "Unaffected by Ignite" }, } }, ["ImmuneToShockedGroundUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Unaffected by Shock", statOrder = { 10478 }, level = 78, group = "ShockedGroundEffectEffectivenessMaven", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [1473289174] = { "Unaffected by Shock" }, } }, ["ImmuneToDesecratedGroundUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Unaffected by Poison", statOrder = { 5055 }, level = 78, group = "DesecratedGroundEffectEffectivenessMaven", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "influence_mod", "chaos", "ailment" }, tradeHashes = { [1953432004] = { "Unaffected by Poison" }, } }, - ["ChanceToDodgeUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 94, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(16-18)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } }, - ["ChanceToDodgeSpellsUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 93, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(16-18)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } }, + ["ChanceToDodgeUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 94, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(16-18)% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeSpellsUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 93, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(16-18)% chance to Suppress Spell Damage" }, } }, ["ChanceToAvoidStunUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "(36-50)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 92, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(36-50)% chance to Avoid being Stunned" }, } }, ["ChanceToAvoidElementalAilmentsUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "(36-45)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 91, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(36-45)% chance to Avoid Elemental Ailments" }, } }, ["ChanceToAvoidProjectilesUberMaven___"] = { type = "Suffix", affix = "of Elevated Shaping", "(11-15)% chance to avoid Projectiles if you've taken Projectile Damage Recently", "(10-12)% chance to avoid Projectiles", statOrder = { 4950, 4993 }, level = 94, group = "ChanceToAvoidProjectilesMaven", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3452269808] = { "(10-12)% chance to avoid Projectiles" }, [3114696875] = { "(11-15)% chance to avoid Projectiles if you've taken Projectile Damage Recently" }, } }, @@ -4089,10 +4089,10 @@ return { ["EnduranceChargeOnKillInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "50% increased Endurance Charge Duration", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2125, 2629 }, level = 90, group = "EnduranceChargeOnKillChanceMaven", weightKey = { "boots_eyrie", "sword_eyrie", "axe_eyrie", "mace_eyrie", "sceptre_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1170174456] = { "50% increased Endurance Charge Duration" }, [1054322244] = { "(7-10)% chance to gain an Endurance Charge on Kill" }, } }, ["PhysicalAddedAsExtraColdBootsInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Gain (9-11)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 85, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (9-11)% of Physical Damage as Extra Cold Damage" }, } }, ["ElusiveOnCriticalStrikeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(11-20)% chance to gain Elusive on Critical Strike", "(5-10)% increased Elusive Effect", statOrder = { 4281, 6350 }, level = 85, group = "ElusiveOnCriticalStrikeMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [240857668] = { "(5-10)% increased Elusive Effect" }, [2896192589] = { "(11-20)% chance to gain Elusive on Critical Strike" }, } }, - ["ChanceToDodgeAttacksInfluenceMaven__"] = { type = "Suffix", affix = "of Elevated Redemption", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 90, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(16-18)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } }, - ["ChanceToDodgeSpellsInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 90, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(16-18)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } }, + ["ChanceToDodgeAttacksInfluenceMaven__"] = { type = "Suffix", affix = "of Elevated Redemption", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 90, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(16-18)% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeSpellsInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 90, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(16-18)% chance to Suppress Spell Damage" }, } }, ["IncreasedAilmentEffectOnEnemiesInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(41-60)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 83, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "ailment" }, tradeHashes = { [782230869] = { "(41-60)% increased Effect of Non-Damaging Ailments" }, } }, - ["OnslaughtOnKillInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(8-10)% chance to gain Onslaught for 4 seconds on Kill", "(3-10)% increased Attack, Cast and Movement Speed while you have Onslaught", statOrder = { 2993, 4839 }, level = 90, group = "ChanceToGainOnslaughtOnKillMaven", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, tradeHashes = { [879520319] = { "(3-10)% increased Attack, Cast and Movement Speed while you have Onslaught" }, [2988593550] = { "(8-10)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["OnslaughtOnKillInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(8-10)% chance to gain Onslaught for 4 seconds on Kill", "(3-10)% increased Attack, Cast and Movement Speed while you have Onslaught", statOrder = { 2993, 4839 }, level = 90, group = "ChanceToGainOnslaughtOnKillMaven", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, tradeHashes = { [3023957681] = { "(8-10)% chance to gain Onslaught for 4 seconds on Kill" }, [879520319] = { "(3-10)% increased Attack, Cast and Movement Speed while you have Onslaught" }, } }, ["UnaffectedByDesecratedGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Unaffected by Poison", statOrder = { 5055 }, level = 78, group = "DesecratedGroundEffectEffectivenessMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1953432004] = { "Unaffected by Poison" }, } }, ["SocketedChaosGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "+2 to Level of Socketed Chaos Gems", "+(3-7)% to Quality of Socketed Chaos Gems", statOrder = { 170, 210 }, level = 78, group = "LocalIncreaseSocketedChaosGemLevelMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2062835769] = { "+(3-7)% to Quality of Socketed Chaos Gems" }, [2675603254] = { "+2 to Level of Socketed Chaos Gems" }, } }, ["AdditionalPierceInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Hunter's", "Projectiles Pierce (3-5) additional Targets", statOrder = { 1790 }, level = 90, group = "AdditionalPierce", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce (3-5) additional Targets" }, } }, @@ -4141,12 +4141,12 @@ return { ["RecombinatorSpecialMaximumPowerCharge"] = { type = "Prefix", affix = "Sentinel's", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 68, group = "IncreasedMaximumPowerCharges", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, ["RecombinatorSpecialKeystoneMinionInstability"] = { type = "Suffix", affix = "of the Sentinel", "Minion Instability", statOrder = { 10799 }, level = 68, group = "MinionInstability", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [433293234] = { "Minion Instability" }, } }, ["RecombinatorSpecialKeystoneResoluteTechnique"] = { type = "Suffix", affix = "of the Sentinel", "Resolute Technique", statOrder = { 10829 }, level = 68, group = "ResoluteTechnique", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } }, - ["RecombinatorSpecialKeystoneBloodMagic"] = { type = "Suffix", affix = "of the Sentinel", "Blood Magic", statOrder = { 10773 }, level = 68, group = "BloodMagic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, + ["RecombinatorSpecialKeystoneBloodMagic"] = { type = "Suffix", affix = "of the Sentinel", "Blood Magic", statOrder = { 10773 }, level = 68, group = "BloodMagic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, } }, ["RecombinatorSpecialKeystonePainAttunement"] = { type = "Suffix", affix = "of the Sentinel", "Pain Attunement", statOrder = { 10801 }, level = 68, group = "PainAttunement", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, ["RecombinatorSpecialKeystoneElementalEquilibrium"] = { type = "Suffix", affix = "of the Sentinel", "Elemental Equilibrium", statOrder = { 10782 }, level = 68, group = "ElementalEquilibrium", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1263158408] = { "Elemental Equilibrium" }, } }, ["RecombinatorSpecialKeystoneIronGrip"] = { type = "Suffix", affix = "of the Sentinel", "Iron Grip", statOrder = { 10817 }, level = 68, group = "IronGrip", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [573347393] = { "Iron Grip" }, } }, ["RecombinatorSpecialKeystonePointBlank"] = { type = "Suffix", affix = "of the Sentinel", "Point Blank", statOrder = { 10802 }, level = 68, group = "PointBlank", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2896346114] = { "Point Blank" }, } }, - ["RecombinatorSpecialKeystoneAcrobatics"] = { type = "Suffix", affix = "of the Sentinel", "Acrobatics", statOrder = { 10768 }, level = 68, group = "Acrobatics", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [223497523] = { "" }, [383557755] = { "Acrobatics" }, } }, + ["RecombinatorSpecialKeystoneAcrobatics"] = { type = "Suffix", affix = "of the Sentinel", "Acrobatics", statOrder = { 10768 }, level = 68, group = "Acrobatics", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [383557755] = { "Acrobatics" }, } }, ["RecombinatorSpecialKeystoneGhostReaver"] = { type = "Suffix", affix = "of the Sentinel", "Ghost Reaver", statOrder = { 10788 }, level = 68, group = "KeystoneGhostReaver", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [4272248216] = { "Ghost Reaver" }, } }, ["RecombinatorSpecialKeystoneVaalPact"] = { type = "Suffix", affix = "of the Sentinel", "Vaal Pact", statOrder = { 10822 }, level = 68, group = "VaalPact", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2257118425] = { "Vaal Pact" }, } }, ["RecombinatorSpecialKeystoneElementalOverload"] = { type = "Suffix", affix = "of the Sentinel", "Elemental Overload", statOrder = { 10783 }, level = 68, group = "ElementalOverload", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [3574189159] = { "Elemental Overload" }, } }, @@ -4156,7 +4156,7 @@ return { ["RecombinatorSpecialKeystoneCrimsonDance"] = { type = "Suffix", affix = "of the Sentinel", "Crimson Dance", statOrder = { 10778 }, level = 68, group = "CrimsonDance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [300702212] = { "Crimson Dance" }, } }, ["RecombinatorSpecialKeystonePerfectAgony"] = { type = "Suffix", affix = "of the Sentinel", "Perfect Agony", statOrder = { 10769 }, level = 68, group = "PerfectAgony", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [3884934810] = { "Perfect Agony" }, } }, ["RecombinatorSpecialKeystoneRunebinder"] = { type = "Suffix", affix = "of the Sentinel", "Runebinder", statOrder = { 10809 }, level = 68, group = "Runebinder", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster" }, tradeHashes = { [4080245957] = { "Runebinder" }, } }, - ["RecombinatorSpecialKeystoneMortalConviction"] = { type = "Suffix", affix = "of the Sentinel", "Blood Magic", statOrder = { 10773 }, level = 68, group = "BloodMagic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, + ["RecombinatorSpecialKeystoneMortalConviction"] = { type = "Suffix", affix = "of the Sentinel", "Blood Magic", statOrder = { 10773 }, level = 68, group = "BloodMagic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, } }, ["RecombinatorSpecialKeystoneCallToArms"] = { type = "Suffix", affix = "of the Sentinel", "Call to Arms", statOrder = { 10774 }, level = 68, group = "CallToArms", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3292262540] = { "Call to Arms" }, } }, ["RecombinatorSpecialKeystoneTheAgnostic"] = { type = "Suffix", affix = "of the Sentinel", "The Agnostic", statOrder = { 10800 }, level = 68, group = "TheAgnostic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [462691314] = { "The Agnostic" }, } }, ["RecombinatorSpecialKeystoneSupremeEgo"] = { type = "Suffix", affix = "of the Sentinel", "Supreme Ego", statOrder = { 10818 }, level = 68, group = "SupremeEgo", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1421267186] = { "Supreme Ego" }, } }, diff --git a/src/Data/ModFlask.lua b/src/Data/ModFlask.lua index 9bba56187ea..ec9f032e171 100644 --- a/src/Data/ModFlask.lua +++ b/src/Data/ModFlask.lua @@ -42,21 +42,21 @@ return { ["FlaskDispellsBurning1"] = { type = "Suffix", affix = "of Dousing", "Grants Immunity to Ignite for 4 seconds if used while Ignited", "Removes all Burning when used", statOrder = { 904, 904.1 }, level = 6, group = "FlaskDispellsBurning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental", "fire", "ailment" }, tradeHashes = { [2695527599] = { "Grants Immunity to Ignite for 4 seconds if used while Ignited", "Removes all Burning when used" }, } }, ["FlaskRemovesBleeding1"] = { type = "Suffix", affix = "of Staunching", "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", statOrder = { 900, 900.1 }, level = 8, group = "FlaskRemovesBleeding", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3233646242] = { "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" }, } }, ["FlaskRemovesShock1"] = { type = "Suffix", affix = "of Grounding", "Grants Immunity to Shock for 4 seconds if used while Shocked", statOrder = { 910 }, level = 10, group = "FlaskRemovesShock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental", "lightning", "ailment" }, tradeHashes = { [1823903967] = { "Grants Immunity to Shock for 4 seconds if used while Shocked" }, } }, - ["FlaskExtraCharges1"] = { type = "Prefix", affix = "Wide", "+(16-19) to Maximum Charges", statOrder = { 837 }, level = 2, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(16-19) to Maximum Charges" }, } }, - ["FlaskExtraCharges2__"] = { type = "Prefix", affix = "Plentiful", "+(20-23) to Maximum Charges", statOrder = { 837 }, level = 22, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(20-23) to Maximum Charges" }, } }, - ["FlaskExtraCharges3_"] = { type = "Prefix", affix = "Bountiful", "+(24-27) to Maximum Charges", statOrder = { 837 }, level = 42, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(24-27) to Maximum Charges" }, } }, - ["FlaskExtraCharges4__"] = { type = "Prefix", affix = "Abundant", "+(28-31) to Maximum Charges", statOrder = { 837 }, level = 62, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(28-31) to Maximum Charges" }, } }, - ["FlaskExtraCharges5"] = { type = "Prefix", affix = "Ample", "+(32-35) to Maximum Charges", statOrder = { 837 }, level = 82, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(32-35) to Maximum Charges" }, } }, + ["FlaskExtraCharges1"] = { type = "Prefix", affix = "Wide", "+(16-19) to Maximum Charges", statOrder = { 837 }, level = 2, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [1437957544] = { "+(16-19) to Maximum Charges" }, } }, + ["FlaskExtraCharges2__"] = { type = "Prefix", affix = "Plentiful", "+(20-23) to Maximum Charges", statOrder = { 837 }, level = 22, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [1437957544] = { "+(20-23) to Maximum Charges" }, } }, + ["FlaskExtraCharges3_"] = { type = "Prefix", affix = "Bountiful", "+(24-27) to Maximum Charges", statOrder = { 837 }, level = 42, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [1437957544] = { "+(24-27) to Maximum Charges" }, } }, + ["FlaskExtraCharges4__"] = { type = "Prefix", affix = "Abundant", "+(28-31) to Maximum Charges", statOrder = { 837 }, level = 62, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [1437957544] = { "+(28-31) to Maximum Charges" }, } }, + ["FlaskExtraCharges5"] = { type = "Prefix", affix = "Ample", "+(32-35) to Maximum Charges", statOrder = { 837 }, level = 82, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [1437957544] = { "+(32-35) to Maximum Charges" }, } }, ["FlaskChargesAddedIncreasePercent1"] = { type = "Prefix", affix = "Constant", "(16-20)% increased Charge Recovery", statOrder = { 845 }, level = 3, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(16-20)% increased Charge Recovery" }, } }, ["FlaskChargesAddedIncreasePercent2_"] = { type = "Prefix", affix = "Continuous", "(21-25)% increased Charge Recovery", statOrder = { 845 }, level = 23, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(21-25)% increased Charge Recovery" }, } }, ["FlaskChargesAddedIncreasePercent3_"] = { type = "Prefix", affix = "Endless", "(26-30)% increased Charge Recovery", statOrder = { 845 }, level = 43, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(26-30)% increased Charge Recovery" }, } }, ["FlaskChargesAddedIncreasePercent4_"] = { type = "Prefix", affix = "Bottomless", "(31-45)% increased Charge Recovery", statOrder = { 845 }, level = 63, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(31-45)% increased Charge Recovery" }, } }, ["FlaskChargesAddedIncreasePercent5__"] = { type = "Prefix", affix = "Perpetual", "(46-50)% increased Charge Recovery", statOrder = { 845 }, level = 83, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(46-50)% increased Charge Recovery" }, } }, - ["FlaskIncreasedRecoveryReducedEffect1_"] = { type = "Prefix", affix = "Doled", "(37-42)% increased Charge Recovery", "25% reduced effect", statOrder = { 845, 935 }, level = 20, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(37-42)% increased Charge Recovery" }, [553298121] = { "25% reduced effect" }, } }, - ["FlaskIncreasedRecoveryReducedEffect2_"] = { type = "Prefix", affix = "Provisioned", "(43-48)% increased Charge Recovery", "25% reduced effect", statOrder = { 845, 935 }, level = 36, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(43-48)% increased Charge Recovery" }, [553298121] = { "25% reduced effect" }, } }, - ["FlaskIncreasedRecoveryReducedEffect3____"] = { type = "Prefix", affix = "Measured", "(49-54)% increased Charge Recovery", "25% reduced effect", statOrder = { 845, 935 }, level = 52, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(49-54)% increased Charge Recovery" }, [553298121] = { "25% reduced effect" }, } }, - ["FlaskIncreasedRecoveryReducedEffect4_"] = { type = "Prefix", affix = "Allocated", "(55-60)% increased Charge Recovery", "25% reduced effect", statOrder = { 845, 935 }, level = 68, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(55-60)% increased Charge Recovery" }, [553298121] = { "25% reduced effect" }, } }, - ["FlaskIncreasedRecoveryReducedEffect5"] = { type = "Prefix", affix = "Rationed", "(61-66)% increased Charge Recovery", "25% reduced effect", statOrder = { 845, 935 }, level = 84, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(61-66)% increased Charge Recovery" }, [553298121] = { "25% reduced effect" }, } }, + ["FlaskIncreasedRecoveryReducedEffect1_"] = { type = "Prefix", affix = "Doled", "(37-42)% increased Charge Recovery", "25% reduced effect", statOrder = { 845, 935 }, level = 20, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(37-42)% increased Charge Recovery" }, [2448920197] = { "25% reduced effect" }, } }, + ["FlaskIncreasedRecoveryReducedEffect2_"] = { type = "Prefix", affix = "Provisioned", "(43-48)% increased Charge Recovery", "25% reduced effect", statOrder = { 845, 935 }, level = 36, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(43-48)% increased Charge Recovery" }, [2448920197] = { "25% reduced effect" }, } }, + ["FlaskIncreasedRecoveryReducedEffect3____"] = { type = "Prefix", affix = "Measured", "(49-54)% increased Charge Recovery", "25% reduced effect", statOrder = { 845, 935 }, level = 52, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(49-54)% increased Charge Recovery" }, [2448920197] = { "25% reduced effect" }, } }, + ["FlaskIncreasedRecoveryReducedEffect4_"] = { type = "Prefix", affix = "Allocated", "(55-60)% increased Charge Recovery", "25% reduced effect", statOrder = { 845, 935 }, level = 68, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(55-60)% increased Charge Recovery" }, [2448920197] = { "25% reduced effect" }, } }, + ["FlaskIncreasedRecoveryReducedEffect5"] = { type = "Prefix", affix = "Rationed", "(61-66)% increased Charge Recovery", "25% reduced effect", statOrder = { 845, 935 }, level = 84, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(61-66)% increased Charge Recovery" }, [2448920197] = { "25% reduced effect" }, } }, ["FlaskBuffArmourWhileHealing1"] = { type = "Suffix", affix = "of the Abalone", "(41-45)% increased Armour during Effect", statOrder = { 936 }, level = 6, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, tradeHashes = { [1693613464] = { "(41-45)% increased Armour during Effect" }, } }, ["FlaskBuffArmourWhileHealing2"] = { type = "Suffix", affix = "of the Tortoise", "(46-50)% increased Armour during Effect", statOrder = { 936 }, level = 32, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, tradeHashes = { [1693613464] = { "(46-50)% increased Armour during Effect" }, } }, ["FlaskBuffArmourWhileHealing3"] = { type = "Suffix", affix = "of the Pangolin", "(51-55)% increased Armour during Effect", statOrder = { 936 }, level = 58, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, tradeHashes = { [1693613464] = { "(51-55)% increased Armour during Effect" }, } }, @@ -99,31 +99,31 @@ return { ["FlaskChanceRechargeOnCrit5"] = { type = "Prefix", affix = "Surgeon's", "(31-35)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 842 }, level = 80, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, tradeHashes = { [2858921304] = { "(31-35)% chance to gain a Flask Charge when you deal a Critical Strike" }, } }, ["FlaskFullRechargeOnTakeCrit1"] = { type = "Prefix", affix = "Avenger's", "Recharges 5 Charges when you take a Critical Strike", statOrder = { 844 }, level = 12, group = "FlaskFullRechargeOnTakeCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "critical" }, tradeHashes = { [3662336899] = { "Recharges 5 Charges when you take a Critical Strike" }, } }, ["FlaskDispellsPoison1"] = { type = "Suffix", affix = "of Curing", "Grants Immunity to Poison for 4 seconds if used while Poisoned", statOrder = { 908 }, level = 16, group = "FlaskDispellsPoison", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "poison", "chaos", "ailment" }, tradeHashes = { [3596333054] = { "Grants Immunity to Poison for 4 seconds if used while Poisoned" }, } }, - ["FlaskEffectReducedDuration1"] = { type = "Prefix", affix = "Abecedarian's", "(33-38)% reduced Duration", "25% increased effect", statOrder = { 857, 935 }, level = 20, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% increased effect" }, [156096868] = { "(33-38)% reduced Duration" }, } }, - ["FlaskEffectReducedDuration2"] = { type = "Prefix", affix = "Dabbler's", "(28-32)% reduced Duration", "25% increased effect", statOrder = { 857, 935 }, level = 50, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% increased effect" }, [156096868] = { "(28-32)% reduced Duration" }, } }, - ["FlaskEffectReducedDuration3"] = { type = "Prefix", affix = "Alchemist's", "(23-27)% reduced Duration", "25% increased effect", statOrder = { 857, 935 }, level = 80, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% increased effect" }, [156096868] = { "(23-27)% reduced Duration" }, } }, - ["FlaskChargesUsed1"] = { type = "Prefix", affix = "Apprentice's", "(14-16)% reduced Charges per use", statOrder = { 846 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(14-16)% reduced Charges per use" }, } }, - ["FlaskChargesUsed2"] = { type = "Prefix", affix = "Scholar's", "(17-19)% reduced Charges per use", statOrder = { 846 }, level = 31, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(17-19)% reduced Charges per use" }, } }, - ["FlaskChargesUsed3__"] = { type = "Prefix", affix = "Practitioner's", "(20-22)% reduced Charges per use", statOrder = { 846 }, level = 48, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(20-22)% reduced Charges per use" }, } }, - ["FlaskChargesUsed4__"] = { type = "Prefix", affix = "Brewer's", "(23-25)% reduced Charges per use", statOrder = { 846 }, level = 65, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(23-25)% reduced Charges per use" }, } }, - ["FlaskChargesUsed5"] = { type = "Prefix", affix = "Chemist's", "(26-28)% reduced Charges per use", statOrder = { 846 }, level = 82, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(26-28)% reduced Charges per use" }, } }, - ["FlaskIncreasedDuration2"] = { type = "Prefix", affix = "Investigator's", "(16-20)% increased Duration", statOrder = { 857 }, level = 20, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(16-20)% increased Duration" }, } }, - ["FlaskIncreasedDuration3_"] = { type = "Prefix", affix = "Analyst's", "(21-25)% increased Duration", statOrder = { 857 }, level = 36, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(21-25)% increased Duration" }, } }, - ["FlaskIncreasedDuration4"] = { type = "Prefix", affix = "Examiner's", "(26-30)% increased Duration", statOrder = { 857 }, level = 52, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(26-30)% increased Duration" }, } }, - ["FlaskIncreasedDuration5__"] = { type = "Prefix", affix = "Clinician's", "(31-35)% increased Duration", statOrder = { 857 }, level = 68, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(31-35)% increased Duration" }, } }, - ["FlaskIncreasedDuration6"] = { type = "Prefix", affix = "Experimenter's", "(36-40)% increased Duration", statOrder = { 857 }, level = 84, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(36-40)% increased Duration" }, } }, + ["FlaskEffectReducedDuration1"] = { type = "Prefix", affix = "Abecedarian's", "(33-38)% reduced Duration", "25% increased effect", statOrder = { 857, 935 }, level = 20, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(33-38)% reduced Duration" }, [2448920197] = { "25% increased effect" }, } }, + ["FlaskEffectReducedDuration2"] = { type = "Prefix", affix = "Dabbler's", "(28-32)% reduced Duration", "25% increased effect", statOrder = { 857, 935 }, level = 50, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(28-32)% reduced Duration" }, [2448920197] = { "25% increased effect" }, } }, + ["FlaskEffectReducedDuration3"] = { type = "Prefix", affix = "Alchemist's", "(23-27)% reduced Duration", "25% increased effect", statOrder = { 857, 935 }, level = 80, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(23-27)% reduced Duration" }, [2448920197] = { "25% increased effect" }, } }, + ["FlaskChargesUsed1"] = { type = "Prefix", affix = "Apprentice's", "(14-16)% reduced Charges per use", statOrder = { 846 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(14-16)% reduced Charges per use" }, } }, + ["FlaskChargesUsed2"] = { type = "Prefix", affix = "Scholar's", "(17-19)% reduced Charges per use", statOrder = { 846 }, level = 31, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(17-19)% reduced Charges per use" }, } }, + ["FlaskChargesUsed3__"] = { type = "Prefix", affix = "Practitioner's", "(20-22)% reduced Charges per use", statOrder = { 846 }, level = 48, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(20-22)% reduced Charges per use" }, } }, + ["FlaskChargesUsed4__"] = { type = "Prefix", affix = "Brewer's", "(23-25)% reduced Charges per use", statOrder = { 846 }, level = 65, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(23-25)% reduced Charges per use" }, } }, + ["FlaskChargesUsed5"] = { type = "Prefix", affix = "Chemist's", "(26-28)% reduced Charges per use", statOrder = { 846 }, level = 82, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(26-28)% reduced Charges per use" }, } }, + ["FlaskIncreasedDuration2"] = { type = "Prefix", affix = "Investigator's", "(16-20)% increased Duration", statOrder = { 857 }, level = 20, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(16-20)% increased Duration" }, } }, + ["FlaskIncreasedDuration3_"] = { type = "Prefix", affix = "Analyst's", "(21-25)% increased Duration", statOrder = { 857 }, level = 36, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(21-25)% increased Duration" }, } }, + ["FlaskIncreasedDuration4"] = { type = "Prefix", affix = "Examiner's", "(26-30)% increased Duration", statOrder = { 857 }, level = 52, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(26-30)% increased Duration" }, } }, + ["FlaskIncreasedDuration5__"] = { type = "Prefix", affix = "Clinician's", "(31-35)% increased Duration", statOrder = { 857 }, level = 68, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(31-35)% increased Duration" }, } }, + ["FlaskIncreasedDuration6"] = { type = "Prefix", affix = "Experimenter's", "(36-40)% increased Duration", statOrder = { 857 }, level = 84, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(36-40)% increased Duration" }, } }, ["FlaskFullRechargeOnHit1"] = { type = "Prefix", affix = "Delinquent's", "Gain 1 Charge when you are Hit by an Enemy", statOrder = { 840 }, level = 12, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [1582728645] = { "Gain 1 Charge when you are Hit by an Enemy" }, } }, ["FlaskFullRechargeOnHit2_"] = { type = "Prefix", affix = "Transgressor's", "Gain 1 Charge when you are Hit by an Enemy", statOrder = { 840 }, level = 29, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [1582728645] = { "Gain 1 Charge when you are Hit by an Enemy" }, } }, ["FlaskFullRechargeOnHit3_"] = { type = "Prefix", affix = "Sinner's", "Gain 2 Charges when you are Hit by an Enemy", statOrder = { 840 }, level = 46, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [1582728645] = { "Gain 2 Charges when you are Hit by an Enemy" }, } }, ["FlaskFullRechargeOnHit4_"] = { type = "Prefix", affix = "Masochist's", "Gain 2 Charges when you are Hit by an Enemy", statOrder = { 840 }, level = 63, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [1582728645] = { "Gain 2 Charges when you are Hit by an Enemy" }, } }, ["FlaskFullRechargeOnHit5___"] = { type = "Prefix", affix = "Flagellant's", "Gain 3 Charges when you are Hit by an Enemy", statOrder = { 840 }, level = 80, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [1582728645] = { "Gain 3 Charges when you are Hit by an Enemy" }, } }, - ["FlaskIncreasedHealingCharges1"] = { type = "Prefix", affix = "Nitrate", "(20-25)% increased Charges per use", "(21-26)% increased Amount Recovered", statOrder = { 846, 854 }, level = 10, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(21-26)% increased Amount Recovered" }, [3139816101] = { "(20-25)% increased Charges per use" }, } }, - ["FlaskIncreasedHealingCharges2"] = { type = "Prefix", affix = "Dolomite", "(20-25)% increased Charges per use", "(27-32)% increased Amount Recovered", statOrder = { 846, 854 }, level = 28, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(27-32)% increased Amount Recovered" }, [3139816101] = { "(20-25)% increased Charges per use" }, } }, - ["FlaskIncreasedHealingCharges3"] = { type = "Prefix", affix = "Kieserite", "(20-25)% increased Charges per use", "(33-38)% increased Amount Recovered", statOrder = { 846, 854 }, level = 46, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(33-38)% increased Amount Recovered" }, [3139816101] = { "(20-25)% increased Charges per use" }, } }, - ["FlaskIncreasedHealingCharges4____"] = { type = "Prefix", affix = "Kainite", "(20-25)% increased Charges per use", "(39-44)% increased Amount Recovered", statOrder = { 846, 854 }, level = 64, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(39-44)% increased Amount Recovered" }, [3139816101] = { "(20-25)% increased Charges per use" }, } }, - ["FlaskIncreasedHealingCharges5"] = { type = "Prefix", affix = "Gypsum", "(20-25)% increased Charges per use", "(45-50)% increased Amount Recovered", statOrder = { 846, 854 }, level = 82, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(45-50)% increased Amount Recovered" }, [3139816101] = { "(20-25)% increased Charges per use" }, } }, + ["FlaskIncreasedHealingCharges1"] = { type = "Prefix", affix = "Nitrate", "(20-25)% increased Charges per use", "(21-26)% increased Amount Recovered", statOrder = { 846, 854 }, level = 10, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(21-26)% increased Amount Recovered" }, [388617051] = { "(20-25)% increased Charges per use" }, } }, + ["FlaskIncreasedHealingCharges2"] = { type = "Prefix", affix = "Dolomite", "(20-25)% increased Charges per use", "(27-32)% increased Amount Recovered", statOrder = { 846, 854 }, level = 28, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(27-32)% increased Amount Recovered" }, [388617051] = { "(20-25)% increased Charges per use" }, } }, + ["FlaskIncreasedHealingCharges3"] = { type = "Prefix", affix = "Kieserite", "(20-25)% increased Charges per use", "(33-38)% increased Amount Recovered", statOrder = { 846, 854 }, level = 46, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(33-38)% increased Amount Recovered" }, [388617051] = { "(20-25)% increased Charges per use" }, } }, + ["FlaskIncreasedHealingCharges4____"] = { type = "Prefix", affix = "Kainite", "(20-25)% increased Charges per use", "(39-44)% increased Amount Recovered", statOrder = { 846, 854 }, level = 64, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(39-44)% increased Amount Recovered" }, [388617051] = { "(20-25)% increased Charges per use" }, } }, + ["FlaskIncreasedHealingCharges5"] = { type = "Prefix", affix = "Gypsum", "(20-25)% increased Charges per use", "(45-50)% increased Amount Recovered", statOrder = { 846, 854 }, level = 82, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(45-50)% increased Amount Recovered" }, [388617051] = { "(20-25)% increased Charges per use" }, } }, ["FlaskManaRecoveryAtEnd1_"] = { type = "Prefix", affix = "Foreboding", "66% increased Amount Recovered", "Mana Recovery occurs instantly at the end of Effect", statOrder = { 854, 865 }, level = 16, group = "FlaskManaRecoveryAtEnd", weightKey = { "utility_flask", "life_flask", "default", }, weightVal = { 0, 0, 3000 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [4204954479] = { "Mana Recovery occurs instantly at the end of Effect" }, [700317374] = { "66% increased Amount Recovered" }, } }, - ["FlaskEffectNotRemovedOnFullMana1"] = { type = "Prefix", affix = "Enduring", "66% reduced Amount Recovered", "Effect is not removed when Unreserved Mana is Filled", "Effect does not Queue", statOrder = { 854, 864, 864.1 }, level = 16, group = "FlaskEffectNotRemovedOnFullManaReducedRecovery", weightKey = { "utility_flask", "life_flask", "default", }, weightVal = { 0, 0, 3000 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [700317374] = { "66% reduced Amount Recovered" }, [156096868] = { "" }, [3969608626] = { "Effect is not removed when Unreserved Mana is Filled", "Effect does not Queue" }, } }, + ["FlaskEffectNotRemovedOnFullMana1"] = { type = "Prefix", affix = "Enduring", "66% reduced Amount Recovered", "Effect is not removed when Unreserved Mana is Filled", "Effect does not Queue", statOrder = { 854, 864, 864.1 }, level = 16, group = "FlaskEffectNotRemovedOnFullManaReducedRecovery", weightKey = { "utility_flask", "life_flask", "default", }, weightVal = { 0, 0, 3000 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1256719186] = { "" }, [3969608626] = { "Effect is not removed when Unreserved Mana is Filled", "Effect does not Queue" }, [700317374] = { "66% reduced Amount Recovered" }, } }, ["FlaskBuffAttackLifeLeechWhileHealing1"] = { type = "Suffix", affix = "of Bloodshed", "0.4% of Attack Damage Leeched as Life during Effect", statOrder = { 951 }, level = 10, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, tradeHashes = { [1173558568] = { "0.4% of Attack Damage Leeched as Life during Effect" }, } }, ["FlaskBuffAttackLifeLeechWhileHealing2"] = { type = "Suffix", affix = "of Gore", "0.5% of Attack Damage Leeched as Life during Effect", statOrder = { 951 }, level = 20, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, tradeHashes = { [1173558568] = { "0.5% of Attack Damage Leeched as Life during Effect" }, } }, ["FlaskBuffAttackLifeLeechWhileHealing3"] = { type = "Suffix", affix = "of Carnage", "0.6% of Attack Damage Leeched as Life during Effect", statOrder = { 951 }, level = 40, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, tradeHashes = { [1173558568] = { "0.6% of Attack Damage Leeched as Life during Effect" }, } }, diff --git a/src/Data/ModFoulborn.lua b/src/Data/ModFoulborn.lua index ea90bb2cfaa..8e1dba42243 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" }, } }, + ["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 = { [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 = { [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" }, } }, + ["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" }, } }, + ["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" }, } }, + ["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" }, } }, @@ -77,7 +89,7 @@ return { ["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] = { "" }, } }, + ["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" }, } }, ["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" }, } }, @@ -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" }, } }, + ["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" }, } }, ["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" }, } }, @@ -216,19 +238,19 @@ return { ["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" }, } }, + ["MutatedUniqueJewel125GrantsAllBonusesOfUnallocatedNotablesInRadius"] = { affix = "", "Grants all bonuses of Unallocated Notable Passive Skills in Radius", statOrder = { 7957 }, level = 1, group = "GrantsAllBonusesOfUnallocatedNotablesInRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [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] = { "" }, } }, + ["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" }, } }, ["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" }, } }, + ["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 = { [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" }, } }, + ["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 = { [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" }, } }, + ["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 = { [2513998383] = { "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" }, } }, ["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] = { "" }, } }, + ["MutatedUniqueBodyInt3BloodMagic"] = { affix = "", "Blood Magic", statOrder = { 10773 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, } }, ["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" }, } }, diff --git a/src/Data/ModGraft.lua b/src/Data/ModGraft.lua index a81a21963f7..42f25cd4636 100644 --- a/src/Data/ModGraft.lua +++ b/src/Data/ModGraft.lua @@ -7,11 +7,11 @@ return { ["GraftPrefixUulnetolFlatAddedPhysical3"] = { type = "Prefix", affix = "Weighted", "Adds (2-3) to (10-12) Physical Damage", statOrder = { 1265 }, level = 44, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [960081730] = { "Adds (2-3) to (10-12) Physical Damage" }, } }, ["GraftPrefixUulnetolFlatAddedPhysical4"] = { type = "Prefix", affix = "Dense", "Adds (2-4) to (13-15) Physical Damage", statOrder = { 1265 }, level = 66, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [960081730] = { "Adds (2-4) to (13-15) Physical Damage" }, } }, ["GraftPrefixUulnetolFlatAddedPhysical5"] = { type = "Prefix", affix = "Hefty", "Adds (3-5) to (14-18) Physical Damage", statOrder = { 1265 }, level = 82, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [960081730] = { "Adds (3-5) to (14-18) Physical Damage" }, } }, - ["GraftPrefixUulnetolBleedChance1"] = { type = "Prefix", affix = "Pointed", "Attacks have (5-9)% chance to cause Bleeding", statOrder = { 2489 }, level = 1, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3204820200] = { "Attacks have (5-9)% chance to cause Bleeding" }, } }, - ["GraftPrefixUulnetolBleedChance2"] = { type = "Prefix", affix = "Needling", "Attacks have (10-14)% chance to cause Bleeding", statOrder = { 2489 }, level = 22, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3204820200] = { "Attacks have (10-14)% chance to cause Bleeding" }, } }, - ["GraftPrefixUulnetolBleedChance3"] = { type = "Prefix", affix = "Cutting", "Attacks have (15-19)% chance to cause Bleeding", statOrder = { 2489 }, level = 44, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3204820200] = { "Attacks have (15-19)% chance to cause Bleeding" }, } }, - ["GraftPrefixUulnetolBleedChance4"] = { type = "Prefix", affix = "Biting", "Attacks have (20-24)% chance to cause Bleeding", statOrder = { 2489 }, level = 66, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3204820200] = { "Attacks have (20-24)% chance to cause Bleeding" }, } }, - ["GraftPrefixUulnetolBleedChance5"] = { type = "Prefix", affix = "Incisive", "Attacks have (25-30)% chance to cause Bleeding", statOrder = { 2489 }, level = 82, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3204820200] = { "Attacks have (25-30)% chance to cause Bleeding" }, } }, + ["GraftPrefixUulnetolBleedChance1"] = { type = "Prefix", affix = "Pointed", "Attacks have (5-9)% chance to cause Bleeding", statOrder = { 2489 }, level = 1, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1923879260] = { "Attacks have (5-9)% chance to cause Bleeding" }, } }, + ["GraftPrefixUulnetolBleedChance2"] = { type = "Prefix", affix = "Needling", "Attacks have (10-14)% chance to cause Bleeding", statOrder = { 2489 }, level = 22, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1923879260] = { "Attacks have (10-14)% chance to cause Bleeding" }, } }, + ["GraftPrefixUulnetolBleedChance3"] = { type = "Prefix", affix = "Cutting", "Attacks have (15-19)% chance to cause Bleeding", statOrder = { 2489 }, level = 44, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1923879260] = { "Attacks have (15-19)% chance to cause Bleeding" }, } }, + ["GraftPrefixUulnetolBleedChance4"] = { type = "Prefix", affix = "Biting", "Attacks have (20-24)% chance to cause Bleeding", statOrder = { 2489 }, level = 66, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1923879260] = { "Attacks have (20-24)% chance to cause Bleeding" }, } }, + ["GraftPrefixUulnetolBleedChance5"] = { type = "Prefix", affix = "Incisive", "Attacks have (25-30)% chance to cause Bleeding", statOrder = { 2489 }, level = 82, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1923879260] = { "Attacks have (25-30)% chance to cause Bleeding" }, } }, ["GraftPrefixUulnetolDamageOverTimeMultiplier1"] = { type = "Prefix", affix = "Putrefying", "+(5-9)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 22, group = "GraftPrefixUulnetolDamageOverTimeMultiplier", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3988349707] = { "+(5-9)% to Damage over Time Multiplier" }, } }, ["GraftPrefixUulnetolDamageOverTimeMultiplier2"] = { type = "Prefix", affix = "Sickening", "+(10-14)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 66, group = "GraftPrefixUulnetolDamageOverTimeMultiplier", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3988349707] = { "+(10-14)% to Damage over Time Multiplier" }, } }, ["GraftPrefixUulnetolDamageOverTimeMultiplier3"] = { type = "Prefix", affix = "Repugnant", "+(15-20)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 82, group = "GraftPrefixUulnetolDamageOverTimeMultiplier", weightKey = { "graft_uulnetol", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [3988349707] = { "+(15-20)% to Damage over Time Multiplier" }, } }, @@ -191,11 +191,11 @@ return { ["GraftPrefixEshSpellDamage8"] = { type = "Prefix", affix = "Sorcerer's", "(40-44)% increased Spell Damage", statOrder = { 1223 }, level = 74, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(40-44)% increased Spell Damage" }, } }, ["GraftPrefixEshSpellDamage9"] = { type = "Prefix", affix = "Magician's", "(45-49)% increased Spell Damage", statOrder = { 1223 }, level = 82, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(45-49)% increased Spell Damage" }, } }, ["GraftPrefixEshSpellDamage10"] = { type = "Prefix", affix = "Lich's", "(50-55)% increased Spell Damage", statOrder = { 1223 }, level = 85, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(50-55)% increased Spell Damage" }, } }, - ["GraftPrefixTulFreezeChance1"] = { type = "Prefix", affix = "Frigid", "(3-5)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [44571480] = { "(3-5)% chance to Freeze" }, } }, - ["GraftPrefixTulFreezeChance2"] = { type = "Prefix", affix = "Frosted", "(6-8)% chance to Freeze", statOrder = { 2029 }, level = 22, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [44571480] = { "(6-8)% chance to Freeze" }, } }, - ["GraftPrefixTulFreezeChance3"] = { type = "Prefix", affix = "Bitter", "(9-11)% chance to Freeze", statOrder = { 2029 }, level = 44, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [44571480] = { "(9-11)% chance to Freeze" }, } }, - ["GraftPrefixTulFreezeChance4"] = { type = "Prefix", affix = "Wintry", "(12-14)% chance to Freeze", statOrder = { 2029 }, level = 66, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [44571480] = { "(12-14)% chance to Freeze" }, } }, - ["GraftPrefixTulFreezeChance5"] = { type = "Prefix", affix = "Freezing", "(15-17)% chance to Freeze", statOrder = { 2029 }, level = 82, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [44571480] = { "(15-17)% chance to Freeze" }, } }, + ["GraftPrefixTulFreezeChance1"] = { type = "Prefix", affix = "Frigid", "(3-5)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2309614417] = { "(3-5)% chance to Freeze" }, } }, + ["GraftPrefixTulFreezeChance2"] = { type = "Prefix", affix = "Frosted", "(6-8)% chance to Freeze", statOrder = { 2029 }, level = 22, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2309614417] = { "(6-8)% chance to Freeze" }, } }, + ["GraftPrefixTulFreezeChance3"] = { type = "Prefix", affix = "Bitter", "(9-11)% chance to Freeze", statOrder = { 2029 }, level = 44, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2309614417] = { "(9-11)% chance to Freeze" }, } }, + ["GraftPrefixTulFreezeChance4"] = { type = "Prefix", affix = "Wintry", "(12-14)% chance to Freeze", statOrder = { 2029 }, level = 66, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2309614417] = { "(12-14)% chance to Freeze" }, } }, + ["GraftPrefixTulFreezeChance5"] = { type = "Prefix", affix = "Freezing", "(15-17)% chance to Freeze", statOrder = { 2029 }, level = 82, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2309614417] = { "(15-17)% chance to Freeze" }, } }, ["GraftPrefixTulFlatAddedColdDamage1"] = { type = "Prefix", affix = "Icy", "Adds (3-4) to (6-8) Cold Damage", statOrder = { 1368 }, level = 1, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2387423236] = { "Adds (3-4) to (6-8) Cold Damage" }, } }, ["GraftPrefixTulFlatAddedColdDamage2"] = { type = "Prefix", affix = "Cold", "Adds (4-7) to (11-15) Cold Damage", statOrder = { 1368 }, level = 22, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2387423236] = { "Adds (4-7) to (11-15) Cold Damage" }, } }, ["GraftPrefixTulFlatAddedColdDamage3"] = { type = "Prefix", affix = "Brumal", "Adds (10-12) to (15-19) Cold Damage", statOrder = { 1368 }, level = 44, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2387423236] = { "Adds (10-12) to (15-19) Cold Damage" }, } }, @@ -257,224 +257,224 @@ return { ["GraftPrefixTulMinionResistances1"] = { type = "Prefix", affix = "Noble's", "Minions have +(5-8)% to all Elemental Resistances", statOrder = { 2912 }, level = 22, group = "GraftPrefixTulMinionResistances", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1423639565] = { "Minions have +(5-8)% to all Elemental Resistances" }, } }, ["GraftPrefixTulMinionResistances2"] = { type = "Prefix", affix = "Lord's", "Minions have +(9-12)% to all Elemental Resistances", statOrder = { 2912 }, level = 44, group = "GraftPrefixTulMinionResistances", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1423639565] = { "Minions have +(9-12)% to all Elemental Resistances" }, } }, ["GraftPrefixTulMinionResistances3"] = { type = "Prefix", affix = "King's", "Minions have +(13-16)% to all Elemental Resistances", statOrder = { 2912 }, level = 66, group = "GraftPrefixTulMinionResistances", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1423639565] = { "Minions have +(13-16)% to all Elemental Resistances" }, } }, - ["GraftSuffixStunDuration1"] = { type = "Suffix", affix = "of Slamming", "Skills used by this Graft have (10-19)% increased Stun Duration", statOrder = { 10923 }, level = 44, group = "GraftSuffixStunDuration", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3150918189] = { "Skills used by this Graft have (10-19)% increased Stun Duration" }, } }, - ["GraftSuffixStunDuration2"] = { type = "Suffix", affix = "of Thudding", "Skills used by this Graft have (20-29)% increased Stun Duration", statOrder = { 10923 }, level = 66, group = "GraftSuffixStunDuration", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3150918189] = { "Skills used by this Graft have (20-29)% increased Stun Duration" }, } }, - ["GraftSuffixStunDuration3"] = { type = "Suffix", affix = "of Dazing", "Skills used by this Graft have (30-39)% increased Stun Duration", statOrder = { 10923 }, level = 82, group = "GraftSuffixStunDuration", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3150918189] = { "Skills used by this Graft have (30-39)% increased Stun Duration" }, } }, - ["GraftSuffixAreaOfEffect1"] = { type = "Suffix", affix = "of Reach", "Skills used by this Graft have (8-12)% increased Area of Effect", statOrder = { 10870 }, level = 1, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [137115575] = { "Skills used by this Graft have (8-12)% increased Area of Effect" }, } }, - ["GraftSuffixAreaOfEffect2"] = { type = "Suffix", affix = "of Grasping", "Skills used by this Graft have (14-16)% increased Area of Effect", statOrder = { 10870 }, level = 22, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [137115575] = { "Skills used by this Graft have (14-16)% increased Area of Effect" }, } }, - ["GraftSuffixAreaOfEffect3"] = { type = "Suffix", affix = "of Extension", "Skills used by this Graft have (18-22)% increased Area of Effect", statOrder = { 10870 }, level = 44, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, 0 }, modTags = { }, tradeHashes = { [137115575] = { "Skills used by this Graft have (18-22)% increased Area of Effect" }, } }, - ["GraftSuffixAreaOfEffect4"] = { type = "Suffix", affix = "of Broadening", "Skills used by this Graft have (24-28)% increased Area of Effect", statOrder = { 10870 }, level = 66, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [137115575] = { "Skills used by this Graft have (24-28)% increased Area of Effect" }, } }, - ["GraftSuffixAreaOfEffect5"] = { type = "Suffix", affix = "of the Expanse", "Skills used by this Graft have (30-34)% increased Area of Effect", statOrder = { 10870 }, level = 82, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [137115575] = { "Skills used by this Graft have (30-34)% increased Area of Effect" }, } }, - ["GraftSuffixHinderOnHit1"] = { type = "Suffix", affix = "of Hindrance", "Spells used by this Graft Hinder Enemies on Hit", statOrder = { 10922 }, level = 44, group = "GraftSuffixHinderOnHit", weightKey = { "graft_tul_tornado", "graft_esh_lightning_hands", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [463925000] = { "Spells used by this Graft Hinder Enemies on Hit" }, } }, - ["GraftSuffixChainingDistance1"] = { type = "Suffix", affix = "of Ricocheting", "Skills used by this Graft have (40-69)% increased Chaining range", statOrder = { 10872 }, level = 44, group = "GraftSuffixChainingDistance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3533780673] = { "Skills used by this Graft have (40-69)% increased Chaining range" }, } }, - ["GraftSuffixChainingDistance2"] = { type = "Suffix", affix = "of Chaining", "Skills used by this Graft have (70-100)% increased Chaining range", statOrder = { 10872 }, level = 82, group = "GraftSuffixChainingDistance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [3533780673] = { "Skills used by this Graft have (70-100)% increased Chaining range" }, } }, - ["GraftSuffixAdditionalProjectiles1"] = { type = "Suffix", affix = "of Splitting", "Skills used by this Graft fire 2 additional Projectiles", statOrder = { 10913 }, level = 44, group = "GraftSuffixAdditionalProjectiles", weightKey = { "graft_xoph_molten_shell", "graft_tul_tornado", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHashes = { [2858824325] = { "Skills used by this Graft fire 2 additional Projectiles" }, } }, - ["GraftSuffixAdditionalProjectiles2"] = { type = "Suffix", affix = "of Splintering", "Skills used by this Graft fire 3 additional Projectiles", statOrder = { 10913 }, level = 82, group = "GraftSuffixAdditionalProjectiles", weightKey = { "graft_xoph_molten_shell", "graft_tul_tornado", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHashes = { [2858824325] = { "Skills used by this Graft fire 3 additional Projectiles" }, } }, - ["GraftSuffixProjectileSpeed1"] = { type = "Suffix", affix = "of Flight", "Skills used by this Graft have (8-12)% increased Projectile Speed", statOrder = { 10915 }, level = 1, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [76615773] = { "Skills used by this Graft have (8-12)% increased Projectile Speed" }, } }, - ["GraftSuffixProjectileSpeed2"] = { type = "Suffix", affix = "of Gliding", "Skills used by this Graft have (13-17)% increased Projectile Speed", statOrder = { 10915 }, level = 22, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [76615773] = { "Skills used by this Graft have (13-17)% increased Projectile Speed" }, } }, - ["GraftSuffixProjectileSpeed3"] = { type = "Suffix", affix = "of Homing", "Skills used by this Graft have (18-22)% increased Projectile Speed", statOrder = { 10915 }, level = 44, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [76615773] = { "Skills used by this Graft have (18-22)% increased Projectile Speed" }, } }, - ["GraftSuffixProjectileSpeed4"] = { type = "Suffix", affix = "of Launching", "Skills used by this Graft have (23-27)% increased Projectile Speed", statOrder = { 10915 }, level = 66, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [76615773] = { "Skills used by this Graft have (23-27)% increased Projectile Speed" }, } }, - ["GraftSuffixProjectileSpeed5"] = { type = "Suffix", affix = "of Soaring", "Skills used by this Graft have (28-32)% increased Projectile Speed", statOrder = { 10915 }, level = 82, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [76615773] = { "Skills used by this Graft have (28-32)% increased Projectile Speed" }, } }, - ["GraftSuffixIncreasedDamage1"] = { type = "Suffix", affix = "of Blasting", "Skills used by this Graft deal (10-29)% increased Damage", statOrder = { 10885 }, level = 1, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (10-29)% increased Damage" }, } }, - ["GraftSuffixIncreasedDamage2"] = { type = "Suffix", affix = "of Smashing", "Skills used by this Graft deal (30-49)% increased Damage", statOrder = { 10885 }, level = 11, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (30-49)% increased Damage" }, } }, - ["GraftSuffixIncreasedDamage3"] = { type = "Suffix", affix = "of Shattering", "Skills used by this Graft deal (50-69)% increased Damage", statOrder = { 10885 }, level = 22, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (50-69)% increased Damage" }, } }, - ["GraftSuffixIncreasedDamage4"] = { type = "Suffix", affix = "of Wrecking", "Skills used by this Graft deal (70-89)% increased Damage", statOrder = { 10885 }, level = 33, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (70-89)% increased Damage" }, } }, - ["GraftSuffixIncreasedDamage5"] = { type = "Suffix", affix = "of Destroying", "Skills used by this Graft deal (90-109)% increased Damage", statOrder = { 10885 }, level = 44, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (90-109)% increased Damage" }, } }, - ["GraftSuffixIncreasedDamage6"] = { type = "Suffix", affix = "of Crushing", "Skills used by this Graft deal (110-129)% increased Damage", statOrder = { 10885 }, level = 55, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (110-129)% increased Damage" }, } }, - ["GraftSuffixIncreasedDamage7"] = { type = "Suffix", affix = "of Disintegration", "Skills used by this Graft deal (130-149)% increased Damage", statOrder = { 10885 }, level = 66, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (130-149)% increased Damage" }, } }, - ["GraftSuffixIncreasedDamage8"] = { type = "Suffix", affix = "of Demolishing", "Skills used by this Graft deal (150-169)% increased Damage", statOrder = { 10885 }, level = 74, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (150-169)% increased Damage" }, } }, - ["GraftSuffixIncreasedDamage9"] = { type = "Suffix", affix = "of Ruination", "Skills used by this Graft deal (170-189)% increased Damage", statOrder = { 10885 }, level = 82, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (170-189)% increased Damage" }, } }, - ["GraftSuffixIncreasedDamage10"] = { type = "Suffix", affix = "of Annihilation", "Skills used by this Graft deal (190-220)% increased Damage", statOrder = { 10885 }, level = 85, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (190-220)% increased Damage" }, } }, - ["GraftSuffixIncreasedDuration1"] = { type = "Suffix", affix = "of Lingering", "Skills used by this Graft have (10-14)% increased Skill Effect Duration", statOrder = { 10888 }, level = 1, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (10-14)% increased Skill Effect Duration" }, } }, - ["GraftSuffixIncreasedDuration2"] = { type = "Suffix", affix = "of Lasting", "Skills used by this Graft have (15-20)% increased Skill Effect Duration", statOrder = { 10888 }, level = 22, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (15-20)% increased Skill Effect Duration" }, } }, - ["GraftSuffixIncreasedDuration3"] = { type = "Suffix", affix = "of the Unending", "Skills used by this Graft have (20-24)% increased Skill Effect Duration", statOrder = { 10888 }, level = 44, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (20-24)% increased Skill Effect Duration" }, } }, - ["GraftSuffixIncreasedDuration4"] = { type = "Suffix", affix = "of Permanence", "Skills used by this Graft have (25-29)% increased Skill Effect Duration", statOrder = { 10888 }, level = 66, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (25-29)% increased Skill Effect Duration" }, } }, - ["GraftSuffixIncreasedDuration5"] = { type = "Suffix", affix = "of Eternity", "Skills used by this Graft have (30-35)% increased Skill Effect Duration", statOrder = { 10888 }, level = 82, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (30-35)% increased Skill Effect Duration" }, } }, - ["GraftSuffixCooldownSpeed1"] = { type = "Suffix", affix = "of the Creek", "Skills used by this Graft have (10-14)% increased Cooldown Recovery Rate", statOrder = { 10878 }, level = 1, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have (10-14)% increased Cooldown Recovery Rate" }, } }, - ["GraftSuffixCooldownSpeed2"] = { type = "Suffix", affix = "of the Stream", "Skills used by this Graft have (15-20)% increased Cooldown Recovery Rate", statOrder = { 10878 }, level = 22, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have (15-20)% increased Cooldown Recovery Rate" }, } }, - ["GraftSuffixCooldownSpeed3"] = { type = "Suffix", affix = "of the River", "Skills used by this Graft have (20-24)% increased Cooldown Recovery Rate", statOrder = { 10878 }, level = 44, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 700, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have (20-24)% increased Cooldown Recovery Rate" }, } }, - ["GraftSuffixCooldownSpeed4"] = { type = "Suffix", affix = "of the Tide", "Skills used by this Graft have (25-29)% increased Cooldown Recovery Rate", statOrder = { 10878 }, level = 66, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have (25-29)% increased Cooldown Recovery Rate" }, } }, - ["GraftSuffixCooldownSpeed5"] = { type = "Suffix", affix = "of the Oceans", "Skills used by this Graft have (30-35)% increased Cooldown Recovery Rate", statOrder = { 10878 }, level = 82, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 300, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have (30-35)% increased Cooldown Recovery Rate" }, } }, - ["GraftSuffixSkipCooldown1"] = { type = "Suffix", affix = "of Chronomancy", "Skills used by this Graft have 25% chance to not consume a Cooldown on use", statOrder = { 10921 }, level = 66, group = "GraftSuffixSkipCooldown", weightKey = { "graft_esh_bolt_ring", "graft_uulnetol_hand_slam", "graft_xoph_cremations", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [2520970416] = { "Skills used by this Graft have 25% chance to not consume a Cooldown on use" }, } }, - ["GraftSuffixAttackSpeed1"] = { type = "Suffix", affix = "of Speed", "Skills used by this Graft have (10-24)% increased Attack Speed", statOrder = { 10871 }, level = 22, group = "GraftSuffixAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [679415175] = { "Skills used by this Graft have (10-24)% increased Attack Speed" }, } }, - ["GraftSuffixAttackSpeed2"] = { type = "Suffix", affix = "of Quickness", "Skills used by this Graft have (25-39)% increased Attack Speed", statOrder = { 10871 }, level = 44, group = "GraftSuffixAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [679415175] = { "Skills used by this Graft have (25-39)% increased Attack Speed" }, } }, - ["GraftSuffixAttackSpeed3"] = { type = "Suffix", affix = "of Agility", "Skills used by this Graft have (40-55)% increased Attack Speed", statOrder = { 10871 }, level = 66, group = "GraftSuffixAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [679415175] = { "Skills used by this Graft have (40-55)% increased Attack Speed" }, } }, - ["GraftSuffixSkillLevel1"] = { type = "Suffix", affix = "of Nobility", "+2 to level of Skills used by this Graft", statOrder = { 10904 }, level = 44, group = "GraftSuffixSkillLevel", weightKey = { "graft_tutorial", "graft", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [324804503] = { "+2 to level of Skills used by this Graft" }, } }, - ["GraftSuffixSkillLevel2"] = { type = "Suffix", affix = "of Lordship", "+3 to level of Skills used by this Graft", statOrder = { 10904 }, level = 66, group = "GraftSuffixSkillLevel", weightKey = { "graft_tutorial", "graft", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [324804503] = { "+3 to level of Skills used by this Graft" }, } }, - ["GraftSuffixSkillLevel3"] = { type = "Suffix", affix = "of Royalty", "+4 to level of Skills used by this Graft", statOrder = { 10904 }, level = 85, group = "GraftSuffixSkillLevel", weightKey = { "graft_tutorial", "graft", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [324804503] = { "+4 to level of Skills used by this Graft" }, } }, - ["GraftSuffixCriticalChance1"] = { type = "Suffix", affix = "of Incision", "Skills used by this Graft have (40-79)% increased Critical Strike Chance", "Skills used by this Graft have +(8-14)% to Critical Strike Multiplier", statOrder = { 10881, 10882 }, level = 1, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4013357916] = { "Skills used by this Graft have +(8-14)% to Critical Strike Multiplier" }, [1443956585] = { "Skills used by this Graft have (40-79)% increased Critical Strike Chance" }, } }, - ["GraftSuffixCriticalChance2"] = { type = "Suffix", affix = "of Slicing", "Skills used by this Graft have (80-119)% increased Critical Strike Chance", "Skills used by this Graft have +(15-21)% to Critical Strike Multiplier", statOrder = { 10881, 10882 }, level = 22, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4013357916] = { "Skills used by this Graft have +(15-21)% to Critical Strike Multiplier" }, [1443956585] = { "Skills used by this Graft have (80-119)% increased Critical Strike Chance" }, } }, - ["GraftSuffixCriticalChance3"] = { type = "Suffix", affix = "of Dicing", "Skills used by this Graft have (120-139)% increased Critical Strike Chance", "Skills used by this Graft have +(22-28)% to Critical Strike Multiplier", statOrder = { 10881, 10882 }, level = 44, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [4013357916] = { "Skills used by this Graft have +(22-28)% to Critical Strike Multiplier" }, [1443956585] = { "Skills used by this Graft have (120-139)% increased Critical Strike Chance" }, } }, - ["GraftSuffixCriticalChance4"] = { type = "Suffix", affix = "of Striking", "Skills used by this Graft have (140-159)% increased Critical Strike Chance", "Skills used by this Graft have +(29-35)% to Critical Strike Multiplier", statOrder = { 10881, 10882 }, level = 66, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4013357916] = { "Skills used by this Graft have +(29-35)% to Critical Strike Multiplier" }, [1443956585] = { "Skills used by this Graft have (140-159)% increased Critical Strike Chance" }, } }, - ["GraftSuffixCriticalChance5"] = { type = "Suffix", affix = "of Precision", "Skills used by this Graft have (160-200)% increased Critical Strike Chance", "Skills used by this Graft have +(36-42)% to Critical Strike Multiplier", statOrder = { 10881, 10882 }, level = 82, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4013357916] = { "Skills used by this Graft have +(36-42)% to Critical Strike Multiplier" }, [1443956585] = { "Skills used by this Graft have (160-200)% increased Critical Strike Chance" }, } }, - ["GraftSuffixFirePenetration1"] = { type = "Suffix", affix = "of Singing", "Skills used by this Graft penetrate (4-9)% Enemy Fire Resistance", statOrder = { 10917 }, level = 44, group = "GraftSuffixFirePenetration", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2425071139] = { "Skills used by this Graft penetrate (4-9)% Enemy Fire Resistance" }, } }, - ["GraftSuffixFirePenetration2"] = { type = "Suffix", affix = "of Searing", "Skills used by this Graft penetrate (10-14)% Enemy Fire Resistance", statOrder = { 10917 }, level = 66, group = "GraftSuffixFirePenetration", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [2425071139] = { "Skills used by this Graft penetrate (10-14)% Enemy Fire Resistance" }, } }, - ["GraftSuffixFirePenetration3"] = { type = "Suffix", affix = "of Blackening", "Skills used by this Graft penetrate (15-20)% Enemy Fire Resistance", statOrder = { 10917 }, level = 82, group = "GraftSuffixFirePenetration", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [2425071139] = { "Skills used by this Graft penetrate (15-20)% Enemy Fire Resistance" }, } }, - ["GraftSuffixColdPenetration1"] = { type = "Suffix", affix = "of the North", "Skills used by this Graft penetrate (4-9)% Enemy Cold Resistance", statOrder = { 10916 }, level = 44, group = "GraftSuffixColdPenetration", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4063492405] = { "Skills used by this Graft penetrate (4-9)% Enemy Cold Resistance" }, } }, - ["GraftSuffixColdPenetration2"] = { type = "Suffix", affix = "of the Boreal", "Skills used by this Graft penetrate (10-14)% Enemy Cold Resistance", statOrder = { 10916 }, level = 66, group = "GraftSuffixColdPenetration", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4063492405] = { "Skills used by this Graft penetrate (10-14)% Enemy Cold Resistance" }, } }, - ["GraftSuffixColdPenetration3"] = { type = "Suffix", affix = "of the Arctic", "Skills used by this Graft penetrate (15-20)% Enemy Cold Resistance", statOrder = { 10916 }, level = 82, group = "GraftSuffixColdPenetration", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4063492405] = { "Skills used by this Graft penetrate (15-20)% Enemy Cold Resistance" }, } }, - ["GraftSuffixLightningPenetration1"] = { type = "Suffix", affix = "of Scattered Bolts", "Skills used by this Graft penetrate (4-9)% Enemy Lightning Resistance", statOrder = { 10918 }, level = 44, group = "GraftSuffixLightningPenetration", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4236519263] = { "Skills used by this Graft penetrate (4-9)% Enemy Lightning Resistance" }, } }, - ["GraftSuffixLightningPenetration2"] = { type = "Suffix", affix = "of Striking Jolts", "Skills used by this Graft penetrate (10-14)% Enemy Lightning Resistance", statOrder = { 10918 }, level = 66, group = "GraftSuffixLightningPenetration", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4236519263] = { "Skills used by this Graft penetrate (10-14)% Enemy Lightning Resistance" }, } }, - ["GraftSuffixLightningPenetration3"] = { type = "Suffix", affix = "of Seeking Sparks", "Skills used by this Graft penetrate (15-20)% Enemy Lightning Resistance", statOrder = { 10918 }, level = 82, group = "GraftSuffixLightningPenetration", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4236519263] = { "Skills used by this Graft penetrate (15-20)% Enemy Lightning Resistance" }, } }, - ["GraftSuffixUulnetolHandSlamDamageForCDR1"] = { type = "Suffix", affix = "of Impact", "Skills used by this Graft have 20% reduced Cooldown Recovery Rate", "Skills used by this Graft deal (20-29)% more Damage", statOrder = { 10878, 10933 }, level = 44, group = "GraftSuffixUulnetolHandSlamDamageForCDR", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1662209485] = { "Skills used by this Graft deal (20-29)% more Damage" }, [1053840971] = { "Skills used by this Graft have 20% reduced Cooldown Recovery Rate" }, } }, - ["GraftSuffixUulnetolHandSlamDamageForCDR2"] = { type = "Suffix", affix = "of Cratering", "Skills used by this Graft have 25% reduced Cooldown Recovery Rate", "Skills used by this Graft deal (30-45)% more Damage", statOrder = { 10878, 10933 }, level = 82, group = "GraftSuffixUulnetolHandSlamDamageForCDR", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1662209485] = { "Skills used by this Graft deal (30-45)% more Damage" }, [1053840971] = { "Skills used by this Graft have 25% reduced Cooldown Recovery Rate" }, } }, - ["GraftSuffixUulnetolHandSlamAttackSpeedForAOE1"] = { type = "Suffix", affix = "of Earthshaking", "Skills used by this Graft have (15-24)% more Area of Effect", "Skills used by this Graft have 15% less Attack Speed", statOrder = { 10956, 10957 }, level = 44, group = "GraftSuffixUulnetolHandSlamAttackSpeedForAOE", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4285149775] = { "Skills used by this Graft have 15% less Attack Speed" }, [3364676033] = { "Skills used by this Graft have (15-24)% more Area of Effect" }, } }, - ["GraftSuffixUulnetolHandSlamAttackSpeedForAOE2"] = { type = "Suffix", affix = "of Earthshattering", "Skills used by this Graft have (25-35)% more Area of Effect", "Skills used by this Graft have 10% less Attack Speed", statOrder = { 10956, 10957 }, level = 82, group = "GraftSuffixUulnetolHandSlamAttackSpeedForAOE", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4285149775] = { "Skills used by this Graft have 10% less Attack Speed" }, [3364676033] = { "Skills used by this Graft have (25-35)% more Area of Effect" }, } }, - ["GraftSuffixUulnetolHandSlamCrushOnHit1"] = { type = "Suffix", affix = "of Pulverising", "Skills used by this Graft Crush on Hit", statOrder = { 10883 }, level = 44, group = "GraftSuffixUulnetolHandSlamCrushOnHit", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [668072950] = { "Skills used by this Graft Crush on Hit" }, } }, - ["GraftSuffixUulnetolHandSlamVulnerabilityOnHit1"] = { type = "Suffix", affix = "of Vulnerability", "Skills used by this Graft inflict Vulnerability on Hit", statOrder = { 10939 }, level = 44, group = "GraftSuffixUulnetolHandSlamVulnerabilityOnHit", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [3989101809] = { "Skills used by this Graft inflict Vulnerability on Hit" }, } }, - ["GraftSuffixUulnetolHandSlamIntimidateOnHit1"] = { type = "Suffix", affix = "of Intimidation", "Skills used by this Graft Intimidate on Hit", statOrder = { 10899 }, level = 44, group = "GraftSuffixUulnetolHandSlamIntimidateOnHit", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1790471105] = { "Skills used by this Graft Intimidate on Hit" }, } }, - ["GraftSuffixIgnorePhysMitigation1"] = { type = "Suffix", affix = "of Overwhelming", "Skills used by this Graft ignore Enemy Physical Damage Reduction", statOrder = { 10895 }, level = 44, group = "GraftSuffixIgnorePhysMitigation", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2150059749] = { "Skills used by this Graft ignore Enemy Physical Damage Reduction" }, } }, - ["GraftSuffixShockChance1"] = { type = "Suffix", affix = "of Zapping", "Skills used by this Graft have (19-57)% chance to Shock", statOrder = { 10920 }, level = 1, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2376903385] = { "Skills used by this Graft have (19-57)% chance to Shock" }, } }, - ["GraftSuffixShockChance2"] = { type = "Suffix", affix = "of Jolting", "Skills used by this Graft have (29-87)% chance to Shock", statOrder = { 10920 }, level = 22, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2376903385] = { "Skills used by this Graft have (29-87)% chance to Shock" }, } }, - ["GraftSuffixShockChance3"] = { type = "Suffix", affix = "of Blitzing", "Skills used by this Graft have (39-117)% chance to Shock", statOrder = { 10920 }, level = 44, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2376903385] = { "Skills used by this Graft have (39-117)% chance to Shock" }, } }, - ["GraftSuffixShockChance4"] = { type = "Suffix", affix = "of Electricity", "Skills used by this Graft have (49-147)% chance to Shock", statOrder = { 10920 }, level = 66, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2376903385] = { "Skills used by this Graft have (49-147)% chance to Shock" }, } }, - ["GraftSuffixShockChance5"] = { type = "Suffix", affix = "of Sublimation", "Skills used by this Graft have (60-180)% chance to Shock", statOrder = { 10920 }, level = 82, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2376903385] = { "Skills used by this Graft have (60-180)% chance to Shock" }, } }, - ["GraftSuffixIgniteChance1"] = { type = "Suffix", affix = "of Cinders", "Skills used by this Graft have (13-29)% chance to Ignite", statOrder = { 10874 }, level = 1, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [158467587] = { "Skills used by this Graft have (13-29)% chance to Ignite" }, } }, - ["GraftSuffixIgniteChance2"] = { type = "Suffix", affix = "of Coal", "Skills used by this Graft have (29-44)% chance to Ignite", statOrder = { 10874 }, level = 22, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [158467587] = { "Skills used by this Graft have (29-44)% chance to Ignite" }, } }, - ["GraftSuffixIgniteChance3"] = { type = "Suffix", affix = "of Embers", "Skills used by this Graft have (44-59)% chance to Ignite", statOrder = { 10874 }, level = 44, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 700, 700, 700, 0 }, modTags = { }, tradeHashes = { [158467587] = { "Skills used by this Graft have (44-59)% chance to Ignite" }, } }, - ["GraftSuffixIgniteChance4"] = { type = "Suffix", affix = "of Ashes", "Skills used by this Graft have (60-74)% chance to Ignite", statOrder = { 10874 }, level = 66, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [158467587] = { "Skills used by this Graft have (60-74)% chance to Ignite" }, } }, - ["GraftSuffixIgniteChance5"] = { type = "Suffix", affix = "of Glowing", "Skills used by this Graft have (75-100)% chance to Ignite", statOrder = { 10874 }, level = 82, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [158467587] = { "Skills used by this Graft have (75-100)% chance to Ignite" }, } }, - ["GraftSuffixFreezeChance1"] = { type = "Suffix", affix = "of Ice", "Skills used by this Graft have (10-19)% chance to Freeze", statOrder = { 10873 }, level = 1, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3732269294] = { "Skills used by this Graft have (10-19)% chance to Freeze" }, } }, - ["GraftSuffixFreezeChance2"] = { type = "Suffix", affix = "of Sleet", "Skills used by this Graft have (20-29)% chance to Freeze", statOrder = { 10873 }, level = 22, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3732269294] = { "Skills used by this Graft have (20-29)% chance to Freeze" }, } }, - ["GraftSuffixFreezeChance3"] = { type = "Suffix", affix = "of Snow", "Skills used by this Graft have (30-39)% chance to Freeze", statOrder = { 10873 }, level = 44, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3732269294] = { "Skills used by this Graft have (30-39)% chance to Freeze" }, } }, - ["GraftSuffixFreezeChance4"] = { type = "Suffix", affix = "of Hail", "Skills used by this Graft have (40-49)% chance to Freeze", statOrder = { 10873 }, level = 66, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3732269294] = { "Skills used by this Graft have (40-49)% chance to Freeze" }, } }, - ["GraftSuffixFreezeChance5"] = { type = "Suffix", affix = "of Glaciers", "Skills used by this Graft have (50-60)% chance to Freeze", statOrder = { 10873 }, level = 82, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3732269294] = { "Skills used by this Graft have (50-60)% chance to Freeze" }, } }, - ["GraftSuffixShockAsThoughDealingMoreDamage1"] = { type = "Suffix", affix = "of Amplification", "Skills used by this Graft Shock Enemies as though dealing 100% more Damage", statOrder = { 10919 }, level = 66, group = "GraftSuffixShockAsThoughDealingMoreDamage", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3626715014] = { "Skills used by this Graft Shock Enemies as though dealing 100% more Damage" }, } }, - ["GraftSuffixLightningGainAsChaos1"] = { type = "Suffix", affix = "of Shadowed Bolt", "Skills used by this Graft Gain (16-24)% of Lightning Damage as Extra Chaos Damage", statOrder = { 10905 }, level = 44, group = "GraftSuffixLightningGainAsChaos", weightKey = { "graft_esh_bolt_ring", "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [9906535] = { "Skills used by this Graft Gain (16-24)% of Lightning Damage as Extra Chaos Damage" }, } }, - ["GraftSuffixLightningGainAsChaos2"] = { type = "Suffix", affix = "of Twisted Thunder", "Skills used by this Graft Gain (28-32)% of Lightning Damage as Extra Chaos Damage", statOrder = { 10905 }, level = 66, group = "GraftSuffixLightningGainAsChaos", weightKey = { "graft_esh_bolt_ring", "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [9906535] = { "Skills used by this Graft Gain (28-32)% of Lightning Damage as Extra Chaos Damage" }, } }, - ["GraftSuffixLightningGainAsChaos3"] = { type = "Suffix", affix = "of Darkened Storms", "Skills used by this Graft Gain (44-56)% of Lightning Damage as Extra Chaos Damage", statOrder = { 10905 }, level = 82, group = "GraftSuffixLightningGainAsChaos", weightKey = { "graft_esh_bolt_ring", "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [9906535] = { "Skills used by this Graft Gain (44-56)% of Lightning Damage as Extra Chaos Damage" }, } }, - ["GraftSuffixFireGainAsChaos1"] = { type = "Suffix", affix = "of Shadowed Smoke", "Skills used by this Graft Gain (16-24)% of Fire Damage as Extra Chaos Damage", statOrder = { 10893 }, level = 44, group = "GraftSuffixFireGainAsChaos", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2506782284] = { "Skills used by this Graft Gain (16-24)% of Fire Damage as Extra Chaos Damage" }, } }, - ["GraftSuffixFireGainAsChaos2"] = { type = "Suffix", affix = "of Umbral Flame", "Skills used by this Graft Gain (28-32)% of Fire Damage as Extra Chaos Damage", statOrder = { 10893 }, level = 66, group = "GraftSuffixFireGainAsChaos", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [2506782284] = { "Skills used by this Graft Gain (28-32)% of Fire Damage as Extra Chaos Damage" }, } }, - ["GraftSuffixFireGainAsChaos3"] = { type = "Suffix", affix = "of Darkened Flame", "Skills used by this Graft Gain (44-56)% of Fire Damage as Extra Chaos Damage", statOrder = { 10893 }, level = 82, group = "GraftSuffixFireGainAsChaos", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [2506782284] = { "Skills used by this Graft Gain (44-56)% of Fire Damage as Extra Chaos Damage" }, } }, - ["GraftSuffixColdGainAsChaos1"] = { type = "Suffix", affix = "of Blasted Snow", "Skills used by this Graft Gain (16-24)% of Cold Damage as Extra Chaos Damage", statOrder = { 10876 }, level = 44, group = "GraftSuffixColdGainAsChaos", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2752930426] = { "Skills used by this Graft Gain (16-24)% of Cold Damage as Extra Chaos Damage" }, } }, - ["GraftSuffixColdGainAsChaos2"] = { type = "Suffix", affix = "of Blackened Ice", "Skills used by this Graft Gain (28-32)% of Cold Damage as Extra Chaos Damage", statOrder = { 10876 }, level = 66, group = "GraftSuffixColdGainAsChaos", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2752930426] = { "Skills used by this Graft Gain (28-32)% of Cold Damage as Extra Chaos Damage" }, } }, - ["GraftSuffixColdGainAsChaos3"] = { type = "Suffix", affix = "of Darkened Frost", "Skills used by this Graft Gain (44-56)% of Cold Damage as Extra Chaos Damage", statOrder = { 10876 }, level = 82, group = "GraftSuffixColdGainAsChaos", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHashes = { [2752930426] = { "Skills used by this Graft Gain (44-56)% of Cold Damage as Extra Chaos Damage" }, } }, - ["GraftSuffixCoverInFrost1"] = { type = "Suffix", affix = "of Snowdrifts", "Skills used by this Graft have (20-30)% chance to Cover Enemies in Frost on Hit", statOrder = { 10880 }, level = 66, group = "GraftSuffixCoverInFrost", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1987305786] = { "Skills used by this Graft have (20-30)% chance to Cover Enemies in Frost on Hit" }, } }, - ["GraftSuffixAilmentDuration1"] = { type = "Suffix", affix = "of Torment", "Ailments inflicted by Skills used by this Graft have (8-14)% increased duration", statOrder = { 10869 }, level = 22, group = "GraftSuffixAilmentDuration", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2184130410] = { "Ailments inflicted by Skills used by this Graft have (8-14)% increased duration" }, } }, - ["GraftSuffixAilmentDuration2"] = { type = "Suffix", affix = "of Misery", "Ailments inflicted by Skills used by this Graft have (15-23)% increased duration", statOrder = { 10869 }, level = 66, group = "GraftSuffixAilmentDuration", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2184130410] = { "Ailments inflicted by Skills used by this Graft have (15-23)% increased duration" }, } }, - ["GraftSuffixAilmentDuration3"] = { type = "Suffix", affix = "of Torture", "Ailments inflicted by Skills used by this Graft have (24-35)% increased duration", statOrder = { 10869 }, level = 82, group = "GraftSuffixAilmentDuration", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2184130410] = { "Ailments inflicted by Skills used by this Graft have (24-35)% increased duration" }, } }, - ["GraftSuffixFireExposureOnHit1"] = { type = "Suffix", affix = "of Melting", "Skills used by this Graft have (20-34)% chance to inflict Fire Exposure on Hit", statOrder = { 10897 }, level = 44, group = "GraftSuffixFireExposureOnHit", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3069466464] = { "Skills used by this Graft have (20-34)% chance to inflict Fire Exposure on Hit" }, } }, - ["GraftSuffixFireExposureOnHit2"] = { type = "Suffix", affix = "of Liquefaction", "Skills used by this Graft have (35-49)% chance to inflict Fire Exposure on Hit", statOrder = { 10897 }, level = 66, group = "GraftSuffixFireExposureOnHit", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3069466464] = { "Skills used by this Graft have (35-49)% chance to inflict Fire Exposure on Hit" }, } }, - ["GraftSuffixFireExposureOnHit3"] = { type = "Suffix", affix = "of Exposure", "Skills used by this Graft have (50-70)% chance to inflict Fire Exposure on Hit", statOrder = { 10897 }, level = 82, group = "GraftSuffixFireExposureOnHit", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [3069466464] = { "Skills used by this Graft have (50-70)% chance to inflict Fire Exposure on Hit" }, } }, - ["GraftSuffixLightningExposureOnHit1"] = { type = "Suffix", affix = "of Melting", "Skills used by this Graft have (20-34)% chance to inflict Lightning Exposure on Hit", statOrder = { 10898 }, level = 44, group = "GraftSuffixLightningExposureOnHit", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2375092881] = { "Skills used by this Graft have (20-34)% chance to inflict Lightning Exposure on Hit" }, } }, - ["GraftSuffixLightningExposureOnHit2"] = { type = "Suffix", affix = "of Liquefaction", "Skills used by this Graft have (35-49)% chance to inflict Lightning Exposure on Hit", statOrder = { 10898 }, level = 66, group = "GraftSuffixLightningExposureOnHit", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2375092881] = { "Skills used by this Graft have (35-49)% chance to inflict Lightning Exposure on Hit" }, } }, - ["GraftSuffixLightningExposureOnHit3"] = { type = "Suffix", affix = "of Exposure", "Skills used by this Graft have (50-70)% chance to inflict Lightning Exposure on Hit", statOrder = { 10898 }, level = 82, group = "GraftSuffixLightningExposureOnHit", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2375092881] = { "Skills used by this Graft have (50-70)% chance to inflict Lightning Exposure on Hit" }, } }, - ["GraftSuffixImpaleEffect1"] = { type = "Suffix", affix = "of Wringing", "Skills used by this Graft have (20-34)% increased Impale Effect", statOrder = { 10896 }, level = 44, group = "GraftSuffixImpaleEffect", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1501454660] = { "Skills used by this Graft have (20-34)% increased Impale Effect" }, } }, - ["GraftSuffixImpaleEffect2"] = { type = "Suffix", affix = "of Twisting", "Skills used by this Graft have (35-44)% increased Impale Effect", statOrder = { 10896 }, level = 66, group = "GraftSuffixImpaleEffect", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1501454660] = { "Skills used by this Graft have (35-44)% increased Impale Effect" }, } }, - ["GraftSuffixImpaleEffect3"] = { type = "Suffix", affix = "of Mangling", "Skills used by this Graft have (45-55)% increased Impale Effect", statOrder = { 10896 }, level = 82, group = "GraftSuffixImpaleEffect", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1501454660] = { "Skills used by this Graft have (45-55)% increased Impale Effect" }, } }, - ["GraftSuffixMinionDamage1"] = { type = "Suffix", affix = "of Armies", "Minions summoned by this Graft deal (10-29)% increased Damage", statOrder = { 10908 }, level = 1, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (10-29)% increased Damage" }, } }, - ["GraftSuffixMinionDamage2"] = { type = "Suffix", affix = "of Infantry", "Minions summoned by this Graft deal (30-49)% increased Damage", statOrder = { 10908 }, level = 11, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (30-49)% increased Damage" }, } }, - ["GraftSuffixMinionDamage3"] = { type = "Suffix", affix = "of Troops", "Minions summoned by this Graft deal (50-69)% increased Damage", statOrder = { 10908 }, level = 22, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (50-69)% increased Damage" }, } }, - ["GraftSuffixMinionDamage4"] = { type = "Suffix", affix = "of the Multitude", "Minions summoned by this Graft deal (70-89)% increased Damage", statOrder = { 10908 }, level = 33, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (70-89)% increased Damage" }, } }, - ["GraftSuffixMinionDamage5"] = { type = "Suffix", affix = "of Swarms", "Minions summoned by this Graft deal (90-109)% increased Damage", statOrder = { 10908 }, level = 44, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (90-109)% increased Damage" }, } }, - ["GraftSuffixMinionDamage6"] = { type = "Suffix", affix = "of Hordes", "Minions summoned by this Graft deal (110-129)% increased Damage", statOrder = { 10908 }, level = 55, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (110-129)% increased Damage" }, } }, - ["GraftSuffixMinionDamage7"] = { type = "Suffix", affix = "of Hosts", "Minions summoned by this Graft deal (130-149)% increased Damage", statOrder = { 10908 }, level = 66, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (130-149)% increased Damage" }, } }, - ["GraftSuffixMinionDamage8"] = { type = "Suffix", affix = "of Throngs", "Minions summoned by this Graft deal (150-169)% increased Damage", statOrder = { 10908 }, level = 74, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (150-169)% increased Damage" }, } }, - ["GraftSuffixMinionDamage9"] = { type = "Suffix", affix = "of Droves", "Minions summoned by this Graft deal (170-189)% increased Damage", statOrder = { 10908 }, level = 82, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (170-189)% increased Damage" }, } }, - ["GraftSuffixMinionDamage10"] = { type = "Suffix", affix = "of Legions", "Minions summoned by this Graft deal (190-220)% increased Damage", statOrder = { 10908 }, level = 85, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (190-220)% increased Damage" }, } }, - ["GraftSuffixMinionLife1"] = { type = "Suffix", affix = "of Muscle", "Minions summoned by this Graft have (32-36)% increased Life", statOrder = { 10909 }, level = 1, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4267516534] = { "Minions summoned by this Graft have (32-36)% increased Life" }, } }, - ["GraftSuffixMinionLife2"] = { type = "Suffix", affix = "of Flesh", "Minions summoned by this Graft have (38-42)% increased Life", statOrder = { 10909 }, level = 22, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4267516534] = { "Minions summoned by this Graft have (38-42)% increased Life" }, } }, - ["GraftSuffixMinionLife3"] = { type = "Suffix", affix = "of Sinew", "Minions summoned by this Graft have (44-48)% increased Life", statOrder = { 10909 }, level = 44, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [4267516534] = { "Minions summoned by this Graft have (44-48)% increased Life" }, } }, - ["GraftSuffixMinionLife4"] = { type = "Suffix", affix = "of Beef", "Minions summoned by this Graft have (50-54)% increased Life", statOrder = { 10909 }, level = 66, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4267516534] = { "Minions summoned by this Graft have (50-54)% increased Life" }, } }, - ["GraftSuffixMinionLife5"] = { type = "Suffix", affix = "of Meat", "Minions summoned by this Graft have (56-60)% increased Life", statOrder = { 10909 }, level = 82, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4267516534] = { "Minions summoned by this Graft have (56-60)% increased Life" }, } }, - ["GraftSuffixMinionAttackSpeed1"] = { type = "Suffix", affix = "of Lunacy", "Minions summoned by this Graft have (12-18)% increased Attack Speed", statOrder = { 10906 }, level = 44, group = "GraftSuffixMinionAttackSpeed", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [967852806] = { "Minions summoned by this Graft have (12-18)% increased Attack Speed" }, } }, - ["GraftSuffixMinionAttackSpeed2"] = { type = "Suffix", affix = "of Psychopathy", "Minions summoned by this Graft have (19-25)% increased Attack Speed", statOrder = { 10906 }, level = 66, group = "GraftSuffixMinionAttackSpeed", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [967852806] = { "Minions summoned by this Graft have (19-25)% increased Attack Speed" }, } }, - ["GraftSuffixMinionAttackSpeed3"] = { type = "Suffix", affix = "of Maniacism", "Minions summoned by this Graft have (26-31)% increased Attack Speed", statOrder = { 10906 }, level = 82, group = "GraftSuffixMinionAttackSpeed", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [967852806] = { "Minions summoned by this Graft have (26-31)% increased Attack Speed" }, } }, - ["GraftSuffixMinionBlindOnHit1"] = { type = "Suffix", affix = "of Blinding Snow", "Minions summoned by this Graft have (10-20)% chance to Blind on Hit", statOrder = { 10911 }, level = 66, group = "GraftSuffixMinionBlindOnHit", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2313228671] = { "Minions summoned by this Graft have (10-20)% chance to Blind on Hit" }, } }, - ["GraftSuffixMinionTauntOnHit1"] = { type = "Suffix", affix = "of Taunting", "Minions summoned by this Graft have (10-20)% chance to Taunt on Hit", statOrder = { 10907 }, level = 66, group = "GraftSuffixMinionTauntOnHit", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [131940510] = { "Minions summoned by this Graft have (10-20)% chance to Taunt on Hit" }, } }, - ["GraftSuffixMinionDamageGainAsCold1"] = { type = "Suffix", affix = "of Frozen Falls", "Minions summoned by this Graft gain (40-49)% of Physical Damage as Extra Cold Damage", statOrder = { 10910 }, level = 44, group = "GraftSuffixMinionDamageGainAsCold", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2186396714] = { "Minions summoned by this Graft gain (40-49)% of Physical Damage as Extra Cold Damage" }, } }, - ["GraftSuffixMinionDamageGainAsCold2"] = { type = "Suffix", affix = "of Winter Winds", "Minions summoned by this Graft gain (50-59)% of Physical Damage as Extra Cold Damage", statOrder = { 10910 }, level = 66, group = "GraftSuffixMinionDamageGainAsCold", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2186396714] = { "Minions summoned by this Graft gain (50-59)% of Physical Damage as Extra Cold Damage" }, } }, - ["GraftSuffixMinionDamageGainAsCold3"] = { type = "Suffix", affix = "of Sleetbound Snow", "Minions summoned by this Graft gain (60-70)% of Physical Damage as Extra Cold Damage", statOrder = { 10910 }, level = 82, group = "GraftSuffixMinionDamageGainAsCold", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2186396714] = { "Minions summoned by this Graft gain (60-70)% of Physical Damage as Extra Cold Damage" }, } }, - ["GraftSuffixFasterAilments1"] = { type = "Suffix", affix = "of Decomposition", "Damaging Ailments inflicted by Skills used by this Graft deal damage (8-14)% faster", statOrder = { 10887 }, level = 44, group = "GraftSuffixFasterAilments", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4230320163] = { "Damaging Ailments inflicted by Skills used by this Graft deal damage (8-14)% faster" }, } }, - ["GraftSuffixFasterAilments2"] = { type = "Suffix", affix = "of Festering", "Damaging Ailments inflicted by Skills used by this Graft deal damage (15-21)% faster", statOrder = { 10887 }, level = 66, group = "GraftSuffixFasterAilments", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4230320163] = { "Damaging Ailments inflicted by Skills used by this Graft deal damage (15-21)% faster" }, } }, - ["GraftSuffixFasterAilments3"] = { type = "Suffix", affix = "of Perishing", "Damaging Ailments inflicted by Skills used by this Graft deal damage (22-28)% faster", statOrder = { 10887 }, level = 82, group = "GraftSuffixFasterAilments", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4230320163] = { "Damaging Ailments inflicted by Skills used by this Graft deal damage (22-28)% faster" }, } }, - ["GraftSuffixPunishmentOnHit1"] = { type = "Suffix", affix = "of Punishment", "Skills used by this Graft inflict Punishment on Hit", statOrder = { 10884 }, level = 44, group = "GraftSuffixPunishmentOnHit", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1245902490] = { "Skills used by this Graft inflict Punishment on Hit" }, } }, - ["GraftSuffixNonDamagingAilmentEffect1"] = { type = "Suffix", affix = "of Oppression", "Skills used by this Graft have (10-19)% increased effect of Non-Damaging Ailments", statOrder = { 10912 }, level = 22, group = "GraftSuffixNonDamagingAilmentEffect", weightKey = { "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [308139248] = { "Skills used by this Graft have (10-19)% increased effect of Non-Damaging Ailments" }, } }, - ["GraftSuffixNonDamagingAilmentEffect2"] = { type = "Suffix", affix = "of Suppression", "Skills used by this Graft have (20-29)% increased effect of Non-Damaging Ailments", statOrder = { 10912 }, level = 66, group = "GraftSuffixNonDamagingAilmentEffect", weightKey = { "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [308139248] = { "Skills used by this Graft have (20-29)% increased effect of Non-Damaging Ailments" }, } }, - ["GraftSuffixNonDamagingAilmentEffect3"] = { type = "Suffix", affix = "of Persecution", "Skills used by this Graft have (30-40)% increased effect of Non-Damaging Ailments", statOrder = { 10912 }, level = 82, group = "GraftSuffixNonDamagingAilmentEffect", weightKey = { "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHashes = { [308139248] = { "Skills used by this Graft have (30-40)% increased effect of Non-Damaging Ailments" }, } }, - ["GraftSuffixIncreasedDamageVsIgnited1"] = { type = "Suffix", affix = "of Aggravation", "Skills used by this Graft deal (117-152)% increased Damage against Ignited Enemies", statOrder = { 10886 }, level = 44, group = "GraftSuffixIncreasedDamageVsIgnited", weightKey = { "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3781496089] = { "Skills used by this Graft deal (117-152)% increased Damage against Ignited Enemies" }, } }, - ["GraftSuffixIncreasedDamageVsIgnited2"] = { type = "Suffix", affix = "of Exacerbation", "Skills used by this Graft deal (169-194)% increased Damage against Ignited Enemies", statOrder = { 10886 }, level = 66, group = "GraftSuffixIncreasedDamageVsIgnited", weightKey = { "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3781496089] = { "Skills used by this Graft deal (169-194)% increased Damage against Ignited Enemies" }, } }, - ["GraftSuffixIncreasedDamageVsIgnited3"] = { type = "Suffix", affix = "of Anguish", "Skills used by this Graft deal (221-246)% increased Damage against Ignited Enemies", statOrder = { 10886 }, level = 82, group = "GraftSuffixIncreasedDamageVsIgnited", weightKey = { "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHashes = { [3781496089] = { "Skills used by this Graft deal (221-246)% increased Damage against Ignited Enemies" }, } }, - ["GraftSuffixEshLightningRingBuffAddedLightning1"] = { type = "Suffix", affix = "of Glowing", "Radiant Ground created by Skills from this Graft grants Allies on it an additional 4 to 18 added Lightning Damage", statOrder = { 10868 }, level = 44, group = "GraftSuffixEshLightningRingBuffAddedLightning", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1993898498] = { "Radiant Ground created by Skills from this Graft grants Allies on it an additional 4 to 18 added Lightning Damage" }, } }, - ["GraftSuffixEshLightningRingBuffAddedLightning2"] = { type = "Suffix", affix = "of Shimmering", "Radiant Ground created by Skills from this Graft grants Allies on it an additional 5 to 24 added Lightning Damage", statOrder = { 10868 }, level = 66, group = "GraftSuffixEshLightningRingBuffAddedLightning", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1993898498] = { "Radiant Ground created by Skills from this Graft grants Allies on it an additional 5 to 24 added Lightning Damage" }, } }, - ["GraftSuffixEshLightningRingBuffAddedLightning3"] = { type = "Suffix", affix = "of Radiance", "Radiant Ground created by Skills from this Graft grants Allies on it an additional 6 to 30 added Lightning Damage", statOrder = { 10868 }, level = 82, group = "GraftSuffixEshLightningRingBuffAddedLightning", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1993898498] = { "Radiant Ground created by Skills from this Graft grants Allies on it an additional 6 to 30 added Lightning Damage" }, } }, - ["GraftSuffixEshLightningRingConductivityOnHit"] = { type = "Suffix", affix = "of Conductivity", "Skills used by this Graft inflict Conductivity on Hit", statOrder = { 10877 }, level = 66, group = "GraftSuffixEshLightningRingConductivityOnHit", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3285341404] = { "Skills used by this Graft inflict Conductivity on Hit" }, } }, - ["GraftSuffixEshLightningRingNumberOfBolts1"] = { type = "Suffix", affix = "of Bolts", "Skills used by this Graft cause 4 additional lightning bolt strikes", statOrder = { 10891 }, level = 44, group = "GraftSuffixEshLightningRingNumberOfBolts", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2810785117] = { "Skills used by this Graft cause 4 additional lightning bolt strikes" }, } }, - ["GraftSuffixEshLightningRingNumberOfBolts2"] = { type = "Suffix", affix = "of Thunderclaps", "Skills used by this Graft cause 6 additional lightning bolt strikes", statOrder = { 10891 }, level = 82, group = "GraftSuffixEshLightningRingNumberOfBolts", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2810785117] = { "Skills used by this Graft cause 6 additional lightning bolt strikes" }, } }, - ["GraftSuffixXophMoltenShellShieldAmount1"] = { type = "Suffix", affix = "of the Core", "Heart of Flame Buff used by this Graft can take an additional (150-250) Damage", statOrder = { 10947 }, level = 44, group = "GraftSuffixXophMoltenShellShieldAmount", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [602627011] = { "Heart of Flame Buff used by this Graft can take an additional (150-250) Damage" }, } }, - ["GraftSuffixXophMoltenShellShieldAmount2"] = { type = "Suffix", affix = "of the Crux", "Heart of Flame Buff used by this Graft can take an additional (300-550) Damage", statOrder = { 10947 }, level = 66, group = "GraftSuffixXophMoltenShellShieldAmount", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [602627011] = { "Heart of Flame Buff used by this Graft can take an additional (300-550) Damage" }, } }, - ["GraftSuffixXophMoltenShellShieldAmount3"] = { type = "Suffix", affix = "of the Heart", "Heart of Flame Buff used by this Graft can take an additional (600-750) Damage", statOrder = { 10947 }, level = 82, group = "GraftSuffixXophMoltenShellShieldAmount", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [602627011] = { "Heart of Flame Buff used by this Graft can take an additional (600-750) Damage" }, } }, - ["GraftSuffixXophMoltenShellCoverInAsh1"] = { type = "Suffix", affix = "of Ashen Flame", "Skills used by this Graft Cover Enemies in Ash on Hit", statOrder = { 10879 }, level = 66, group = "GraftSuffixXophMoltenShellCoverInAsh", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [613591578] = { "Skills used by this Graft Cover Enemies in Ash on Hit" }, } }, - ["GraftSuffixXophMoltenShellArmourDuringBuff1"] = { type = "Suffix", affix = "of Flameplating", "Heart of Flame Buff used by this Graft grants (20-49)% increased Armour", statOrder = { 10948 }, level = 44, group = "GraftSuffixXophMoltenShellArmourDuringBuff", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2057803518] = { "Heart of Flame Buff used by this Graft grants (20-49)% increased Armour" }, } }, - ["GraftSuffixXophMoltenShellArmourDuringBuff2"] = { type = "Suffix", affix = "of Fiery Buttresses", "Heart of Flame Buff used by this Graft grants (50-75)% increased Armour", statOrder = { 10948 }, level = 82, group = "GraftSuffixXophMoltenShellArmourDuringBuff", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2057803518] = { "Heart of Flame Buff used by this Graft grants (50-75)% increased Armour" }, } }, - ["GraftSuffixXophMoltenShellPercentTakenByBuff1"] = { type = "Suffix", affix = "of the Fireheart", "An additional (5-10)% of Damage from Hits is taken from Heart of Flame Buff used by this Graft before Life or Energy Shield", statOrder = { 10949 }, level = 66, group = "GraftSuffixXophMoltenShellPercentTakenByBuff", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2664271989] = { "An additional (5-10)% of Damage from Hits is taken from Heart of Flame Buff used by this Graft before Life or Energy Shield" }, } }, - ["GraftSuffixXophMoltenShellLessShieldIncreasedCDR1"] = { type = "Suffix", affix = "of Hasty Reconstruction", "Skills used by this Graft have 40% increased Cooldown Recovery Rate", "Heart of Flame Buff used by this Graft can take 30% less Damage", statOrder = { 10878, 10950 }, level = 44, group = "GraftSuffixXophMoltenShellLessShieldIncreasedCDR", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have 40% increased Cooldown Recovery Rate" }, [2338032775] = { "Heart of Flame Buff used by this Graft can take 30% less Damage" }, } }, - ["GraftSuffixFrostbiteOnHit1"] = { type = "Suffix", affix = "of Frostbite", "Skills used by this Graft inflict Frostbite on Hit", statOrder = { 10894 }, level = 44, group = "GraftSuffixFrostbiteOnHit", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHashes = { [1593675162] = { "Skills used by this Graft inflict Frostbite on Hit" }, } }, - ["GraftSuffixTulTornadoProjectileDamageAfterPierce1"] = { type = "Suffix", affix = "of Boring", "Projectiles created by this Graft that have Pierced deal (20-30)% more Damage", statOrder = { 10914 }, level = 66, group = "GraftSuffixTulTornadoProjectileDamageAfterPierce", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [793704702] = { "Projectiles created by this Graft that have Pierced deal (20-30)% more Damage" }, } }, - ["GraftSuffixTulTornadoAdditionalTornado1"] = { type = "Suffix", affix = "of Whirlwinds", "Skills used by this Graft deal 40% less Damage", "Dance in the White used by this Graft creates an additional Tornado", "Dance in the White used by this Graft has +1 to maximum Tornados", statOrder = { 10929, 10930, 10931 }, level = 66, group = "GraftSuffixTulTornadoAdditionalTornado", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [4064732043] = { "Skills used by this Graft deal 40% less Damage" }, [1180345918] = { "Dance in the White used by this Graft has +1 to maximum Tornados" }, [2372432170] = { "Dance in the White used by this Graft creates an additional Tornado" }, } }, - ["GraftSuffixXophGeysersAdditionalGeyser1"] = { type = "Suffix", affix = "of Eruption", "His Burning Message used by this Graft creates an additional geyser", statOrder = { 10945 }, level = 44, group = "GraftSuffixXophGeysersAdditionalGeyser", weightKey = { "graft_xoph_cremations", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2610093703] = { "His Burning Message used by this Graft creates an additional geyser" }, } }, - ["GraftSuffixXophGeysersAdditionalGeyser2"] = { type = "Suffix", affix = "of Geysers", "His Burning Message used by this Graft creates 2 additional geysers", statOrder = { 10945 }, level = 82, group = "GraftSuffixXophGeysersAdditionalGeyser", weightKey = { "graft_xoph_cremations", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2610093703] = { "His Burning Message used by this Graft creates 2 additional geysers" }, } }, - ["GraftSuffixXophGeysersAdditionalWarcyProjectiles1"] = { type = "Suffix", affix = "of Deafening", "Geysers created by this Graft fire 2 additional Projectiles when you Warcry", statOrder = { 10946 }, level = 66, group = "GraftSuffixXophGeysersAdditionalWarcyProjectiles", weightKey = { "graft_xoph_cremations", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4169460025] = { "Geysers created by this Graft fire 2 additional Projectiles when you Warcry" }, } }, - ["GraftSuffixJoltBuffMaximumJoltBuffCount1"] = { type = "Suffix", affix = "of Trembling", "Overcharged Sinews used by this Graft can apply +(1-2) maximum Jolt Buffs", statOrder = { 10902 }, level = 44, group = "GraftSuffixJoltBuffMaximumJoltBuffCount", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1601123381] = { "Overcharged Sinews used by this Graft can apply +(1-2) maximum Jolt Buffs" }, } }, - ["GraftSuffixJoltBuffMaximumJoltBuffCount2"] = { type = "Suffix", affix = "of Shuddering", "Overcharged Sinews used by this Graft can apply +(3-4) maximum Jolt Buffs", statOrder = { 10902 }, level = 82, group = "GraftSuffixJoltBuffMaximumJoltBuffCount", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1601123381] = { "Overcharged Sinews used by this Graft can apply +(3-4) maximum Jolt Buffs" }, } }, - ["GraftSuffixJoltMaxDamageAndDamageTaken1"] = { type = "Suffix", affix = "of Peril", "Jolt granted by this Graft grants +1% increased Damage taken", "Jolt granted by this Graft grants +1% more Maximum Attack Damage", statOrder = { 10889, 10890 }, level = 66, group = "GraftSuffixJoltMaxDamageAndDamageTaken", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3955143601] = { "Jolt granted by this Graft grants +1% more Maximum Attack Damage" }, [3853303544] = { "Jolt granted by this Graft grants +1% increased Damage taken" }, } }, - ["GraftSuffixJoltGrantsCriticalStrikeChance1"] = { type = "Suffix", affix = "of Heightening", "Jolt granted by this Graft grants (1-2)% increased Critical Strike Chance", statOrder = { 10900 }, level = 1, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1265046157] = { "Jolt granted by this Graft grants (1-2)% increased Critical Strike Chance" }, } }, - ["GraftSuffixJoltGrantsCriticalStrikeChance2"] = { type = "Suffix", affix = "of Sharpening", "Jolt granted by this Graft grants (2-3)% increased Critical Strike Chance", statOrder = { 10900 }, level = 22, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1265046157] = { "Jolt granted by this Graft grants (2-3)% increased Critical Strike Chance" }, } }, - ["GraftSuffixJoltGrantsCriticalStrikeChance3"] = { type = "Suffix", affix = "of Amplification", "Jolt granted by this Graft grants 4% increased Critical Strike Chance", statOrder = { 10900 }, level = 44, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1265046157] = { "Jolt granted by this Graft grants 4% increased Critical Strike Chance" }, } }, - ["GraftSuffixJoltGrantsCriticalStrikeChance4"] = { type = "Suffix", affix = "of Intensity", "Jolt granted by this Graft grants 5% increased Critical Strike Chance", statOrder = { 10900 }, level = 66, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1265046157] = { "Jolt granted by this Graft grants 5% increased Critical Strike Chance" }, } }, - ["GraftSuffixJoltGrantsCriticalStrikeChance5"] = { type = "Suffix", affix = "of Escalation", "Jolt granted by this Graft grants 6% increased Critical Strike Chance", statOrder = { 10900 }, level = 82, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1265046157] = { "Jolt granted by this Graft grants 6% increased Critical Strike Chance" }, } }, - ["GraftSuffixJoltGrantsCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Pins", "Jolt granted by this Graft grants +(1-2)% to Critical Strike Multiplier", statOrder = { 10901 }, level = 44, group = "GraftSuffixJoltGrantsCriticalStrikeMultiplier", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3905327148] = { "Jolt granted by this Graft grants +(1-2)% to Critical Strike Multiplier" }, } }, - ["GraftSuffixJoltGrantsCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Blades", "Jolt granted by this Graft grants +(2-3)% to Critical Strike Multiplier", statOrder = { 10901 }, level = 66, group = "GraftSuffixJoltGrantsCriticalStrikeMultiplier", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3905327148] = { "Jolt granted by this Graft grants +(2-3)% to Critical Strike Multiplier" }, } }, - ["GraftSuffixJoltGrantsCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Daggers", "Jolt granted by this Graft grants +4% to Critical Strike Multiplier", statOrder = { 10901 }, level = 82, group = "GraftSuffixJoltGrantsCriticalStrikeMultiplier", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3905327148] = { "Jolt granted by this Graft grants +4% to Critical Strike Multiplier" }, } }, - ["GraftSuffixJoltGrantsMovementVelocity1"] = { type = "Suffix", affix = "of Velocity", "Jolt granted by this Graft grants 1% increased Movement Speed", statOrder = { 10903 }, level = 66, group = "GraftSuffixJoltGrantsMovementVelocity", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1945948244] = { "Jolt granted by this Graft grants 1% increased Movement Speed" }, } }, - ["GraftSuffixLightningHandsAdditionalHands1"] = { type = "Suffix", affix = "of Grasping", "Enervating Grasp used by this Graft creates (3-5) additional Hands", statOrder = { 10892 }, level = 66, group = "GraftSuffixLightningHandsAdditionalHands", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [300482938] = { "Enervating Grasp used by this Graft creates (3-5) additional Hands" }, } }, - ["GraftSuffixLightningHandsUnnerveOnHit1"] = { type = "Suffix", affix = "of Unnerving", "Skills used by this Graft Unnerve on Hit", statOrder = { 10875 }, level = 44, group = "GraftSuffixLightningHandsUnnerveOnHit", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2418139890] = { "Skills used by this Graft Unnerve on Hit" }, } }, - ["GraftSuffixUulNetolLowLifeBuffDurationForEffect1"] = { type = "Suffix", affix = "of Dilution", "Skills used by this Graft have (34-40)% increased Skill Effect Duration", "Buff granted by Tender Embrace used by this Graft grants 10% less Life Recovery Rate", statOrder = { 10888, 10953 }, level = 44, group = "GraftSuffixUulNetolLowLifeBuffDurationForEffect", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (34-40)% increased Skill Effect Duration" }, [1082722194] = { "Buff granted by Tender Embrace used by this Graft grants 10% less Life Recovery Rate" }, } }, - ["GraftSuffixUulNetolLowLifeBuffDurationForEffect2"] = { type = "Suffix", affix = "of Thinning", "Skills used by this Graft have (41-45)% increased Skill Effect Duration", "Buff granted by Tender Embrace used by this Graft grants 10% less Life Recovery Rate", statOrder = { 10888, 10953 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffDurationForEffect", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (41-45)% increased Skill Effect Duration" }, [1082722194] = { "Buff granted by Tender Embrace used by this Graft grants 10% less Life Recovery Rate" }, } }, - ["GraftSuffixUulNetolLowLifeBuffAdditionalCharge1"] = { type = "Suffix", affix = "of Endurance", "Buff granted by Tender Embrace used by this Graft grants +1 Endurance Charge when gained", statOrder = { 10954 }, level = 82, group = "GraftSuffixUulNetolLowLifeBuffAdditionalCharge", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [994844444] = { "Buff granted by Tender Embrace used by this Graft grants +1 Endurance Charge when gained" }, } }, - ["GraftSuffixUulNetolLowLifeBuffRecovery1"] = { type = "Suffix", affix = "of Recovery", "Buff granted by Tender Embrace used by this Graft grants (2-4)% more Life Recovery Rate", statOrder = { 10953 }, level = 22, group = "GraftSuffixUulNetolLowLifeBuffRecovery", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1082722194] = { "Buff granted by Tender Embrace used by this Graft grants (2-4)% more Life Recovery Rate" }, } }, - ["GraftSuffixUulNetolLowLifeBuffRecovery2"] = { type = "Suffix", affix = "of Rejuvenation", "Buff granted by Tender Embrace used by this Graft grants (5-8)% more Life Recovery Rate", statOrder = { 10953 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffRecovery", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1082722194] = { "Buff granted by Tender Embrace used by this Graft grants (5-8)% more Life Recovery Rate" }, } }, - ["GraftSuffixUulNetolLowLifeBuffRecovery3"] = { type = "Suffix", affix = "of Renewal", "Buff granted by Tender Embrace used by this Graft grants (9-12)% more Life Recovery Rate", statOrder = { 10953 }, level = 82, group = "GraftSuffixUulNetolLowLifeBuffRecovery", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1082722194] = { "Buff granted by Tender Embrace used by this Graft grants (9-12)% more Life Recovery Rate" }, } }, - ["GraftSuffixUulNetolLowLifeBuffBlockChance1"] = { type = "Suffix", affix = "of the Bulwark", "Buff granted by Tender Embrace used by this Graft grants +(2-4)% chance to Block Attack Damage", statOrder = { 10951 }, level = 22, group = "GraftSuffixUulNetolLowLifeBuffBlockChance", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2530984421] = { "Buff granted by Tender Embrace used by this Graft grants +(2-4)% chance to Block Attack Damage" }, } }, - ["GraftSuffixUulNetolLowLifeBuffBlockChance2"] = { type = "Suffix", affix = "of Shielding", "Buff granted by Tender Embrace used by this Graft grants +(5-7)% chance to Block Attack Damage", statOrder = { 10951 }, level = 44, group = "GraftSuffixUulNetolLowLifeBuffBlockChance", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2530984421] = { "Buff granted by Tender Embrace used by this Graft grants +(5-7)% chance to Block Attack Damage" }, } }, - ["GraftSuffixUulNetolLowLifeBuffBlockChance3"] = { type = "Suffix", affix = "of the Turtle", "Buff granted by Tender Embrace used by this Graft grants +(8-10)% chance to Block Attack Damage", statOrder = { 10951 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffBlockChance", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2530984421] = { "Buff granted by Tender Embrace used by this Graft grants +(8-10)% chance to Block Attack Damage" }, } }, - ["GraftSuffixUulNetolLowLifeBuffLifeLeech1"] = { type = "Suffix", affix = "of Bloodhunger", "Buff granted by Tender Embrace used by this Graft grants (0.2-0.29)% of Damage Leeched as Life", statOrder = { 10952 }, level = 44, group = "GraftSuffixUulNetolLowLifeBuffLifeLeech", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [291373897] = { "Buff granted by Tender Embrace used by this Graft grants (0.2-0.29)% of Damage Leeched as Life" }, } }, - ["GraftSuffixUulNetolLowLifeBuffLifeLeech2"] = { type = "Suffix", affix = "of Vampirism", "Buff granted by Tender Embrace used by this Graft grants (0.3-0.39)% of Damage Leeched as Life", statOrder = { 10952 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffLifeLeech", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [291373897] = { "Buff granted by Tender Embrace used by this Graft grants (0.3-0.39)% of Damage Leeched as Life" }, } }, - ["GraftSuffixUulNetolLowLifeBuffLifeLeech3"] = { type = "Suffix", affix = "of the Leech", "Buff granted by Tender Embrace used by this Graft grants (0.4-0.5)% of Damage Leeched as Life", statOrder = { 10952 }, level = 82, group = "GraftSuffixUulNetolLowLifeBuffLifeLeech", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [291373897] = { "Buff granted by Tender Embrace used by this Graft grants (0.4-0.5)% of Damage Leeched as Life" }, } }, - ["GraftSuffixUulNetolImpaleBuffImpaleEffect1"] = { type = "Suffix", affix = "of Twisting", "Violent Desire used by this Graft grants +(6-10)% increased effect of Impale", statOrder = { 10938 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffImpaleEffect", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2000483559] = { "Violent Desire used by this Graft grants +(6-10)% increased effect of Impale" }, } }, - ["GraftSuffixUulNetolImpaleBuffImpaleEffect2"] = { type = "Suffix", affix = "of Wrenching", "Violent Desire used by this Graft grants +(11-15)% increased effect of Impale", statOrder = { 10938 }, level = 82, group = "GraftSuffixUulNetolImpaleBuffImpaleEffect", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2000483559] = { "Violent Desire used by this Graft grants +(11-15)% increased effect of Impale" }, } }, - ["GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed1"] = { type = "Suffix", affix = "of the Berserker", "Violent Desire used by this Graft also grants (4-6)% increased Attack Speed", statOrder = { 10936 }, level = 44, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1570004834] = { "Violent Desire used by this Graft also grants (4-6)% increased Attack Speed" }, } }, - ["GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed2"] = { type = "Suffix", affix = "of the Maniac", "Violent Desire used by this Graft also grants (7-9)% increased Attack Speed", statOrder = { 10936 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1570004834] = { "Violent Desire used by this Graft also grants (7-9)% increased Attack Speed" }, } }, - ["GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed3"] = { type = "Suffix", affix = "of the Madman", "Violent Desire used by this Graft also grants (10-12)% increased Attack Speed", statOrder = { 10936 }, level = 82, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1570004834] = { "Violent Desire used by this Graft also grants (10-12)% increased Attack Speed" }, } }, - ["GraftSuffixUulNetolImpaleBuffGrantsAttackAOE1"] = { type = "Suffix", affix = "of Grasping", "Violent Desire used by this Graft also grants (5-7)% increased Area of Effect with Attacks", statOrder = { 10935 }, level = 44, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackAOE", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [468012134] = { "Violent Desire used by this Graft also grants (5-7)% increased Area of Effect with Attacks" }, } }, - ["GraftSuffixUulNetolImpaleBuffGrantsAttackAOE2"] = { type = "Suffix", affix = "of Clutching", "Violent Desire used by this Graft also grants (8-10)% increased Area of Effect with Attacks", statOrder = { 10935 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackAOE", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [468012134] = { "Violent Desire used by this Graft also grants (8-10)% increased Area of Effect with Attacks" }, } }, - ["GraftSuffixUulNetolImpaleBuffGrantsAttackAOE3"] = { type = "Suffix", affix = "of Siezing", "Violent Desire used by this Graft also grants (11-13)% increased Area of Effect with Attacks", statOrder = { 10935 }, level = 82, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackAOE", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [468012134] = { "Violent Desire used by this Graft also grants (11-13)% increased Area of Effect with Attacks" }, } }, - ["GraftSuffixUulNetolImpaleBuffGrantsChanceToIgnorePhysReduction1"] = { type = "Suffix", affix = "of Devastation", "Violent Desire used by this Graft also grants Hits have (30-50)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 10937 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffGrantsChanceToIgnorePhysReduction", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [3830354140] = { "Violent Desire used by this Graft also grants Hits have (30-50)% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["GraftSuffixTulMortarAdditionalMortar1"] = { type = "Suffix", affix = "of Flinging", "Falling Crystals used by this Graft fires up to 1 additional mortar", statOrder = { 10928 }, level = 66, group = "GraftSuffixTulMortarAdditionalMortar", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2123039991] = { "Falling Crystals used by this Graft fires up to 1 additional mortar" }, } }, - ["GraftSuffixTulMortarMoreDamageVSFrozen1"] = { type = "Suffix", affix = "of Icebergs", "Skills used by this Graft deal (10-24)% more Damage to Frozen Enemies", statOrder = { 10927 }, level = 44, group = "GraftSuffixTulMortarMoreDamageVSFrozen", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3395681357] = { "Skills used by this Graft deal (10-24)% more Damage to Frozen Enemies" }, } }, - ["GraftSuffixTulMortarMoreDamageVSFrozen2"] = { type = "Suffix", affix = "of Floes", "Skills used by this Graft deal (25-34)% more Damage to Frozen Enemies", statOrder = { 10927 }, level = 66, group = "GraftSuffixTulMortarMoreDamageVSFrozen", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3395681357] = { "Skills used by this Graft deal (25-34)% more Damage to Frozen Enemies" }, } }, - ["GraftSuffixTulMortarMoreDamageVSFrozen3"] = { type = "Suffix", affix = "of Glaciers", "Skills used by this Graft deal (35-45)% more Damage to Frozen Enemies", statOrder = { 10927 }, level = 82, group = "GraftSuffixTulMortarMoreDamageVSFrozen", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3395681357] = { "Skills used by this Graft deal (35-45)% more Damage to Frozen Enemies" }, } }, - ["GraftSuffixUulNetolSpikesAdditionalSpikes1"] = { type = "Suffix", affix = "of Foothills", "Seize the Flesh used by this Graft creates +(1-2) Spire", statOrder = { 10932 }, level = 66, group = "GraftSuffixUulNetolSpikesAdditionalSpikes", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [385266470] = { "Seize the Flesh used by this Graft creates +(1-2) Spire" }, } }, - ["GraftSuffixUulNetolSpikesAdditionalSpikes2"] = { type = "Suffix", affix = "of Mountains", "Seize the Flesh used by this Graft creates +(3-4) Spires", statOrder = { 10932 }, level = 82, group = "GraftSuffixUulNetolSpikesAdditionalSpikes", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [385266470] = { "Seize the Flesh used by this Graft creates +(3-4) Spires" }, } }, - ["GraftSuffixXophPillarAdditionalPillar1"] = { type = "Suffix", affix = "of Pillars", "Call the Pyre used by this Graft creates +1 Ashen Pillar", statOrder = { 10944 }, level = 66, group = "GraftSuffixXophPillarAdditionalPillar", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [652310659] = { "Call the Pyre used by this Graft creates +1 Ashen Pillar" }, } }, - ["GraftSuffixXophPillarAdditionalPillar2"] = { type = "Suffix", affix = "of Obelisks", "Call the Pyre used by this Graft creates +2 Ashen Pillars", statOrder = { 10944 }, level = 66, group = "GraftSuffixXophPillarAdditionalPillar", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [652310659] = { "Call the Pyre used by this Graft creates +2 Ashen Pillars" }, } }, - ["GraftSuffixXophAilmentBuffEleGainAsChaos1"] = { type = "Suffix", affix = "of Foulness", "The Grey Wind Howls used by this Graft also grants (5-8)% of Elemental Damage gained as Extra Chaos Damage", statOrder = { 10942 }, level = 66, group = "GraftSuffixXophAilmentBuffEleGainAsChaos", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1761211254] = { "The Grey Wind Howls used by this Graft also grants (5-8)% of Elemental Damage gained as Extra Chaos Damage" }, } }, - ["GraftSuffixXophAilmentBuffEleResistances1"] = { type = "Suffix", affix = "of the Span", "The Grey Wind Howls used by this Graft also grants +(5-8)% to all Elemental Resistances", statOrder = { 10941 }, level = 44, group = "GraftSuffixXophAilmentBuffEleResistances", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [457484464] = { "The Grey Wind Howls used by this Graft also grants +(5-8)% to all Elemental Resistances" }, } }, - ["GraftSuffixXophAilmentBuffEleResistances2"] = { type = "Suffix", affix = "of Resistance", "The Grey Wind Howls used by this Graft also grants +(9-12)% to all Elemental Resistances", statOrder = { 10941 }, level = 66, group = "GraftSuffixXophAilmentBuffEleResistances", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [457484464] = { "The Grey Wind Howls used by this Graft also grants +(9-12)% to all Elemental Resistances" }, } }, - ["GraftSuffixXophAilmentBuffEleResistances3"] = { type = "Suffix", affix = "of Facets", "The Grey Wind Howls used by this Graft also grants +(13-16)% to all Elemental Resistances", statOrder = { 10941 }, level = 82, group = "GraftSuffixXophAilmentBuffEleResistances", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [457484464] = { "The Grey Wind Howls used by this Graft also grants +(13-16)% to all Elemental Resistances" }, } }, - ["GraftSuffixXophAilmentBuffElementalAilmentAvoid1"] = { type = "Suffix", affix = "of Eschewing", "The Grey Wind Howls used by this Graft also grants (20-29)% chance to Avoid Elemental Ailments", statOrder = { 10943 }, level = 44, group = "GraftSuffixXophAilmentBuffElementalAilmentAvoid", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4070390513] = { "The Grey Wind Howls used by this Graft also grants (20-29)% chance to Avoid Elemental Ailments" }, } }, - ["GraftSuffixXophAilmentBuffElementalAilmentAvoid2"] = { type = "Suffix", affix = "of Avoidance", "The Grey Wind Howls used by this Graft also grants (30-40)% chance to Avoid Elemental Ailments", statOrder = { 10943 }, level = 66, group = "GraftSuffixXophAilmentBuffElementalAilmentAvoid", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4070390513] = { "The Grey Wind Howls used by this Graft also grants (30-40)% chance to Avoid Elemental Ailments" }, } }, - ["GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra1"] = { type = "Suffix", affix = "of Prisms", "The Grey Wind Howls used by this Graft grants +(2-4)% additional Physical Damage gained as Extra Elemental Damage", statOrder = { 10940 }, level = 44, group = "GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4234527870] = { "The Grey Wind Howls used by this Graft grants +(2-4)% additional Physical Damage gained as Extra Elemental Damage" }, } }, - ["GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra2"] = { type = "Suffix", affix = "of the Spectrum", "The Grey Wind Howls used by this Graft grants +(5-7)% additional Physical Damage gained as Extra Elemental Damage", statOrder = { 10940 }, level = 66, group = "GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4234527870] = { "The Grey Wind Howls used by this Graft grants +(5-7)% additional Physical Damage gained as Extra Elemental Damage" }, } }, - ["GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra3"] = { type = "Suffix", affix = "of the Continuum", "The Grey Wind Howls used by this Graft grants +(8-10)% additional Physical Damage gained as Extra Elemental Damage", statOrder = { 10940 }, level = 82, group = "GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4234527870] = { "The Grey Wind Howls used by this Graft grants +(8-10)% additional Physical Damage gained as Extra Elemental Damage" }, } }, - ["GraftSuffixTulAegisBuffAmount1"] = { type = "Suffix", affix = "of Guarding", "Preserving Stillness used by this Graft can take (200-299) additional Damage", statOrder = { 10926 }, level = 44, group = "GraftSuffixTulAegisBuffAmount", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3725714391] = { "Preserving Stillness used by this Graft can take (200-299) additional Damage" }, } }, - ["GraftSuffixTulAegisBuffAmount2"] = { type = "Suffix", affix = "of Shelter", "Preserving Stillness used by this Graft can take (300-399) additional Damage", statOrder = { 10926 }, level = 66, group = "GraftSuffixTulAegisBuffAmount", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3725714391] = { "Preserving Stillness used by this Graft can take (300-399) additional Damage" }, } }, - ["GraftSuffixTulAegisBuffAmount3"] = { type = "Suffix", affix = "of Protection", "Preserving Stillness used by this Graft can take (400-500) additional Damage", statOrder = { 10926 }, level = 82, group = "GraftSuffixTulAegisBuffAmount", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3725714391] = { "Preserving Stillness used by this Graft can take (400-500) additional Damage" }, } }, - ["GraftSuffixTulAegisBuffMaxResistance1"] = { type = "Suffix", affix = "of the Mosaic", "Preserving Stillness used by this Graft also grants +1% to all maximum Elemental Resistances", statOrder = { 10925 }, level = 66, group = "GraftSuffixTulAegisBuffMaxResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [557952718] = { "Preserving Stillness used by this Graft also grants +1% to all maximum Elemental Resistances" }, } }, - ["GraftSuffixTulAegisBuffMaxResistance2"] = { type = "Suffix", affix = "of Hues", "Preserving Stillness used by this Graft also grants +2% to all maximum Elemental Resistances", statOrder = { 10925 }, level = 82, group = "GraftSuffixTulAegisBuffMaxResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [557952718] = { "Preserving Stillness used by this Graft also grants +2% to all maximum Elemental Resistances" }, } }, - ["GraftSuffixTulAegisBuffAdditionalResistance1"] = { type = "Suffix", affix = "of Resistance", "Preserving Stillness used by this Graft also grants +(10-14)% to all Elemental Resistances", statOrder = { 10924 }, level = 44, group = "GraftSuffixTulAegisBuffAdditionalResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2134023442] = { "Preserving Stillness used by this Graft also grants +(10-14)% to all Elemental Resistances" }, } }, - ["GraftSuffixTulAegisBuffAdditionalResistance2"] = { type = "Suffix", affix = "of Resilience", "Preserving Stillness used by this Graft also grants +(15-19)% to all Elemental Resistances", statOrder = { 10924 }, level = 66, group = "GraftSuffixTulAegisBuffAdditionalResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2134023442] = { "Preserving Stillness used by this Graft also grants +(15-19)% to all Elemental Resistances" }, } }, - ["GraftSuffixTulAegisBuffAdditionalResistance3"] = { type = "Suffix", affix = "of Mettle", "Preserving Stillness used by this Graft also grants +(20-25)% to all Elemental Resistances", statOrder = { 10924 }, level = 82, group = "GraftSuffixTulAegisBuffAdditionalResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2134023442] = { "Preserving Stillness used by this Graft also grants +(20-25)% to all Elemental Resistances" }, } }, + ["GraftSuffixStunDuration1"] = { type = "Suffix", affix = "of Slamming", "Skills used by this Graft have (10-19)% increased Stun Duration", statOrder = { 10923 }, level = 44, group = "GraftSuffixStunDuration", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixStunDuration2"] = { type = "Suffix", affix = "of Thudding", "Skills used by this Graft have (20-29)% increased Stun Duration", statOrder = { 10923 }, level = 66, group = "GraftSuffixStunDuration", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixStunDuration3"] = { type = "Suffix", affix = "of Dazing", "Skills used by this Graft have (30-39)% increased Stun Duration", statOrder = { 10923 }, level = 82, group = "GraftSuffixStunDuration", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixAreaOfEffect1"] = { type = "Suffix", affix = "of Reach", "Skills used by this Graft have (8-12)% increased Area of Effect", statOrder = { 10870 }, level = 1, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixAreaOfEffect2"] = { type = "Suffix", affix = "of Grasping", "Skills used by this Graft have (14-16)% increased Area of Effect", statOrder = { 10870 }, level = 22, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixAreaOfEffect3"] = { type = "Suffix", affix = "of Extension", "Skills used by this Graft have (18-22)% increased Area of Effect", statOrder = { 10870 }, level = 44, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixAreaOfEffect4"] = { type = "Suffix", affix = "of Broadening", "Skills used by this Graft have (24-28)% increased Area of Effect", statOrder = { 10870 }, level = 66, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixAreaOfEffect5"] = { type = "Suffix", affix = "of the Expanse", "Skills used by this Graft have (30-34)% increased Area of Effect", statOrder = { 10870 }, level = 82, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixHinderOnHit1"] = { type = "Suffix", affix = "of Hindrance", "Spells used by this Graft Hinder Enemies on Hit", statOrder = { 10922 }, level = 44, group = "GraftSuffixHinderOnHit", weightKey = { "graft_tul_tornado", "graft_esh_lightning_hands", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixChainingDistance1"] = { type = "Suffix", affix = "of Ricocheting", "Skills used by this Graft have (40-69)% increased Chaining range", statOrder = { 10872 }, level = 44, group = "GraftSuffixChainingDistance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixChainingDistance2"] = { type = "Suffix", affix = "of Chaining", "Skills used by this Graft have (70-100)% increased Chaining range", statOrder = { 10872 }, level = 82, group = "GraftSuffixChainingDistance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixAdditionalProjectiles1"] = { type = "Suffix", affix = "of Splitting", "Skills used by this Graft fire 2 additional Projectiles", statOrder = { 10913 }, level = 44, group = "GraftSuffixAdditionalProjectiles", weightKey = { "graft_xoph_molten_shell", "graft_tul_tornado", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixAdditionalProjectiles2"] = { type = "Suffix", affix = "of Splintering", "Skills used by this Graft fire 3 additional Projectiles", statOrder = { 10913 }, level = 82, group = "GraftSuffixAdditionalProjectiles", weightKey = { "graft_xoph_molten_shell", "graft_tul_tornado", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixProjectileSpeed1"] = { type = "Suffix", affix = "of Flight", "Skills used by this Graft have (8-12)% increased Projectile Speed", statOrder = { 10915 }, level = 1, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixProjectileSpeed2"] = { type = "Suffix", affix = "of Gliding", "Skills used by this Graft have (13-17)% increased Projectile Speed", statOrder = { 10915 }, level = 22, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixProjectileSpeed3"] = { type = "Suffix", affix = "of Homing", "Skills used by this Graft have (18-22)% increased Projectile Speed", statOrder = { 10915 }, level = 44, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixProjectileSpeed4"] = { type = "Suffix", affix = "of Launching", "Skills used by this Graft have (23-27)% increased Projectile Speed", statOrder = { 10915 }, level = 66, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixProjectileSpeed5"] = { type = "Suffix", affix = "of Soaring", "Skills used by this Graft have (28-32)% increased Projectile Speed", statOrder = { 10915 }, level = 82, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixIncreasedDamage1"] = { type = "Suffix", affix = "of Blasting", "Skills used by this Graft deal (10-29)% increased Damage", statOrder = { 10885 }, level = 1, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixIncreasedDamage2"] = { type = "Suffix", affix = "of Smashing", "Skills used by this Graft deal (30-49)% increased Damage", statOrder = { 10885 }, level = 11, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixIncreasedDamage3"] = { type = "Suffix", affix = "of Shattering", "Skills used by this Graft deal (50-69)% increased Damage", statOrder = { 10885 }, level = 22, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixIncreasedDamage4"] = { type = "Suffix", affix = "of Wrecking", "Skills used by this Graft deal (70-89)% increased Damage", statOrder = { 10885 }, level = 33, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixIncreasedDamage5"] = { type = "Suffix", affix = "of Destroying", "Skills used by this Graft deal (90-109)% increased Damage", statOrder = { 10885 }, level = 44, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixIncreasedDamage6"] = { type = "Suffix", affix = "of Crushing", "Skills used by this Graft deal (110-129)% increased Damage", statOrder = { 10885 }, level = 55, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixIncreasedDamage7"] = { type = "Suffix", affix = "of Disintegration", "Skills used by this Graft deal (130-149)% increased Damage", statOrder = { 10885 }, level = 66, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixIncreasedDamage8"] = { type = "Suffix", affix = "of Demolishing", "Skills used by this Graft deal (150-169)% increased Damage", statOrder = { 10885 }, level = 74, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixIncreasedDamage9"] = { type = "Suffix", affix = "of Ruination", "Skills used by this Graft deal (170-189)% increased Damage", statOrder = { 10885 }, level = 82, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixIncreasedDamage10"] = { type = "Suffix", affix = "of Annihilation", "Skills used by this Graft deal (190-220)% increased Damage", statOrder = { 10885 }, level = 85, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixIncreasedDuration1"] = { type = "Suffix", affix = "of Lingering", "Skills used by this Graft have (10-14)% increased Skill Effect Duration", statOrder = { 10888 }, level = 1, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixIncreasedDuration2"] = { type = "Suffix", affix = "of Lasting", "Skills used by this Graft have (15-20)% increased Skill Effect Duration", statOrder = { 10888 }, level = 22, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixIncreasedDuration3"] = { type = "Suffix", affix = "of the Unending", "Skills used by this Graft have (20-24)% increased Skill Effect Duration", statOrder = { 10888 }, level = 44, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixIncreasedDuration4"] = { type = "Suffix", affix = "of Permanence", "Skills used by this Graft have (25-29)% increased Skill Effect Duration", statOrder = { 10888 }, level = 66, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixIncreasedDuration5"] = { type = "Suffix", affix = "of Eternity", "Skills used by this Graft have (30-35)% increased Skill Effect Duration", statOrder = { 10888 }, level = 82, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixCooldownSpeed1"] = { type = "Suffix", affix = "of the Creek", "Skills used by this Graft have (10-14)% increased Cooldown Recovery Rate", statOrder = { 10878 }, level = 1, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixCooldownSpeed2"] = { type = "Suffix", affix = "of the Stream", "Skills used by this Graft have (15-20)% increased Cooldown Recovery Rate", statOrder = { 10878 }, level = 22, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixCooldownSpeed3"] = { type = "Suffix", affix = "of the River", "Skills used by this Graft have (20-24)% increased Cooldown Recovery Rate", statOrder = { 10878 }, level = 44, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 700, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixCooldownSpeed4"] = { type = "Suffix", affix = "of the Tide", "Skills used by this Graft have (25-29)% increased Cooldown Recovery Rate", statOrder = { 10878 }, level = 66, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixCooldownSpeed5"] = { type = "Suffix", affix = "of the Oceans", "Skills used by this Graft have (30-35)% increased Cooldown Recovery Rate", statOrder = { 10878 }, level = 82, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixSkipCooldown1"] = { type = "Suffix", affix = "of Chronomancy", "Skills used by this Graft have 25% chance to not consume a Cooldown on use", statOrder = { 10921 }, level = 66, group = "GraftSuffixSkipCooldown", weightKey = { "graft_esh_bolt_ring", "graft_uulnetol_hand_slam", "graft_xoph_cremations", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixAttackSpeed1"] = { type = "Suffix", affix = "of Speed", "Skills used by this Graft have (10-24)% increased Attack Speed", statOrder = { 10871 }, level = 22, group = "GraftSuffixAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixAttackSpeed2"] = { type = "Suffix", affix = "of Quickness", "Skills used by this Graft have (25-39)% increased Attack Speed", statOrder = { 10871 }, level = 44, group = "GraftSuffixAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixAttackSpeed3"] = { type = "Suffix", affix = "of Agility", "Skills used by this Graft have (40-55)% increased Attack Speed", statOrder = { 10871 }, level = 66, group = "GraftSuffixAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixSkillLevel1"] = { type = "Suffix", affix = "of Nobility", "+2 to level of Skills used by this Graft", statOrder = { 10904 }, level = 44, group = "GraftSuffixSkillLevel", weightKey = { "graft_tutorial", "graft", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixSkillLevel2"] = { type = "Suffix", affix = "of Lordship", "+3 to level of Skills used by this Graft", statOrder = { 10904 }, level = 66, group = "GraftSuffixSkillLevel", weightKey = { "graft_tutorial", "graft", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixSkillLevel3"] = { type = "Suffix", affix = "of Royalty", "+4 to level of Skills used by this Graft", statOrder = { 10904 }, level = 85, group = "GraftSuffixSkillLevel", weightKey = { "graft_tutorial", "graft", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixCriticalChance1"] = { type = "Suffix", affix = "of Incision", "Skills used by this Graft have (40-79)% increased Critical Strike Chance", "Skills used by this Graft have +(8-14)% to Critical Strike Multiplier", statOrder = { 10881, 10882 }, level = 1, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixCriticalChance2"] = { type = "Suffix", affix = "of Slicing", "Skills used by this Graft have (80-119)% increased Critical Strike Chance", "Skills used by this Graft have +(15-21)% to Critical Strike Multiplier", statOrder = { 10881, 10882 }, level = 22, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixCriticalChance3"] = { type = "Suffix", affix = "of Dicing", "Skills used by this Graft have (120-139)% increased Critical Strike Chance", "Skills used by this Graft have +(22-28)% to Critical Strike Multiplier", statOrder = { 10881, 10882 }, level = 44, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixCriticalChance4"] = { type = "Suffix", affix = "of Striking", "Skills used by this Graft have (140-159)% increased Critical Strike Chance", "Skills used by this Graft have +(29-35)% to Critical Strike Multiplier", statOrder = { 10881, 10882 }, level = 66, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixCriticalChance5"] = { type = "Suffix", affix = "of Precision", "Skills used by this Graft have (160-200)% increased Critical Strike Chance", "Skills used by this Graft have +(36-42)% to Critical Strike Multiplier", statOrder = { 10881, 10882 }, level = 82, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixFirePenetration1"] = { type = "Suffix", affix = "of Singing", "Skills used by this Graft penetrate (4-9)% Enemy Fire Resistance", statOrder = { 10917 }, level = 44, group = "GraftSuffixFirePenetration", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixFirePenetration2"] = { type = "Suffix", affix = "of Searing", "Skills used by this Graft penetrate (10-14)% Enemy Fire Resistance", statOrder = { 10917 }, level = 66, group = "GraftSuffixFirePenetration", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixFirePenetration3"] = { type = "Suffix", affix = "of Blackening", "Skills used by this Graft penetrate (15-20)% Enemy Fire Resistance", statOrder = { 10917 }, level = 82, group = "GraftSuffixFirePenetration", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixColdPenetration1"] = { type = "Suffix", affix = "of the North", "Skills used by this Graft penetrate (4-9)% Enemy Cold Resistance", statOrder = { 10916 }, level = 44, group = "GraftSuffixColdPenetration", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixColdPenetration2"] = { type = "Suffix", affix = "of the Boreal", "Skills used by this Graft penetrate (10-14)% Enemy Cold Resistance", statOrder = { 10916 }, level = 66, group = "GraftSuffixColdPenetration", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixColdPenetration3"] = { type = "Suffix", affix = "of the Arctic", "Skills used by this Graft penetrate (15-20)% Enemy Cold Resistance", statOrder = { 10916 }, level = 82, group = "GraftSuffixColdPenetration", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixLightningPenetration1"] = { type = "Suffix", affix = "of Scattered Bolts", "Skills used by this Graft penetrate (4-9)% Enemy Lightning Resistance", statOrder = { 10918 }, level = 44, group = "GraftSuffixLightningPenetration", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixLightningPenetration2"] = { type = "Suffix", affix = "of Striking Jolts", "Skills used by this Graft penetrate (10-14)% Enemy Lightning Resistance", statOrder = { 10918 }, level = 66, group = "GraftSuffixLightningPenetration", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixLightningPenetration3"] = { type = "Suffix", affix = "of Seeking Sparks", "Skills used by this Graft penetrate (15-20)% Enemy Lightning Resistance", statOrder = { 10918 }, level = 82, group = "GraftSuffixLightningPenetration", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulnetolHandSlamDamageForCDR1"] = { type = "Suffix", affix = "of Impact", "Skills used by this Graft have 20% reduced Cooldown Recovery Rate", "Skills used by this Graft deal (20-29)% more Damage", statOrder = { 10878, 10933 }, level = 44, group = "GraftSuffixUulnetolHandSlamDamageForCDR", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulnetolHandSlamDamageForCDR2"] = { type = "Suffix", affix = "of Cratering", "Skills used by this Graft have 25% reduced Cooldown Recovery Rate", "Skills used by this Graft deal (30-45)% more Damage", statOrder = { 10878, 10933 }, level = 82, group = "GraftSuffixUulnetolHandSlamDamageForCDR", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulnetolHandSlamAttackSpeedForAOE1"] = { type = "Suffix", affix = "of Earthshaking", "Skills used by this Graft have (15-24)% more Area of Effect", "Skills used by this Graft have 15% less Attack Speed", statOrder = { 10956, 10957 }, level = 44, group = "GraftSuffixUulnetolHandSlamAttackSpeedForAOE", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulnetolHandSlamAttackSpeedForAOE2"] = { type = "Suffix", affix = "of Earthshattering", "Skills used by this Graft have (25-35)% more Area of Effect", "Skills used by this Graft have 10% less Attack Speed", statOrder = { 10956, 10957 }, level = 82, group = "GraftSuffixUulnetolHandSlamAttackSpeedForAOE", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulnetolHandSlamCrushOnHit1"] = { type = "Suffix", affix = "of Pulverising", "Skills used by this Graft Crush on Hit", statOrder = { 10883 }, level = 44, group = "GraftSuffixUulnetolHandSlamCrushOnHit", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulnetolHandSlamVulnerabilityOnHit1"] = { type = "Suffix", affix = "of Vulnerability", "Skills used by this Graft inflict Vulnerability on Hit", statOrder = { 10939 }, level = 44, group = "GraftSuffixUulnetolHandSlamVulnerabilityOnHit", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulnetolHandSlamIntimidateOnHit1"] = { type = "Suffix", affix = "of Intimidation", "Skills used by this Graft Intimidate on Hit", statOrder = { 10899 }, level = 44, group = "GraftSuffixUulnetolHandSlamIntimidateOnHit", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixIgnorePhysMitigation1"] = { type = "Suffix", affix = "of Overwhelming", "Skills used by this Graft ignore Enemy Physical Damage Reduction", statOrder = { 10895 }, level = 44, group = "GraftSuffixIgnorePhysMitigation", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixShockChance1"] = { type = "Suffix", affix = "of Zapping", "Skills used by this Graft have (19-57)% chance to Shock", statOrder = { 10920 }, level = 1, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixShockChance2"] = { type = "Suffix", affix = "of Jolting", "Skills used by this Graft have (29-87)% chance to Shock", statOrder = { 10920 }, level = 22, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixShockChance3"] = { type = "Suffix", affix = "of Blitzing", "Skills used by this Graft have (39-117)% chance to Shock", statOrder = { 10920 }, level = 44, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixShockChance4"] = { type = "Suffix", affix = "of Electricity", "Skills used by this Graft have (49-147)% chance to Shock", statOrder = { 10920 }, level = 66, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixShockChance5"] = { type = "Suffix", affix = "of Sublimation", "Skills used by this Graft have (60-180)% chance to Shock", statOrder = { 10920 }, level = 82, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixIgniteChance1"] = { type = "Suffix", affix = "of Cinders", "Skills used by this Graft have (13-29)% chance to Ignite", statOrder = { 10874 }, level = 1, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixIgniteChance2"] = { type = "Suffix", affix = "of Coal", "Skills used by this Graft have (29-44)% chance to Ignite", statOrder = { 10874 }, level = 22, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixIgniteChance3"] = { type = "Suffix", affix = "of Embers", "Skills used by this Graft have (44-59)% chance to Ignite", statOrder = { 10874 }, level = 44, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 700, 700, 700, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixIgniteChance4"] = { type = "Suffix", affix = "of Ashes", "Skills used by this Graft have (60-74)% chance to Ignite", statOrder = { 10874 }, level = 66, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixIgniteChance5"] = { type = "Suffix", affix = "of Glowing", "Skills used by this Graft have (75-100)% chance to Ignite", statOrder = { 10874 }, level = 82, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixFreezeChance1"] = { type = "Suffix", affix = "of Ice", "Skills used by this Graft have (10-19)% chance to Freeze", statOrder = { 10873 }, level = 1, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixFreezeChance2"] = { type = "Suffix", affix = "of Sleet", "Skills used by this Graft have (20-29)% chance to Freeze", statOrder = { 10873 }, level = 22, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixFreezeChance3"] = { type = "Suffix", affix = "of Snow", "Skills used by this Graft have (30-39)% chance to Freeze", statOrder = { 10873 }, level = 44, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixFreezeChance4"] = { type = "Suffix", affix = "of Hail", "Skills used by this Graft have (40-49)% chance to Freeze", statOrder = { 10873 }, level = 66, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixFreezeChance5"] = { type = "Suffix", affix = "of Glaciers", "Skills used by this Graft have (50-60)% chance to Freeze", statOrder = { 10873 }, level = 82, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixShockAsThoughDealingMoreDamage1"] = { type = "Suffix", affix = "of Amplification", "Skills used by this Graft Shock Enemies as though dealing 100% more Damage", statOrder = { 10919 }, level = 66, group = "GraftSuffixShockAsThoughDealingMoreDamage", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixLightningGainAsChaos1"] = { type = "Suffix", affix = "of Shadowed Bolt", "Skills used by this Graft Gain (16-24)% of Lightning Damage as Extra Chaos Damage", statOrder = { 10905 }, level = 44, group = "GraftSuffixLightningGainAsChaos", weightKey = { "graft_esh_bolt_ring", "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixLightningGainAsChaos2"] = { type = "Suffix", affix = "of Twisted Thunder", "Skills used by this Graft Gain (28-32)% of Lightning Damage as Extra Chaos Damage", statOrder = { 10905 }, level = 66, group = "GraftSuffixLightningGainAsChaos", weightKey = { "graft_esh_bolt_ring", "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixLightningGainAsChaos3"] = { type = "Suffix", affix = "of Darkened Storms", "Skills used by this Graft Gain (44-56)% of Lightning Damage as Extra Chaos Damage", statOrder = { 10905 }, level = 82, group = "GraftSuffixLightningGainAsChaos", weightKey = { "graft_esh_bolt_ring", "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixFireGainAsChaos1"] = { type = "Suffix", affix = "of Shadowed Smoke", "Skills used by this Graft Gain (16-24)% of Fire Damage as Extra Chaos Damage", statOrder = { 10893 }, level = 44, group = "GraftSuffixFireGainAsChaos", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixFireGainAsChaos2"] = { type = "Suffix", affix = "of Umbral Flame", "Skills used by this Graft Gain (28-32)% of Fire Damage as Extra Chaos Damage", statOrder = { 10893 }, level = 66, group = "GraftSuffixFireGainAsChaos", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixFireGainAsChaos3"] = { type = "Suffix", affix = "of Darkened Flame", "Skills used by this Graft Gain (44-56)% of Fire Damage as Extra Chaos Damage", statOrder = { 10893 }, level = 82, group = "GraftSuffixFireGainAsChaos", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixColdGainAsChaos1"] = { type = "Suffix", affix = "of Blasted Snow", "Skills used by this Graft Gain (16-24)% of Cold Damage as Extra Chaos Damage", statOrder = { 10876 }, level = 44, group = "GraftSuffixColdGainAsChaos", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixColdGainAsChaos2"] = { type = "Suffix", affix = "of Blackened Ice", "Skills used by this Graft Gain (28-32)% of Cold Damage as Extra Chaos Damage", statOrder = { 10876 }, level = 66, group = "GraftSuffixColdGainAsChaos", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixColdGainAsChaos3"] = { type = "Suffix", affix = "of Darkened Frost", "Skills used by this Graft Gain (44-56)% of Cold Damage as Extra Chaos Damage", statOrder = { 10876 }, level = 82, group = "GraftSuffixColdGainAsChaos", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixCoverInFrost1"] = { type = "Suffix", affix = "of Snowdrifts", "Skills used by this Graft have (20-30)% chance to Cover Enemies in Frost on Hit", statOrder = { 10880 }, level = 66, group = "GraftSuffixCoverInFrost", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixAilmentDuration1"] = { type = "Suffix", affix = "of Torment", "Ailments inflicted by Skills used by this Graft have (8-14)% increased duration", statOrder = { 10869 }, level = 22, group = "GraftSuffixAilmentDuration", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixAilmentDuration2"] = { type = "Suffix", affix = "of Misery", "Ailments inflicted by Skills used by this Graft have (15-23)% increased duration", statOrder = { 10869 }, level = 66, group = "GraftSuffixAilmentDuration", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixAilmentDuration3"] = { type = "Suffix", affix = "of Torture", "Ailments inflicted by Skills used by this Graft have (24-35)% increased duration", statOrder = { 10869 }, level = 82, group = "GraftSuffixAilmentDuration", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixFireExposureOnHit1"] = { type = "Suffix", affix = "of Melting", "Skills used by this Graft have (20-34)% chance to inflict Fire Exposure on Hit", statOrder = { 10897 }, level = 44, group = "GraftSuffixFireExposureOnHit", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixFireExposureOnHit2"] = { type = "Suffix", affix = "of Liquefaction", "Skills used by this Graft have (35-49)% chance to inflict Fire Exposure on Hit", statOrder = { 10897 }, level = 66, group = "GraftSuffixFireExposureOnHit", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixFireExposureOnHit3"] = { type = "Suffix", affix = "of Exposure", "Skills used by this Graft have (50-70)% chance to inflict Fire Exposure on Hit", statOrder = { 10897 }, level = 82, group = "GraftSuffixFireExposureOnHit", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixLightningExposureOnHit1"] = { type = "Suffix", affix = "of Melting", "Skills used by this Graft have (20-34)% chance to inflict Lightning Exposure on Hit", statOrder = { 10898 }, level = 44, group = "GraftSuffixLightningExposureOnHit", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixLightningExposureOnHit2"] = { type = "Suffix", affix = "of Liquefaction", "Skills used by this Graft have (35-49)% chance to inflict Lightning Exposure on Hit", statOrder = { 10898 }, level = 66, group = "GraftSuffixLightningExposureOnHit", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixLightningExposureOnHit3"] = { type = "Suffix", affix = "of Exposure", "Skills used by this Graft have (50-70)% chance to inflict Lightning Exposure on Hit", statOrder = { 10898 }, level = 82, group = "GraftSuffixLightningExposureOnHit", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixImpaleEffect1"] = { type = "Suffix", affix = "of Wringing", "Skills used by this Graft have (20-34)% increased Impale Effect", statOrder = { 10896 }, level = 44, group = "GraftSuffixImpaleEffect", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixImpaleEffect2"] = { type = "Suffix", affix = "of Twisting", "Skills used by this Graft have (35-44)% increased Impale Effect", statOrder = { 10896 }, level = 66, group = "GraftSuffixImpaleEffect", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixImpaleEffect3"] = { type = "Suffix", affix = "of Mangling", "Skills used by this Graft have (45-55)% increased Impale Effect", statOrder = { 10896 }, level = 82, group = "GraftSuffixImpaleEffect", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixMinionDamage1"] = { type = "Suffix", affix = "of Armies", "Minions summoned by this Graft deal (10-29)% increased Damage", statOrder = { 10908 }, level = 1, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixMinionDamage2"] = { type = "Suffix", affix = "of Infantry", "Minions summoned by this Graft deal (30-49)% increased Damage", statOrder = { 10908 }, level = 11, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixMinionDamage3"] = { type = "Suffix", affix = "of Troops", "Minions summoned by this Graft deal (50-69)% increased Damage", statOrder = { 10908 }, level = 22, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixMinionDamage4"] = { type = "Suffix", affix = "of the Multitude", "Minions summoned by this Graft deal (70-89)% increased Damage", statOrder = { 10908 }, level = 33, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixMinionDamage5"] = { type = "Suffix", affix = "of Swarms", "Minions summoned by this Graft deal (90-109)% increased Damage", statOrder = { 10908 }, level = 44, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixMinionDamage6"] = { type = "Suffix", affix = "of Hordes", "Minions summoned by this Graft deal (110-129)% increased Damage", statOrder = { 10908 }, level = 55, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixMinionDamage7"] = { type = "Suffix", affix = "of Hosts", "Minions summoned by this Graft deal (130-149)% increased Damage", statOrder = { 10908 }, level = 66, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixMinionDamage8"] = { type = "Suffix", affix = "of Throngs", "Minions summoned by this Graft deal (150-169)% increased Damage", statOrder = { 10908 }, level = 74, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixMinionDamage9"] = { type = "Suffix", affix = "of Droves", "Minions summoned by this Graft deal (170-189)% increased Damage", statOrder = { 10908 }, level = 82, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixMinionDamage10"] = { type = "Suffix", affix = "of Legions", "Minions summoned by this Graft deal (190-220)% increased Damage", statOrder = { 10908 }, level = 85, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixMinionLife1"] = { type = "Suffix", affix = "of Muscle", "Minions summoned by this Graft have (32-36)% increased Life", statOrder = { 10909 }, level = 1, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixMinionLife2"] = { type = "Suffix", affix = "of Flesh", "Minions summoned by this Graft have (38-42)% increased Life", statOrder = { 10909 }, level = 22, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixMinionLife3"] = { type = "Suffix", affix = "of Sinew", "Minions summoned by this Graft have (44-48)% increased Life", statOrder = { 10909 }, level = 44, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixMinionLife4"] = { type = "Suffix", affix = "of Beef", "Minions summoned by this Graft have (50-54)% increased Life", statOrder = { 10909 }, level = 66, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixMinionLife5"] = { type = "Suffix", affix = "of Meat", "Minions summoned by this Graft have (56-60)% increased Life", statOrder = { 10909 }, level = 82, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixMinionAttackSpeed1"] = { type = "Suffix", affix = "of Lunacy", "Minions summoned by this Graft have (12-18)% increased Attack Speed", statOrder = { 10906 }, level = 44, group = "GraftSuffixMinionAttackSpeed", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixMinionAttackSpeed2"] = { type = "Suffix", affix = "of Psychopathy", "Minions summoned by this Graft have (19-25)% increased Attack Speed", statOrder = { 10906 }, level = 66, group = "GraftSuffixMinionAttackSpeed", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixMinionAttackSpeed3"] = { type = "Suffix", affix = "of Maniacism", "Minions summoned by this Graft have (26-31)% increased Attack Speed", statOrder = { 10906 }, level = 82, group = "GraftSuffixMinionAttackSpeed", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixMinionBlindOnHit1"] = { type = "Suffix", affix = "of Blinding Snow", "Minions summoned by this Graft have (10-20)% chance to Blind on Hit", statOrder = { 10911 }, level = 66, group = "GraftSuffixMinionBlindOnHit", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixMinionTauntOnHit1"] = { type = "Suffix", affix = "of Taunting", "Minions summoned by this Graft have (10-20)% chance to Taunt on Hit", statOrder = { 10907 }, level = 66, group = "GraftSuffixMinionTauntOnHit", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixMinionDamageGainAsCold1"] = { type = "Suffix", affix = "of Frozen Falls", "Minions summoned by this Graft gain (40-49)% of Physical Damage as Extra Cold Damage", statOrder = { 10910 }, level = 44, group = "GraftSuffixMinionDamageGainAsCold", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixMinionDamageGainAsCold2"] = { type = "Suffix", affix = "of Winter Winds", "Minions summoned by this Graft gain (50-59)% of Physical Damage as Extra Cold Damage", statOrder = { 10910 }, level = 66, group = "GraftSuffixMinionDamageGainAsCold", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixMinionDamageGainAsCold3"] = { type = "Suffix", affix = "of Sleetbound Snow", "Minions summoned by this Graft gain (60-70)% of Physical Damage as Extra Cold Damage", statOrder = { 10910 }, level = 82, group = "GraftSuffixMinionDamageGainAsCold", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixFasterAilments1"] = { type = "Suffix", affix = "of Decomposition", "Damaging Ailments inflicted by Skills used by this Graft deal damage (8-14)% faster", statOrder = { 10887 }, level = 44, group = "GraftSuffixFasterAilments", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixFasterAilments2"] = { type = "Suffix", affix = "of Festering", "Damaging Ailments inflicted by Skills used by this Graft deal damage (15-21)% faster", statOrder = { 10887 }, level = 66, group = "GraftSuffixFasterAilments", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixFasterAilments3"] = { type = "Suffix", affix = "of Perishing", "Damaging Ailments inflicted by Skills used by this Graft deal damage (22-28)% faster", statOrder = { 10887 }, level = 82, group = "GraftSuffixFasterAilments", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixPunishmentOnHit1"] = { type = "Suffix", affix = "of Punishment", "Skills used by this Graft inflict Punishment on Hit", statOrder = { 10884 }, level = 44, group = "GraftSuffixPunishmentOnHit", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixNonDamagingAilmentEffect1"] = { type = "Suffix", affix = "of Oppression", "Skills used by this Graft have (10-19)% increased effect of Non-Damaging Ailments", statOrder = { 10912 }, level = 22, group = "GraftSuffixNonDamagingAilmentEffect", weightKey = { "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixNonDamagingAilmentEffect2"] = { type = "Suffix", affix = "of Suppression", "Skills used by this Graft have (20-29)% increased effect of Non-Damaging Ailments", statOrder = { 10912 }, level = 66, group = "GraftSuffixNonDamagingAilmentEffect", weightKey = { "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixNonDamagingAilmentEffect3"] = { type = "Suffix", affix = "of Persecution", "Skills used by this Graft have (30-40)% increased effect of Non-Damaging Ailments", statOrder = { 10912 }, level = 82, group = "GraftSuffixNonDamagingAilmentEffect", weightKey = { "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixIncreasedDamageVsIgnited1"] = { type = "Suffix", affix = "of Aggravation", "Skills used by this Graft deal (117-152)% increased Damage against Ignited Enemies", statOrder = { 10886 }, level = 44, group = "GraftSuffixIncreasedDamageVsIgnited", weightKey = { "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixIncreasedDamageVsIgnited2"] = { type = "Suffix", affix = "of Exacerbation", "Skills used by this Graft deal (169-194)% increased Damage against Ignited Enemies", statOrder = { 10886 }, level = 66, group = "GraftSuffixIncreasedDamageVsIgnited", weightKey = { "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixIncreasedDamageVsIgnited3"] = { type = "Suffix", affix = "of Anguish", "Skills used by this Graft deal (221-246)% increased Damage against Ignited Enemies", statOrder = { 10886 }, level = 82, group = "GraftSuffixIncreasedDamageVsIgnited", weightKey = { "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixEshLightningRingBuffAddedLightning1"] = { type = "Suffix", affix = "of Glowing", "Radiant Ground created by Skills from this Graft grants Allies on it an additional 4 to 18 added Lightning Damage", statOrder = { 10868 }, level = 44, group = "GraftSuffixEshLightningRingBuffAddedLightning", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixEshLightningRingBuffAddedLightning2"] = { type = "Suffix", affix = "of Shimmering", "Radiant Ground created by Skills from this Graft grants Allies on it an additional 5 to 24 added Lightning Damage", statOrder = { 10868 }, level = 66, group = "GraftSuffixEshLightningRingBuffAddedLightning", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixEshLightningRingBuffAddedLightning3"] = { type = "Suffix", affix = "of Radiance", "Radiant Ground created by Skills from this Graft grants Allies on it an additional 6 to 30 added Lightning Damage", statOrder = { 10868 }, level = 82, group = "GraftSuffixEshLightningRingBuffAddedLightning", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixEshLightningRingConductivityOnHit"] = { type = "Suffix", affix = "of Conductivity", "Skills used by this Graft inflict Conductivity on Hit", statOrder = { 10877 }, level = 66, group = "GraftSuffixEshLightningRingConductivityOnHit", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixEshLightningRingNumberOfBolts1"] = { type = "Suffix", affix = "of Bolts", "Skills used by this Graft cause 4 additional lightning bolt strikes", statOrder = { 10891 }, level = 44, group = "GraftSuffixEshLightningRingNumberOfBolts", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixEshLightningRingNumberOfBolts2"] = { type = "Suffix", affix = "of Thunderclaps", "Skills used by this Graft cause 6 additional lightning bolt strikes", statOrder = { 10891 }, level = 82, group = "GraftSuffixEshLightningRingNumberOfBolts", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixXophMoltenShellShieldAmount1"] = { type = "Suffix", affix = "of the Core", "Heart of Flame Buff used by this Graft can take an additional (150-250) Damage", statOrder = { 10947 }, level = 44, group = "GraftSuffixXophMoltenShellShieldAmount", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixXophMoltenShellShieldAmount2"] = { type = "Suffix", affix = "of the Crux", "Heart of Flame Buff used by this Graft can take an additional (300-550) Damage", statOrder = { 10947 }, level = 66, group = "GraftSuffixXophMoltenShellShieldAmount", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixXophMoltenShellShieldAmount3"] = { type = "Suffix", affix = "of the Heart", "Heart of Flame Buff used by this Graft can take an additional (600-750) Damage", statOrder = { 10947 }, level = 82, group = "GraftSuffixXophMoltenShellShieldAmount", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixXophMoltenShellCoverInAsh1"] = { type = "Suffix", affix = "of Ashen Flame", "Skills used by this Graft Cover Enemies in Ash on Hit", statOrder = { 10879 }, level = 66, group = "GraftSuffixXophMoltenShellCoverInAsh", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixXophMoltenShellArmourDuringBuff1"] = { type = "Suffix", affix = "of Flameplating", "Heart of Flame Buff used by this Graft grants (20-49)% increased Armour", statOrder = { 10948 }, level = 44, group = "GraftSuffixXophMoltenShellArmourDuringBuff", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixXophMoltenShellArmourDuringBuff2"] = { type = "Suffix", affix = "of Fiery Buttresses", "Heart of Flame Buff used by this Graft grants (50-75)% increased Armour", statOrder = { 10948 }, level = 82, group = "GraftSuffixXophMoltenShellArmourDuringBuff", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixXophMoltenShellPercentTakenByBuff1"] = { type = "Suffix", affix = "of the Fireheart", "An additional (5-10)% of Damage from Hits is taken from Heart of Flame Buff used by this Graft before Life or Energy Shield", statOrder = { 10949 }, level = 66, group = "GraftSuffixXophMoltenShellPercentTakenByBuff", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixXophMoltenShellLessShieldIncreasedCDR1"] = { type = "Suffix", affix = "of Hasty Reconstruction", "Skills used by this Graft have 40% increased Cooldown Recovery Rate", "Heart of Flame Buff used by this Graft can take 30% less Damage", statOrder = { 10878, 10950 }, level = 44, group = "GraftSuffixXophMoltenShellLessShieldIncreasedCDR", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixFrostbiteOnHit1"] = { type = "Suffix", affix = "of Frostbite", "Skills used by this Graft inflict Frostbite on Hit", statOrder = { 10894 }, level = 44, group = "GraftSuffixFrostbiteOnHit", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixTulTornadoProjectileDamageAfterPierce1"] = { type = "Suffix", affix = "of Boring", "Projectiles created by this Graft that have Pierced deal (20-30)% more Damage", statOrder = { 10914 }, level = 66, group = "GraftSuffixTulTornadoProjectileDamageAfterPierce", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixTulTornadoAdditionalTornado1"] = { type = "Suffix", affix = "of Whirlwinds", "Skills used by this Graft deal 40% less Damage", "Dance in the White used by this Graft creates an additional Tornado", "Dance in the White used by this Graft has +1 to maximum Tornados", statOrder = { 10929, 10930, 10931 }, level = 66, group = "GraftSuffixTulTornadoAdditionalTornado", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixXophGeysersAdditionalGeyser1"] = { type = "Suffix", affix = "of Eruption", "His Burning Message used by this Graft creates an additional geyser", statOrder = { 10945 }, level = 44, group = "GraftSuffixXophGeysersAdditionalGeyser", weightKey = { "graft_xoph_cremations", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixXophGeysersAdditionalGeyser2"] = { type = "Suffix", affix = "of Geysers", "His Burning Message used by this Graft creates 2 additional geysers", statOrder = { 10945 }, level = 82, group = "GraftSuffixXophGeysersAdditionalGeyser", weightKey = { "graft_xoph_cremations", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixXophGeysersAdditionalWarcyProjectiles1"] = { type = "Suffix", affix = "of Deafening", "Geysers created by this Graft fire 2 additional Projectiles when you Warcry", statOrder = { 10946 }, level = 66, group = "GraftSuffixXophGeysersAdditionalWarcyProjectiles", weightKey = { "graft_xoph_cremations", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixJoltBuffMaximumJoltBuffCount1"] = { type = "Suffix", affix = "of Trembling", "Overcharged Sinews used by this Graft can apply +(1-2) maximum Jolt Buffs", statOrder = { 10902 }, level = 44, group = "GraftSuffixJoltBuffMaximumJoltBuffCount", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixJoltBuffMaximumJoltBuffCount2"] = { type = "Suffix", affix = "of Shuddering", "Overcharged Sinews used by this Graft can apply +(3-4) maximum Jolt Buffs", statOrder = { 10902 }, level = 82, group = "GraftSuffixJoltBuffMaximumJoltBuffCount", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixJoltMaxDamageAndDamageTaken1"] = { type = "Suffix", affix = "of Peril", "Jolt granted by this Graft grants +1% increased Damage taken", "Jolt granted by this Graft grants +1% more Maximum Attack Damage", statOrder = { 10889, 10890 }, level = 66, group = "GraftSuffixJoltMaxDamageAndDamageTaken", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixJoltGrantsCriticalStrikeChance1"] = { type = "Suffix", affix = "of Heightening", "Jolt granted by this Graft grants (1-2)% increased Critical Strike Chance", statOrder = { 10900 }, level = 1, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixJoltGrantsCriticalStrikeChance2"] = { type = "Suffix", affix = "of Sharpening", "Jolt granted by this Graft grants (2-3)% increased Critical Strike Chance", statOrder = { 10900 }, level = 22, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixJoltGrantsCriticalStrikeChance3"] = { type = "Suffix", affix = "of Amplification", "Jolt granted by this Graft grants 4% increased Critical Strike Chance", statOrder = { 10900 }, level = 44, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixJoltGrantsCriticalStrikeChance4"] = { type = "Suffix", affix = "of Intensity", "Jolt granted by this Graft grants 5% increased Critical Strike Chance", statOrder = { 10900 }, level = 66, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixJoltGrantsCriticalStrikeChance5"] = { type = "Suffix", affix = "of Escalation", "Jolt granted by this Graft grants 6% increased Critical Strike Chance", statOrder = { 10900 }, level = 82, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixJoltGrantsCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Pins", "Jolt granted by this Graft grants +(1-2)% to Critical Strike Multiplier", statOrder = { 10901 }, level = 44, group = "GraftSuffixJoltGrantsCriticalStrikeMultiplier", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixJoltGrantsCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Blades", "Jolt granted by this Graft grants +(2-3)% to Critical Strike Multiplier", statOrder = { 10901 }, level = 66, group = "GraftSuffixJoltGrantsCriticalStrikeMultiplier", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixJoltGrantsCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Daggers", "Jolt granted by this Graft grants +4% to Critical Strike Multiplier", statOrder = { 10901 }, level = 82, group = "GraftSuffixJoltGrantsCriticalStrikeMultiplier", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixJoltGrantsMovementVelocity1"] = { type = "Suffix", affix = "of Velocity", "Jolt granted by this Graft grants 1% increased Movement Speed", statOrder = { 10903 }, level = 66, group = "GraftSuffixJoltGrantsMovementVelocity", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixLightningHandsAdditionalHands1"] = { type = "Suffix", affix = "of Grasping", "Enervating Grasp used by this Graft creates (3-5) additional Hands", statOrder = { 10892 }, level = 66, group = "GraftSuffixLightningHandsAdditionalHands", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixLightningHandsUnnerveOnHit1"] = { type = "Suffix", affix = "of Unnerving", "Skills used by this Graft Unnerve on Hit", statOrder = { 10875 }, level = 44, group = "GraftSuffixLightningHandsUnnerveOnHit", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulNetolLowLifeBuffDurationForEffect1"] = { type = "Suffix", affix = "of Dilution", "Skills used by this Graft have (34-40)% increased Skill Effect Duration", "Buff granted by Tender Embrace used by this Graft grants 10% less Life Recovery Rate", statOrder = { 10888, 10953 }, level = 44, group = "GraftSuffixUulNetolLowLifeBuffDurationForEffect", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulNetolLowLifeBuffDurationForEffect2"] = { type = "Suffix", affix = "of Thinning", "Skills used by this Graft have (41-45)% increased Skill Effect Duration", "Buff granted by Tender Embrace used by this Graft grants 10% less Life Recovery Rate", statOrder = { 10888, 10953 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffDurationForEffect", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulNetolLowLifeBuffAdditionalCharge1"] = { type = "Suffix", affix = "of Endurance", "Buff granted by Tender Embrace used by this Graft grants +1 Endurance Charge when gained", statOrder = { 10954 }, level = 82, group = "GraftSuffixUulNetolLowLifeBuffAdditionalCharge", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulNetolLowLifeBuffRecovery1"] = { type = "Suffix", affix = "of Recovery", "Buff granted by Tender Embrace used by this Graft grants (2-4)% more Life Recovery Rate", statOrder = { 10953 }, level = 22, group = "GraftSuffixUulNetolLowLifeBuffRecovery", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulNetolLowLifeBuffRecovery2"] = { type = "Suffix", affix = "of Rejuvenation", "Buff granted by Tender Embrace used by this Graft grants (5-8)% more Life Recovery Rate", statOrder = { 10953 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffRecovery", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulNetolLowLifeBuffRecovery3"] = { type = "Suffix", affix = "of Renewal", "Buff granted by Tender Embrace used by this Graft grants (9-12)% more Life Recovery Rate", statOrder = { 10953 }, level = 82, group = "GraftSuffixUulNetolLowLifeBuffRecovery", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulNetolLowLifeBuffBlockChance1"] = { type = "Suffix", affix = "of the Bulwark", "Buff granted by Tender Embrace used by this Graft grants +(2-4)% chance to Block Attack Damage", statOrder = { 10951 }, level = 22, group = "GraftSuffixUulNetolLowLifeBuffBlockChance", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulNetolLowLifeBuffBlockChance2"] = { type = "Suffix", affix = "of Shielding", "Buff granted by Tender Embrace used by this Graft grants +(5-7)% chance to Block Attack Damage", statOrder = { 10951 }, level = 44, group = "GraftSuffixUulNetolLowLifeBuffBlockChance", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulNetolLowLifeBuffBlockChance3"] = { type = "Suffix", affix = "of the Turtle", "Buff granted by Tender Embrace used by this Graft grants +(8-10)% chance to Block Attack Damage", statOrder = { 10951 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffBlockChance", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulNetolLowLifeBuffLifeLeech1"] = { type = "Suffix", affix = "of Bloodhunger", "Buff granted by Tender Embrace used by this Graft grants (0.2-0.29)% of Damage Leeched as Life", statOrder = { 10952 }, level = 44, group = "GraftSuffixUulNetolLowLifeBuffLifeLeech", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulNetolLowLifeBuffLifeLeech2"] = { type = "Suffix", affix = "of Vampirism", "Buff granted by Tender Embrace used by this Graft grants (0.3-0.39)% of Damage Leeched as Life", statOrder = { 10952 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffLifeLeech", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulNetolLowLifeBuffLifeLeech3"] = { type = "Suffix", affix = "of the Leech", "Buff granted by Tender Embrace used by this Graft grants (0.4-0.5)% of Damage Leeched as Life", statOrder = { 10952 }, level = 82, group = "GraftSuffixUulNetolLowLifeBuffLifeLeech", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulNetolImpaleBuffImpaleEffect1"] = { type = "Suffix", affix = "of Twisting", "Violent Desire used by this Graft grants +(6-10)% increased effect of Impale", statOrder = { 10938 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffImpaleEffect", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulNetolImpaleBuffImpaleEffect2"] = { type = "Suffix", affix = "of Wrenching", "Violent Desire used by this Graft grants +(11-15)% increased effect of Impale", statOrder = { 10938 }, level = 82, group = "GraftSuffixUulNetolImpaleBuffImpaleEffect", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed1"] = { type = "Suffix", affix = "of the Berserker", "Violent Desire used by this Graft also grants (4-6)% increased Attack Speed", statOrder = { 10936 }, level = 44, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed2"] = { type = "Suffix", affix = "of the Maniac", "Violent Desire used by this Graft also grants (7-9)% increased Attack Speed", statOrder = { 10936 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed3"] = { type = "Suffix", affix = "of the Madman", "Violent Desire used by this Graft also grants (10-12)% increased Attack Speed", statOrder = { 10936 }, level = 82, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulNetolImpaleBuffGrantsAttackAOE1"] = { type = "Suffix", affix = "of Grasping", "Violent Desire used by this Graft also grants (5-7)% increased Area of Effect with Attacks", statOrder = { 10935 }, level = 44, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackAOE", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulNetolImpaleBuffGrantsAttackAOE2"] = { type = "Suffix", affix = "of Clutching", "Violent Desire used by this Graft also grants (8-10)% increased Area of Effect with Attacks", statOrder = { 10935 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackAOE", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulNetolImpaleBuffGrantsAttackAOE3"] = { type = "Suffix", affix = "of Siezing", "Violent Desire used by this Graft also grants (11-13)% increased Area of Effect with Attacks", statOrder = { 10935 }, level = 82, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackAOE", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulNetolImpaleBuffGrantsChanceToIgnorePhysReduction1"] = { type = "Suffix", affix = "of Devastation", "Violent Desire used by this Graft also grants Hits have (30-50)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 10937 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffGrantsChanceToIgnorePhysReduction", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixTulMortarAdditionalMortar1"] = { type = "Suffix", affix = "of Flinging", "Falling Crystals used by this Graft fires up to 1 additional mortar", statOrder = { 10928 }, level = 66, group = "GraftSuffixTulMortarAdditionalMortar", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixTulMortarMoreDamageVSFrozen1"] = { type = "Suffix", affix = "of Icebergs", "Skills used by this Graft deal (10-24)% more Damage to Frozen Enemies", statOrder = { 10927 }, level = 44, group = "GraftSuffixTulMortarMoreDamageVSFrozen", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixTulMortarMoreDamageVSFrozen2"] = { type = "Suffix", affix = "of Floes", "Skills used by this Graft deal (25-34)% more Damage to Frozen Enemies", statOrder = { 10927 }, level = 66, group = "GraftSuffixTulMortarMoreDamageVSFrozen", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixTulMortarMoreDamageVSFrozen3"] = { type = "Suffix", affix = "of Glaciers", "Skills used by this Graft deal (35-45)% more Damage to Frozen Enemies", statOrder = { 10927 }, level = 82, group = "GraftSuffixTulMortarMoreDamageVSFrozen", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulNetolSpikesAdditionalSpikes1"] = { type = "Suffix", affix = "of Foothills", "Seize the Flesh used by this Graft creates +(1-2) Spire", statOrder = { 10932 }, level = 66, group = "GraftSuffixUulNetolSpikesAdditionalSpikes", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixUulNetolSpikesAdditionalSpikes2"] = { type = "Suffix", affix = "of Mountains", "Seize the Flesh used by this Graft creates +(3-4) Spires", statOrder = { 10932 }, level = 82, group = "GraftSuffixUulNetolSpikesAdditionalSpikes", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixXophPillarAdditionalPillar1"] = { type = "Suffix", affix = "of Pillars", "Call the Pyre used by this Graft creates +1 Ashen Pillar", statOrder = { 10944 }, level = 66, group = "GraftSuffixXophPillarAdditionalPillar", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixXophPillarAdditionalPillar2"] = { type = "Suffix", affix = "of Obelisks", "Call the Pyre used by this Graft creates +2 Ashen Pillars", statOrder = { 10944 }, level = 66, group = "GraftSuffixXophPillarAdditionalPillar", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixXophAilmentBuffEleGainAsChaos1"] = { type = "Suffix", affix = "of Foulness", "The Grey Wind Howls used by this Graft also grants (5-8)% of Elemental Damage gained as Extra Chaos Damage", statOrder = { 10942 }, level = 66, group = "GraftSuffixXophAilmentBuffEleGainAsChaos", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixXophAilmentBuffEleResistances1"] = { type = "Suffix", affix = "of the Span", "The Grey Wind Howls used by this Graft also grants +(5-8)% to all Elemental Resistances", statOrder = { 10941 }, level = 44, group = "GraftSuffixXophAilmentBuffEleResistances", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixXophAilmentBuffEleResistances2"] = { type = "Suffix", affix = "of Resistance", "The Grey Wind Howls used by this Graft also grants +(9-12)% to all Elemental Resistances", statOrder = { 10941 }, level = 66, group = "GraftSuffixXophAilmentBuffEleResistances", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixXophAilmentBuffEleResistances3"] = { type = "Suffix", affix = "of Facets", "The Grey Wind Howls used by this Graft also grants +(13-16)% to all Elemental Resistances", statOrder = { 10941 }, level = 82, group = "GraftSuffixXophAilmentBuffEleResistances", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixXophAilmentBuffElementalAilmentAvoid1"] = { type = "Suffix", affix = "of Eschewing", "The Grey Wind Howls used by this Graft also grants (20-29)% chance to Avoid Elemental Ailments", statOrder = { 10943 }, level = 44, group = "GraftSuffixXophAilmentBuffElementalAilmentAvoid", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixXophAilmentBuffElementalAilmentAvoid2"] = { type = "Suffix", affix = "of Avoidance", "The Grey Wind Howls used by this Graft also grants (30-40)% chance to Avoid Elemental Ailments", statOrder = { 10943 }, level = 66, group = "GraftSuffixXophAilmentBuffElementalAilmentAvoid", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra1"] = { type = "Suffix", affix = "of Prisms", "The Grey Wind Howls used by this Graft grants +(2-4)% additional Physical Damage gained as Extra Elemental Damage", statOrder = { 10940 }, level = 44, group = "GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra2"] = { type = "Suffix", affix = "of the Spectrum", "The Grey Wind Howls used by this Graft grants +(5-7)% additional Physical Damage gained as Extra Elemental Damage", statOrder = { 10940 }, level = 66, group = "GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra3"] = { type = "Suffix", affix = "of the Continuum", "The Grey Wind Howls used by this Graft grants +(8-10)% additional Physical Damage gained as Extra Elemental Damage", statOrder = { 10940 }, level = 82, group = "GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixTulAegisBuffAmount1"] = { type = "Suffix", affix = "of Guarding", "Preserving Stillness used by this Graft can take (200-299) additional Damage", statOrder = { 10926 }, level = 44, group = "GraftSuffixTulAegisBuffAmount", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixTulAegisBuffAmount2"] = { type = "Suffix", affix = "of Shelter", "Preserving Stillness used by this Graft can take (300-399) additional Damage", statOrder = { 10926 }, level = 66, group = "GraftSuffixTulAegisBuffAmount", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixTulAegisBuffAmount3"] = { type = "Suffix", affix = "of Protection", "Preserving Stillness used by this Graft can take (400-500) additional Damage", statOrder = { 10926 }, level = 82, group = "GraftSuffixTulAegisBuffAmount", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixTulAegisBuffMaxResistance1"] = { type = "Suffix", affix = "of the Mosaic", "Preserving Stillness used by this Graft also grants +1% to all maximum Elemental Resistances", statOrder = { 10925 }, level = 66, group = "GraftSuffixTulAegisBuffMaxResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixTulAegisBuffMaxResistance2"] = { type = "Suffix", affix = "of Hues", "Preserving Stillness used by this Graft also grants +2% to all maximum Elemental Resistances", statOrder = { 10925 }, level = 82, group = "GraftSuffixTulAegisBuffMaxResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixTulAegisBuffAdditionalResistance1"] = { type = "Suffix", affix = "of Resistance", "Preserving Stillness used by this Graft also grants +(10-14)% to all Elemental Resistances", statOrder = { 10924 }, level = 44, group = "GraftSuffixTulAegisBuffAdditionalResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixTulAegisBuffAdditionalResistance2"] = { type = "Suffix", affix = "of Resilience", "Preserving Stillness used by this Graft also grants +(15-19)% to all Elemental Resistances", statOrder = { 10924 }, level = 66, group = "GraftSuffixTulAegisBuffAdditionalResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { } }, + ["GraftSuffixTulAegisBuffAdditionalResistance3"] = { type = "Suffix", affix = "of Mettle", "Preserving Stillness used by this Graft also grants +(20-25)% to all Elemental Resistances", statOrder = { 10924 }, level = 82, group = "GraftSuffixTulAegisBuffAdditionalResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { } }, ["GraftCorruptionAttackSpeedPerFrenzy"] = { type = "Corrupted", affix = "", "(1-2)% increased Attack Speed per Frenzy Charge", statOrder = { 2049 }, level = 1, group = "GraftCorruptionAttackSpeedPerFrenzy", weightKey = { "graft", "default", }, weightVal = { 120, 0 }, modTags = { }, tradeHashes = { [3548561213] = { "(1-2)% increased Attack Speed per Frenzy Charge" }, } }, ["GraftCorruptionCritChancePerPower"] = { type = "Corrupted", affix = "", "(4-8)% increased Critical Strike Chance per Power Charge", statOrder = { 3166 }, level = 1, group = "GraftCorruptionCritChancePerPower", weightKey = { "graft", "default", }, weightVal = { 120, 0 }, modTags = { }, tradeHashes = { [2102212273] = { "(4-8)% increased Critical Strike Chance per Power Charge" }, } }, ["GraftCorruptionLifeRegenerationPerEndurance"] = { type = "Corrupted", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 1, group = "GraftCorruptionLifeRegenerationPerEndurance", weightKey = { "graft", "default", }, weightVal = { 120, 0 }, modTags = { }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } }, diff --git a/src/Data/ModItemExclusive.lua b/src/Data/ModItemExclusive.lua index 436d7f10fc5..b8cafe5b511 100644 --- a/src/Data/ModItemExclusive.lua +++ b/src/Data/ModItemExclusive.lua @@ -923,141 +923,141 @@ return { ["IncreasedPhysicalDamagePercentUnique__5"] = { affix = "", "(10-15)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(10-15)% increased Global Physical Damage" }, } }, ["IncreasedPhysicalDamagePercentUnique__6"] = { affix = "", "(10-15)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(10-15)% increased Global Physical Damage" }, } }, ["IncreasedPhysicalDamagePercentUnique__7"] = { affix = "", "(10-15)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(10-15)% 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" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueBow2"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(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 = { [1509134228] = { "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 = { [1509134228] = { "(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 = { [1509134228] = { "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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueBow5"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "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 = { [1509134228] = { "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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "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 = { [1509134228] = { "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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "No Physical Damage" }, } }, + ["LocalReducedPhysicalDamagePercentUniqueWand6"] = { affix = "", "No Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "No Physical Damage" }, } }, + ["LocalReducedPhysicalDamagePercentUniqueOneHandSword7"] = { affix = "", "No Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "No Physical Damage" }, } }, + ["LocalReducedPhysicalDamagePercentUnique__1"] = { affix = "", "No Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "No Physical Damage" }, } }, + ["LocalReducedPhysicalDamagePercentUnique__2"] = { affix = "", "No Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "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" }, } }, @@ -1721,7 +1721,7 @@ return { ["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] = { "" }, } }, + ["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" }, } }, ["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" }, } }, @@ -2546,7 +2546,7 @@ return { ["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__18"] = { affix = "", "-(20-10)% to all Elemental Resistances", statOrder = { 10717 }, level = 1, group = "UniqueJewelDonutAllocationAllReistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1725885727] = { "-(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" }, } }, @@ -2788,38 +2788,38 @@ return { ["FlaskExtraLifeUnique__1"] = { affix = "", "50% increased Life Recovered", statOrder = { 849 }, level = 1, group = "FlaskExtraLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [1261982764] = { "50% increased Life Recovered" }, } }, ["FlaskFreezeImmunityUnique__1"] = { affix = "", "Grants Immunity to Chill for 4 seconds if used while Chilled", "Grants Immunity to Freeze for 4 seconds if used while Frozen", statOrder = { 902, 902.1 }, level = 1, group = "FlaskDispellsChill", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "cold", "ailment" }, tradeHashes = { [3570046771] = { "Grants Immunity to Chill for 4 seconds if used while Chilled", "Grants Immunity to Freeze for 4 seconds if used while Frozen" }, } }, ["FlaskDispellsBurningUnique__1"] = { affix = "", "Grants Immunity to Ignite for 4 seconds if used while Ignited", "Removes all Burning when used", statOrder = { 904, 904.1 }, level = 1, group = "FlaskDispellsBurning", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "fire", "ailment" }, tradeHashes = { [2695527599] = { "Grants Immunity to Ignite for 4 seconds if used while Ignited", "Removes all Burning when used" }, } }, - ["FlaskExtraChargesUnique__1"] = { affix = "", "+45 to Maximum Charges", statOrder = { 837 }, level = 1, group = "FlaskExtraMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+45 to Maximum Charges" }, } }, + ["FlaskExtraChargesUnique__1"] = { affix = "", "+45 to Maximum Charges", statOrder = { 837 }, level = 1, group = "FlaskExtraMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1437957544] = { "+45 to Maximum Charges" }, } }, ["FlaskChargesAddedIncreasePercentUnique_1"] = { affix = "", "(40-60)% increased Charge Recovery", statOrder = { 845 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(40-60)% increased Charge Recovery" }, } }, ["FlaskChargesAddedIncreasePercentUnique__2"] = { affix = "", "(20-30)% increased Charge Recovery", statOrder = { 845 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(20-30)% increased Charge Recovery" }, } }, ["FlaskChargesAddedIncreasePercentUnique__3"] = { affix = "", "(20-40)% increased Charge Recovery", statOrder = { 845 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(20-40)% increased Charge Recovery" }, } }, ["FlaskBuffManaLeechWhileHealing"] = { affix = "of Craving", "2% of Physical Attack Damage Leeched as Mana during Effect", statOrder = { 953 }, level = 12, group = "FlaskBuffManaLeechWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana", "physical", "attack" }, tradeHashes = { [464954991] = { "2% of Physical Attack Damage Leeched as Mana during Effect" }, } }, ["FlaskChanceRechargeOnCritUnique__1"] = { affix = "", "50% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 842 }, level = 50, group = "FlaskChanceRechargeOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [2858921304] = { "50% chance to gain a Flask Charge when you deal a Critical Strike" }, } }, - ["FlaskEffectIncreasedDurationReducedEffect1"] = { affix = "[UNUSED]", "(35-45)% increased Duration", "25% reduced effect", statOrder = { 857, 935 }, level = 20, group = "FlaskEffectReducedDuration", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% reduced effect" }, [156096868] = { "(35-45)% increased Duration" }, } }, - ["FlaskEffectIncreasedDurationReducedEffect2"] = { affix = "[UNUSED]", "(46-55)% increased Duration", "25% reduced effect", statOrder = { 857, 935 }, level = 36, group = "FlaskEffectReducedDuration", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% reduced effect" }, [156096868] = { "(46-55)% increased Duration" }, } }, - ["FlaskEffectIncreasedDurationReducedEffect3_"] = { affix = "[UNUSED]", "(56-66)% increased Duration", "25% reduced effect", statOrder = { 857, 935 }, level = 52, group = "FlaskEffectReducedDuration", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% reduced effect" }, [156096868] = { "(56-66)% increased Duration" }, } }, - ["FlaskEffectIncreasedDurationReducedEffect4__"] = { affix = "[UNUSED]", "(56-66)% increased Duration", "25% reduced effect", statOrder = { 857, 935 }, level = 68, group = "FlaskEffectReducedDuration", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% reduced effect" }, [156096868] = { "(56-66)% increased Duration" }, } }, - ["FlaskEffectIncreasedDurationReducedEffect5"] = { affix = "[UNUSED]", "(56-66)% increased Duration", "25% reduced effect", statOrder = { 857, 935 }, level = 84, group = "FlaskEffectReducedDuration", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% reduced effect" }, [156096868] = { "(56-66)% increased Duration" }, } }, - ["FlaskEffectDurationUnique__1"] = { affix = "", "(25-50)% increased Duration", statOrder = { 857 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [553298121] = { "" }, [156096868] = { "(25-50)% increased Duration" }, } }, - ["FlaskEffectDurationUnique__2"] = { affix = "", "(60-80)% reduced Duration", statOrder = { 857 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [553298121] = { "" }, [156096868] = { "(60-80)% reduced Duration" }, } }, - ["FlaskEffectDurationUnique__3"] = { affix = "", "(30-50)% increased Duration", statOrder = { 857 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [553298121] = { "" }, [156096868] = { "(30-50)% increased Duration" }, } }, - ["FlaskEffectDurationUnique__4"] = { affix = "", "25% increased Duration", statOrder = { 857 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [553298121] = { "" }, [156096868] = { "25% increased Duration" }, } }, - ["FlaskEffectDurationUnique__6"] = { affix = "", "(70-80)% reduced Duration", statOrder = { 857 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [553298121] = { "" }, [156096868] = { "(70-80)% reduced Duration" }, } }, - ["FlaskEffectDurationUnique__7"] = { affix = "", "(50-80)% increased Duration", statOrder = { 857 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [553298121] = { "" }, [156096868] = { "(50-80)% increased Duration" }, } }, - ["FlaskChargesUsedUnique___1"] = { affix = "", "500% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "500% increased Charges per use" }, } }, - ["FlaskChargesUsedUnique___2"] = { affix = "", "(125-150)% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(125-150)% increased Charges per use" }, } }, - ["FlaskChargesUsedUnique__3"] = { affix = "", "50% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "50% increased Charges per use" }, } }, - ["FlaskChargesUsedUnique__4"] = { affix = "", "(-10-10)% reduced Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(-10-10)% reduced Charges per use" }, } }, - ["FlaskChargesUsedUnique__5"] = { affix = "", "(125-150)% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(125-150)% increased Charges per use" }, } }, - ["FlaskChargesUsedUnique__6_"] = { affix = "", "(80-100)% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(80-100)% increased Charges per use" }, } }, - ["FlaskChargesUsedUnique__7"] = { affix = "", "100% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "100% increased Charges per use" }, } }, - ["FlaskChargesUsedUnique__8"] = { affix = "", "(175-200)% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(175-200)% increased Charges per use" }, } }, - ["FlaskChargesUsedUnique__9_"] = { affix = "", "(40-50)% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(40-50)% increased Charges per use" }, } }, - ["FlaskChargesUsedUnique__10"] = { affix = "", "(-10-10)% reduced Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(-10-10)% reduced Charges per use" }, } }, - ["FlaskChargesUsedUnique__11"] = { affix = "", "(10-20)% reduced Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(10-20)% reduced Charges per use" }, } }, - ["FlaskExtraChargesUnique__2_"] = { affix = "", "+(-40-90) to Maximum Charges", statOrder = { 837 }, level = 1, group = "FlaskExtraMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(-40-90) to Maximum Charges" }, } }, - ["FlaskExtraChargesUnique__3"] = { affix = "", "+(10-20) to Maximum Charges", statOrder = { 837 }, level = 1, group = "FlaskExtraMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(10-20) to Maximum Charges" }, } }, - ["FlaskIncreasedDurationUnique__2"] = { affix = "", "90% reduced Duration", statOrder = { 857 }, level = 1, group = "FlaskIncreasedDurationUnique1", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [156096868] = { "90% reduced Duration" }, } }, - ["FlaskIncreasedDurationUnique__3"] = { affix = "", "(-35-35)% reduced Duration", statOrder = { 857 }, level = 1, group = "FlaskIncreasedDurationUnique1", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(-35-35)% reduced Duration" }, } }, + ["FlaskEffectIncreasedDurationReducedEffect1"] = { affix = "[UNUSED]", "(35-45)% increased Duration", "25% reduced effect", statOrder = { 857, 935 }, level = 20, group = "FlaskEffectReducedDuration", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(35-45)% increased Duration" }, [2448920197] = { "25% reduced effect" }, } }, + ["FlaskEffectIncreasedDurationReducedEffect2"] = { affix = "[UNUSED]", "(46-55)% increased Duration", "25% reduced effect", statOrder = { 857, 935 }, level = 36, group = "FlaskEffectReducedDuration", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(46-55)% increased Duration" }, [2448920197] = { "25% reduced effect" }, } }, + ["FlaskEffectIncreasedDurationReducedEffect3_"] = { affix = "[UNUSED]", "(56-66)% increased Duration", "25% reduced effect", statOrder = { 857, 935 }, level = 52, group = "FlaskEffectReducedDuration", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(56-66)% increased Duration" }, [2448920197] = { "25% reduced effect" }, } }, + ["FlaskEffectIncreasedDurationReducedEffect4__"] = { affix = "[UNUSED]", "(56-66)% increased Duration", "25% reduced effect", statOrder = { 857, 935 }, level = 68, group = "FlaskEffectReducedDuration", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(56-66)% increased Duration" }, [2448920197] = { "25% reduced effect" }, } }, + ["FlaskEffectIncreasedDurationReducedEffect5"] = { affix = "[UNUSED]", "(56-66)% increased Duration", "25% reduced effect", statOrder = { 857, 935 }, level = 84, group = "FlaskEffectReducedDuration", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(56-66)% increased Duration" }, [2448920197] = { "25% reduced effect" }, } }, + ["FlaskEffectDurationUnique__1"] = { affix = "", "(25-50)% increased Duration", statOrder = { 857 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(25-50)% increased Duration" }, [2448920197] = { "" }, } }, + ["FlaskEffectDurationUnique__2"] = { affix = "", "(60-80)% reduced Duration", statOrder = { 857 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(60-80)% reduced Duration" }, [2448920197] = { "" }, } }, + ["FlaskEffectDurationUnique__3"] = { affix = "", "(30-50)% increased Duration", statOrder = { 857 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(30-50)% increased Duration" }, [2448920197] = { "" }, } }, + ["FlaskEffectDurationUnique__4"] = { affix = "", "25% increased Duration", statOrder = { 857 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "25% increased Duration" }, [2448920197] = { "" }, } }, + ["FlaskEffectDurationUnique__6"] = { affix = "", "(70-80)% reduced Duration", statOrder = { 857 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(70-80)% reduced Duration" }, [2448920197] = { "" }, } }, + ["FlaskEffectDurationUnique__7"] = { affix = "", "(50-80)% increased Duration", statOrder = { 857 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(50-80)% increased Duration" }, [2448920197] = { "" }, } }, + ["FlaskChargesUsedUnique___1"] = { affix = "", "500% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "500% increased Charges per use" }, } }, + ["FlaskChargesUsedUnique___2"] = { affix = "", "(125-150)% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(125-150)% increased Charges per use" }, } }, + ["FlaskChargesUsedUnique__3"] = { affix = "", "50% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "50% increased Charges per use" }, } }, + ["FlaskChargesUsedUnique__4"] = { affix = "", "(-10-10)% reduced Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(-10-10)% reduced Charges per use" }, } }, + ["FlaskChargesUsedUnique__5"] = { affix = "", "(125-150)% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(125-150)% increased Charges per use" }, } }, + ["FlaskChargesUsedUnique__6_"] = { affix = "", "(80-100)% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(80-100)% increased Charges per use" }, } }, + ["FlaskChargesUsedUnique__7"] = { affix = "", "100% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "100% increased Charges per use" }, } }, + ["FlaskChargesUsedUnique__8"] = { affix = "", "(175-200)% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(175-200)% increased Charges per use" }, } }, + ["FlaskChargesUsedUnique__9_"] = { affix = "", "(40-50)% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(40-50)% increased Charges per use" }, } }, + ["FlaskChargesUsedUnique__10"] = { affix = "", "(-10-10)% reduced Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(-10-10)% reduced Charges per use" }, } }, + ["FlaskChargesUsedUnique__11"] = { affix = "", "(10-20)% reduced Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(10-20)% reduced Charges per use" }, } }, + ["FlaskExtraChargesUnique__2_"] = { affix = "", "+(-40-90) to Maximum Charges", statOrder = { 837 }, level = 1, group = "FlaskExtraMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1437957544] = { "+(-40-90) to Maximum Charges" }, } }, + ["FlaskExtraChargesUnique__3"] = { affix = "", "+(10-20) to Maximum Charges", statOrder = { 837 }, level = 1, group = "FlaskExtraMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1437957544] = { "+(10-20) to Maximum Charges" }, } }, + ["FlaskIncreasedDurationUnique__2"] = { affix = "", "90% reduced Duration", statOrder = { 857 }, level = 1, group = "FlaskIncreasedDurationUnique1", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "90% reduced Duration" }, } }, + ["FlaskIncreasedDurationUnique__3"] = { affix = "", "(-35-35)% reduced Duration", statOrder = { 857 }, level = 1, group = "FlaskIncreasedDurationUnique1", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(-35-35)% reduced Duration" }, } }, ["FlaskBuffReducedManaCostWhileHealingUnique__1"] = { affix = "", "10% increased Mana Cost of Skills during Effect", statOrder = { 999 }, level = 1, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [683273571] = { "10% increased Mana Cost of Skills during Effect" }, } }, ["FlaskBuffWardWhileHealingUnique__1"] = { affix = "", "50% reduced Ward during Effect", statOrder = { 939 }, level = 1, group = "FlaskBuffWardWhileHealing", weightKey = { }, weightVal = { }, modTags = { "flask", "defences" }, tradeHashes = { [2891175306] = { "50% reduced Ward during Effect" }, } }, ["FlaskWardUnbreakableDuringEffectUnique__1"] = { affix = "", "Ward does not Break during Effect", statOrder = { 940 }, level = 1, group = "FlaskWardUnbreakableDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "defences" }, tradeHashes = { [80764074] = { "Ward does not Break during Effect" }, } }, @@ -3050,7 +3050,7 @@ return { ["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] = { "" }, } }, + ["BloodMagic"] = { affix = "", "Blood Magic", statOrder = { 10773 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, } }, ["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" }, } }, @@ -3156,28 +3156,28 @@ return { ["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" }, } }, + ["Acrobatics"] = { affix = "", "Acrobatics", statOrder = { 10768 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [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" }, } }, + ["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 = { [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 = { [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 = { [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 = { [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 = { [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 = { [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 = { [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 = { [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 = { [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 = { [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 = { [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 = { [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 = { [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 = { [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 = { [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 = { [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 = { [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" }, } }, + ["AttackerTakesDamageUniqueHelmetDex3"] = { affix = "", "Reflects 4 Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [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" }, } }, @@ -3338,15 +3338,15 @@ return { ["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" }, } }, + ["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" }, [966747987] = { "+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 = { [1225383362] = { "+(1-2) to maximum number of Skeletons" }, [966747987] = { "+(1-2) to maximum number of Raised Zombies" }, [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 = { [1225383362] = { "" }, [966747987] = { "" }, [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" }, [966747987] = { "" }, [125218179] = { "" }, } }, + ["MaximumMinionCountUniqueBootsStrInt2Updated"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 2162 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1225383362] = { "+1 to maximum number of Skeletons" }, [966747987] = { "" }, [125218179] = { "" }, } }, + ["MaximumMinionCountUniqueBodyInt9"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 2161 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1225383362] = { "" }, [966747987] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, ["MaximumMinionCountUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", "(7-10)% increased Skeleton Cast Speed", "(3-5)% increased Skeleton Movement Speed", statOrder = { 10047, 10048, 10049 }, level = 1, group = "SkeletonSpeedOld", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [2725259389] = { "(7-10)% increased Skeleton Cast Speed" }, [3413085237] = { "(7-10)% increased Skeleton Attack Speed" }, [3295031203] = { "(3-5)% increased Skeleton Movement Speed" }, } }, - ["MaximumMinionCountUnique__1__"] = { 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" }, } }, - ["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" }, } }, + ["MaximumMinionCountUnique__1__"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 2161 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1225383362] = { "" }, [966747987] = { "" }, [125218179] = { "+2 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 = { [1225383362] = { "" }, [966747987] = { "" }, [125218179] = { "+2 to maximum number of Spectres" }, } }, ["SkeletonMovementSpeedUniqueJewel1"] = { affix = "", "(3-5)% increased Skeleton Movement Speed", statOrder = { 10049 }, level = 1, group = "SkeletonMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [3295031203] = { "(3-5)% increased Skeleton Movement Speed" }, } }, ["SkeletonAttackSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", statOrder = { 10047 }, level = 1, group = "SkeletonAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHashes = { [3413085237] = { "(7-10)% increased Skeleton Attack Speed" }, } }, ["SkeletonCastSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Cast Speed", statOrder = { 10048 }, level = 1, group = "SkeletonCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "minion" }, tradeHashes = { [2725259389] = { "(7-10)% increased Skeleton Cast Speed" }, } }, @@ -3361,9 +3361,9 @@ return { ["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" }, } }, + ["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" }, } }, + ["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" }, [966747987] = { "+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 = { [1225383362] = { "+1 to maximum number of Skeletons" }, [966747987] = { "+1 to maximum number of Raised Zombies" }, [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" }, } }, @@ -3393,8 +3393,8 @@ return { ["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] = { "" }, } }, + ["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" }, } }, + ["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" }, } }, ["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" }, } }, @@ -3417,14 +3417,14 @@ return { ["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__2"] = { affix = "", "2% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "2% 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" }, } }, + ["ChanceToFreezeUniqueStaff2"] = { affix = "", "8% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "8% chance to Freeze" }, } }, + ["ChanceToFreezeUniqueQuiver5"] = { affix = "", "(7-10)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "(7-10)% chance to Freeze" }, } }, + ["ChanceToFreezeUniqueRing30"] = { affix = "", "10% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "10% chance to Freeze" }, } }, + ["ChanceToFreezeUnique__1"] = { affix = "", "5% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "5% chance to Freeze" }, } }, + ["ChanceToFreezeUnique__2"] = { affix = "", "2% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "2% chance to Freeze" }, } }, + ["ChanceToFreezeUnique__3"] = { affix = "", "10% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "10% chance to Freeze" }, } }, + ["ChanceToFreezeUnique__4"] = { affix = "", "10% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "10% chance to Freeze" }, } }, + ["ChanceToFreezeUnique__5"] = { affix = "", "20% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "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" }, } }, @@ -3522,8 +3522,8 @@ return { ["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] = { "" }, } }, + ["GroundTarOnCritTakenUniqueShieldInt2"] = { affix = "", "Spreads Tar when you take a Critical Strike", statOrder = { 2511 }, level = 1, group = "GroundTarOnCritTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [927458676] = { "Spreads Tar when you take a Critical Strike" }, } }, + ["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" }, } }, ["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" }, } }, @@ -3651,8 +3651,8 @@ return { ["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] = { "" }, } }, + ["ConsecratedGroundOnBlockUniqueBodyInt8"] = { affix = "", "100% chance to create Consecrated Ground when you Block", statOrder = { 2573 }, level = 1, group = "ConsecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [573884683] = { "100% chance to create Consecrated Ground when you Block" }, } }, + ["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" }, } }, ["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" }, } }, @@ -3712,7 +3712,7 @@ return { ["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" }, } }, + ["NoEnergyShieldRegenerationUnique__1"] = { affix = "", "Immortal Ambition", statOrder = { 10816 }, level = 60, group = "SoulTether", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [2413219096] = { "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" }, } }, @@ -3767,13 +3767,13 @@ return { ["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] = { "" }, } }, + ["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 = { [4031081471] = { "You take 450 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" }, } }, ["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] = { "" }, } }, + ["ItemBloodFootstepsUniqueBootsDex4"] = { affix = "", "Gore Footprints", statOrder = { 10854 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, } }, ["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] = { "" }, } }, + ["ItemBloodFootstepsUnique__1"] = { affix = "", "Gore Footprints", statOrder = { 10854 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, } }, ["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" }, } }, @@ -3813,10 +3813,10 @@ return { ["FlaskGainEnduranceChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Endurance Charge on use", statOrder = { 886 }, level = 1, group = "FlaskGainEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "flask" }, tradeHashes = { [3986030307] = { "Gain (1-3) Endurance Charge on use" }, } }, ["FlaskGainEnduranceChargeUnique__1_"] = { affix = "", "Gain 1 Endurance Charge on use", statOrder = { 886 }, level = 1, group = "FlaskGainEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "flask" }, tradeHashes = { [3986030307] = { "Gain 1 Endurance Charge on use" }, } }, ["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" }, } }, - ["LocalFlaskChargesUsedUniqueFlask2"] = { affix = "", "(250-300)% increased Charges per use", statOrder = { 846 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(250-300)% increased Charges per use" }, } }, - ["LocalFlaskChargesUsedUniqueFlask9"] = { affix = "", "(70-100)% increased Charges per use", statOrder = { 846 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(70-100)% increased Charges per use" }, } }, - ["LocalFlaskChargesUsedUniqueFlask36"] = { affix = "", "(200-300)% increased Charges per use", statOrder = { 846 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(200-300)% increased Charges per use" }, } }, - ["LocalFlaskChargesUsedUnique__2"] = { affix = "", "(10-20)% reduced Charges per use", statOrder = { 846 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(10-20)% reduced Charges per use" }, } }, + ["LocalFlaskChargesUsedUniqueFlask2"] = { affix = "", "(250-300)% increased Charges per use", statOrder = { 846 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(250-300)% increased Charges per use" }, } }, + ["LocalFlaskChargesUsedUniqueFlask9"] = { affix = "", "(70-100)% increased Charges per use", statOrder = { 846 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(70-100)% increased Charges per use" }, } }, + ["LocalFlaskChargesUsedUniqueFlask36"] = { affix = "", "(200-300)% increased Charges per use", statOrder = { 846 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(200-300)% increased Charges per use" }, } }, + ["LocalFlaskChargesUsedUnique__2"] = { affix = "", "(10-20)% reduced Charges per use", statOrder = { 846 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(10-20)% reduced Charges per use" }, } }, ["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" }, } }, @@ -3869,8 +3869,8 @@ return { ["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" }, } }, + ["MovementSpeedOnTrapThrowUniqueBootsDex6"] = { affix = "", "30% increased Movement Speed for 9 seconds on Throwing a Trap", statOrder = { 2772 }, level = 1, group = "MovementSpeedOnTrapThrow", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3102860761] = { "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 = { [3102860761] = { "15% 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" }, } }, @@ -3920,7 +3920,7 @@ return { ["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" }, } }, + ["ReturningProjectilesUniqueDescentBow1"] = { affix = "", "Projectiles Return to you", statOrder = { 2823 }, level = 1, group = "ReturningProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2134307667] = { "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" }, } }, @@ -3968,7 +3968,7 @@ return { ["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] = { "" }, } }, + ["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" }, } }, ["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" }, } }, @@ -4131,7 +4131,7 @@ return { ["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" }, } }, + ["UniqueSpecialCorruptionNearbyEnemiesBlinded"] = { affix = "", "Nearby Enemies are Blinded", statOrder = { 3396 }, level = 1, group = "NearbyEnemiesAreBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [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" }, } }, @@ -4234,7 +4234,7 @@ return { ["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" }, } }, + ["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 = { [2860779491] = { "Enemies you Attack have 20% chance to Reflect 35 to 50 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" }, } }, @@ -4263,7 +4263,7 @@ return { ["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" }, } }, - ["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" }, } }, + ["SocketedGemHasElementalEquilibriumUniqueRing25"] = { affix = "", "Socketed Gems have Elemental Equilibrium", statOrder = { 603 }, level = 1, group = "SocketedGemHasElementalEquilibrium", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, tradeHashes = { [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" }, } }, @@ -4380,7 +4380,7 @@ return { ["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" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe6"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(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" }, } }, @@ -4430,7 +4430,7 @@ return { ["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] = { "" }, } }, + ["IcestormUniqueStaff12"] = { affix = "", "Grants Level 1 Icestorm Skill", statOrder = { 663 }, level = 1, group = "IcestormActiveSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2103009393] = { "Grants Level 1 Icestorm Skill" }, } }, ["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" }, } }, @@ -4476,23 +4476,23 @@ return { ["MinionElementalResistancesUnique__1"] = { affix = "", "Minions have +(7-10)% to all Elemental Resistances", statOrder = { 2912 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(7-10)% to all Elemental Resistances" }, } }, ["ReducedTotemDamageUniqueJewel26"] = { affix = "", "(30-50)% reduced Totem Damage", statOrder = { 1193 }, level = 1, group = "TotemDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "(30-50)% reduced Totem Damage" }, } }, ["TotemDamageUnique__1_"] = { affix = "", "40% increased Totem Damage", statOrder = { 1193 }, level = 1, group = "TotemDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "40% increased Totem Damage" }, } }, - ["JewelStrToDex"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 3047 }, level = 1, group = "JewelStrToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2237528173] = { "Strength from Passives in Radius is Transformed to Dexterity" }, [3802517517] = { "" }, } }, - ["JewelStrToDexUniqueJewel13"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 3047 }, level = 1, group = "JewelStrToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2237528173] = { "Strength from Passives in Radius is Transformed to Dexterity" }, [3802517517] = { "" }, } }, + ["JewelStrToDex"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 3047 }, level = 1, group = "JewelStrToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2237528173] = { "Strength from Passives in Radius is Transformed to Dexterity" }, } }, + ["JewelStrToDexUniqueJewel13"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 3047 }, level = 1, group = "JewelStrToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2237528173] = { "Strength from Passives in Radius is Transformed to Dexterity" }, } }, ["DexterityUniqueJewel13"] = { affix = "", "+(16-24) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(16-24) to Dexterity" }, } }, - ["JewelDexToInt"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Intelligence", statOrder = { 3050 }, level = 1, group = "JewelDexToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2075199521] = { "Dexterity from Passives in Radius is Transformed to Intelligence" }, [3802517517] = { "" }, } }, - ["JewelDexToIntUniqueJewel11"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Intelligence", statOrder = { 3050 }, level = 1, group = "JewelDexToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2075199521] = { "Dexterity from Passives in Radius is Transformed to Intelligence" }, [3802517517] = { "" }, } }, + ["JewelDexToInt"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Intelligence", statOrder = { 3050 }, level = 1, group = "JewelDexToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2075199521] = { "Dexterity from Passives in Radius is Transformed to Intelligence" }, } }, + ["JewelDexToIntUniqueJewel11"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Intelligence", statOrder = { 3050 }, level = 1, group = "JewelDexToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2075199521] = { "Dexterity from Passives in Radius is Transformed to Intelligence" }, } }, ["IntelligenceUniqueJewel11"] = { affix = "", "+(16-24) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(16-24) to Intelligence" }, } }, - ["JewelIntToStr"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Strength", statOrder = { 3051 }, level = 1, group = "JewelIntToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [1285587221] = { "Intelligence from Passives in Radius is Transformed to Strength" }, } }, - ["JewelIntToStrUniqueJewel34"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Strength", statOrder = { 3051 }, level = 1, group = "JewelIntToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [1285587221] = { "Intelligence from Passives in Radius is Transformed to Strength" }, } }, + ["JewelIntToStr"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Strength", statOrder = { 3051 }, level = 1, group = "JewelIntToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1285587221] = { "Intelligence from Passives in Radius is Transformed to Strength" }, } }, + ["JewelIntToStrUniqueJewel34"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Strength", statOrder = { 3051 }, level = 1, group = "JewelIntToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1285587221] = { "Intelligence from Passives in Radius is Transformed to Strength" }, } }, ["StrengthUniqueJewel34"] = { affix = "", "+(16-24) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(16-24) to Strength" }, } }, - ["JewelStrToInt"] = { affix = "", "Strength from Passives in Radius is Transformed to Intelligence", statOrder = { 3048 }, level = 1, group = "JewelStrToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [3771273420] = { "Strength from Passives in Radius is Transformed to Intelligence" }, } }, - ["JewelStrToIntUniqueJewel35"] = { affix = "", "Strength from Passives in Radius is Transformed to Intelligence", statOrder = { 3048 }, level = 1, group = "JewelStrToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [3771273420] = { "Strength from Passives in Radius is Transformed to Intelligence" }, } }, + ["JewelStrToInt"] = { affix = "", "Strength from Passives in Radius is Transformed to Intelligence", statOrder = { 3048 }, level = 1, group = "JewelStrToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3771273420] = { "Strength from Passives in Radius is Transformed to Intelligence" }, } }, + ["JewelStrToIntUniqueJewel35"] = { affix = "", "Strength from Passives in Radius is Transformed to Intelligence", statOrder = { 3048 }, level = 1, group = "JewelStrToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3771273420] = { "Strength from Passives in Radius is Transformed to Intelligence" }, } }, ["IntelligenceUniqueJewel35"] = { affix = "", "+(16-24) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(16-24) to Intelligence" }, } }, - ["JewelIntToDex"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Dexterity", statOrder = { 3052 }, level = 1, group = "JewelIntToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [1608425196] = { "Intelligence from Passives in Radius is Transformed to Dexterity" }, } }, - ["JewelIntToDexUniqueJewel36"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Dexterity", statOrder = { 3052 }, level = 1, group = "JewelIntToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [1608425196] = { "Intelligence from Passives in Radius is Transformed to Dexterity" }, } }, + ["JewelIntToDex"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Dexterity", statOrder = { 3052 }, level = 1, group = "JewelIntToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1608425196] = { "Intelligence from Passives in Radius is Transformed to Dexterity" }, } }, + ["JewelIntToDexUniqueJewel36"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Dexterity", statOrder = { 3052 }, level = 1, group = "JewelIntToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1608425196] = { "Intelligence from Passives in Radius is Transformed to Dexterity" }, } }, ["DexterityUniqueJewel36"] = { affix = "", "+(16-24) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(16-24) to Dexterity" }, } }, - ["JewelDexToStr"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Strength", statOrder = { 3049 }, level = 1, group = "JewelDexToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4097174922] = { "Dexterity from Passives in Radius is Transformed to Strength" }, [3802517517] = { "" }, } }, - ["JewelDexToStrUniqueJewel37"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Strength", statOrder = { 3049 }, level = 1, group = "JewelDexToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4097174922] = { "Dexterity from Passives in Radius is Transformed to Strength" }, [3802517517] = { "" }, } }, + ["JewelDexToStr"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Strength", statOrder = { 3049 }, level = 1, group = "JewelDexToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4097174922] = { "Dexterity from Passives in Radius is Transformed to Strength" }, } }, + ["JewelDexToStrUniqueJewel37"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Strength", statOrder = { 3049 }, level = 1, group = "JewelDexToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4097174922] = { "Dexterity from Passives in Radius is Transformed to Strength" }, } }, ["StrengthUniqueJewel37"] = { affix = "", "+(16-24) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(16-24) to Strength" }, } }, ["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" }, } }, @@ -4510,10 +4510,10 @@ return { ["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" }, } }, - ["JewelUniqueAllocateDisconnectedPassives"] = { affix = "", "Passive Skills in Radius can be Allocated without being connected to your tree", "Passage", statOrder = { 10717, 10717.1 }, level = 1, group = "JewelUniqueAllocateDisconnectedPassives", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802517517] = { "" }, [4077035099] = { "Passive Skills in Radius can be Allocated without being connected to your tree", "Passage" }, } }, + ["JewelUniqueAllocateDisconnectedPassives"] = { affix = "", "Passive Skills in Radius can be Allocated without being connected to your tree", "Passage", statOrder = { 10717, 10717.1 }, level = 1, group = "JewelUniqueAllocateDisconnectedPassives", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725885727] = { "Passive Skills in Radius can be Allocated without being connected to your tree", "Passage" }, } }, ["JewelRingRadiusValuesUnique__1"] = { affix = "", "Only affects Passives in Small Ring", statOrder = { 12 }, level = 1, group = "JewelRingRadiusValues", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3642528642] = { "Only affects Passives in Small Ring" }, } }, ["JewelRingRadiusValuesUnique__2"] = { affix = "", "Only affects Passives in Massive Ring", statOrder = { 12 }, level = 1, group = "JewelRingRadiusValues", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3642528642] = { "Only affects Passives in Massive Ring" }, } }, - ["AllocateDisconnectedPassivesDonutUnique__1"] = { affix = "", "Passive Skills in Radius can be Allocated without being connected to your tree", "Passage", statOrder = { 10717, 10717.1 }, level = 1, group = "AllocateDisconnectedPassivesDonut", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077035099] = { "Passive Skills in Radius can be Allocated without being connected to your tree", "Passage" }, } }, + ["AllocateDisconnectedPassivesDonutUnique__1"] = { affix = "", "Passive Skills in Radius can be Allocated without being connected to your tree", "Passage", statOrder = { 10717, 10717.1 }, level = 1, group = "AllocateDisconnectedPassivesDonut", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725885727] = { "Passive Skills in Radius can be Allocated without being connected to your tree", "Passage" }, } }, ["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" }, } }, @@ -4525,18 +4525,18 @@ return { ["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" }, } }, - ["StealRareModUniqueJewel3"] = { affix = "", "With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", statOrder = { 3056 }, level = 1, group = "JewelStealRareMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802517517] = { "" }, [3807518091] = { "With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds" }, } }, + ["ChanceToBleedUnique__1_"] = { affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2489 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "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 = { [1923879260] = { "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 = { [1923879260] = { "Attacks have 15% chance to cause Bleeding" }, } }, + ["StealRareModUniqueJewel3"] = { affix = "", "With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", statOrder = { 3056 }, level = 1, group = "JewelStealRareMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3807518091] = { "With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds" }, } }, ["UnarmedAreaOfEffectUniqueJewel4"] = { affix = "", "(10-15)% increased Area of Effect while Unarmed", statOrder = { 3053 }, level = 1, group = "UnarmedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2216127021] = { "(10-15)% increased Area of Effect while Unarmed" }, } }, ["UnarmedStrikeRangeUniqueJewel__1_"] = { affix = "", "+(0.3-0.4) metres to Melee Strike Range with Unarmed Attacks", statOrder = { 3079 }, level = 1, group = "UnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3273962791] = { "+(0.3-0.4) metres to Melee Strike Range with Unarmed Attacks" }, } }, - ["UniqueJewelMeleeToBow"] = { affix = "", "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers", statOrder = { 3067 }, level = 1, group = "UniqueJewelMeleeToBow", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3802517517] = { "" }, [854030602] = { "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers" }, } }, - ["ChaosDamageIncreasedPerIntUniqueJewel2"] = { affix = "", "5% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius", statOrder = { 3071 }, level = 1, group = "ChaosDamageIncreasedPerInt", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3802517517] = { "" }, [2582360791] = { "5% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius" }, } }, - ["PassivesApplyToMinionsUniqueJewel7"] = { affix = "", "Passives in Radius apply to Minions instead of you", statOrder = { 3072 }, level = 1, group = "PassivesApplyToMinionsJewel", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3802517517] = { "" }, [727625899] = { "Passives in Radius apply to Minions instead of you" }, [512165118] = { "" }, } }, + ["UniqueJewelMeleeToBow"] = { affix = "", "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers", statOrder = { 3067 }, level = 1, group = "UniqueJewelMeleeToBow", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [854030602] = { "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers" }, } }, + ["ChaosDamageIncreasedPerIntUniqueJewel2"] = { affix = "", "5% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius", statOrder = { 3071 }, level = 1, group = "ChaosDamageIncreasedPerInt", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [2582360791] = { "5% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius" }, } }, + ["PassivesApplyToMinionsUniqueJewel7"] = { affix = "", "Passives in Radius apply to Minions instead of you", statOrder = { 3072 }, level = 1, group = "PassivesApplyToMinionsJewel", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [727625899] = { "Passives in Radius apply to Minions instead of you" }, } }, ["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" }, } }, ["LifeOnCorpseRemovalUniqueJewel14"] = { affix = "", "Recover 2% of Life when you Consume a corpse", statOrder = { 3054 }, level = 1, group = "LifeOnCorpseRemoval", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2715345125] = { "Recover 2% of Life when you Consume a corpse" }, } }, - ["TotemLifePerStrengthUniqueJewel15"] = { affix = "", "3% increased Totem Life per 10 Strength Allocated in Radius", statOrder = { 3055 }, level = 1, group = "TotemLifePerStrengthInRadius", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3802517517] = { "" }, [747037697] = { "3% increased Totem Life per 10 Strength Allocated in Radius" }, } }, + ["TotemLifePerStrengthUniqueJewel15"] = { affix = "", "3% increased Totem Life per 10 Strength Allocated in Radius", statOrder = { 3055 }, level = 1, group = "TotemLifePerStrengthInRadius", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [747037697] = { "3% increased Totem Life per 10 Strength Allocated in Radius" }, } }, ["TotemsCannotBeStunnedUniqueJewel15"] = { affix = "", "Totems cannot be Stunned", statOrder = { 3062 }, level = 1, group = "TotemsCannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [335735137] = { "Totems cannot be Stunned" }, } }, ["MinionDodgeChanceUniqueJewel16"] = { affix = "", "Minions have +(2-5)% chance to Suppress Spell Damage", statOrder = { 9334 }, level = 1, group = "MinionSpellDodgeChance", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3195300715] = { "Minions have +(2-5)% chance to Suppress Spell Damage" }, } }, ["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" }, } }, @@ -4593,15 +4593,15 @@ return { ["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" }, } }, - ["ClawPhysDamageAndEvasionPerDexUniqueJewel47"] = { affix = "", "1% increased Evasion Rating per 3 Dexterity Allocated in Radius", "1% increased Claw Physical Damage per 3 Dexterity Allocated in Radius", "1% increased Melee Physical Damage with Unarmed Attacks per 3 Dexterity Allocated in Radius", statOrder = { 3123, 3124, 3139 }, level = 1, group = "ClawPhysDamageAndEvasionPerDex", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "defences", "evasion", "damage", "physical", "attack" }, tradeHashes = { [3802517517] = { "" }, [1619923327] = { "1% increased Claw Physical Damage per 3 Dexterity Allocated in Radius" }, [915233352] = { "1% increased Melee Physical Damage with Unarmed Attacks per 3 Dexterity Allocated in Radius" }, [4113852051] = { "1% increased Evasion Rating per 3 Dexterity Allocated in Radius" }, } }, - ["ColdAndPhysicalNodesInRadiusSwapPropertiesUniqueJewel48_"] = { affix = "", "Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage", "Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage", statOrder = { 3126, 3127 }, level = 1, group = "ColdAndPhysicalNodesInRadiusSwapProperties", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3772485866] = { "Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage" }, [738100799] = { "Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage" }, [3802517517] = { "" }, } }, - ["AllDamageInRadiusBecomesFireUniqueJewel49"] = { affix = "", "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage", statOrder = { 3125 }, level = 1, group = "AllDamageInRadiusBecomesFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3802517517] = { "" }, [3446950357] = { "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage" }, } }, - ["EnergyShieldInRadiusIncreasesArmourUniqueJewel50"] = { affix = "", "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value", statOrder = { 3128 }, level = 1, group = "EnergyShieldInRadiusIncreasesArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3802517517] = { "" }, [2605119037] = { "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value" }, } }, - ["LifeInRadiusBecomesEnergyShieldAtHalfValueUniqueJewel51"] = { affix = "", "Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield", statOrder = { 3129 }, level = 1, group = "LifeInRadiusBecomesEnergyShieldAtHalfValue", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3802517517] = { "" }, [3194864913] = { "Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield" }, } }, - ["LifePerIntelligenceInRadusUniqueJewel52"] = { affix = "", "Adds 1 to Maximum Life per 3 Intelligence Allocated in Radius", statOrder = { 3134 }, level = 1, group = "LifePerIntelligenceInRadus", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3802517517] = { "" }, [2865989731] = { "Adds 1 to Maximum Life per 3 Intelligence Allocated in Radius" }, } }, - ["AddedLightningDamagePerDexInRadiusUniqueJewel53"] = { affix = "", "Adds 1 to 2 Lightning Damage to Attacks", "Adds 1 maximum Lightning Damage to Attacks per 1 Dexterity Allocated in Radius", statOrder = { 1380, 3133 }, level = 1, group = "AddedLightningDamagePerDexInRadius", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 2 Lightning Damage to Attacks" }, [778050954] = { "Adds 1 maximum Lightning Damage to Attacks per 1 Dexterity Allocated in Radius" }, [3802517517] = { "" }, } }, - ["LifePassivesBecomeManaPassivesInRadiusUniqueJewel54"] = { affix = "", "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value", statOrder = { 3137 }, level = 1, group = "LifePassivesBecomeManaPassivesInRadius", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2479374428] = { "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value" }, [3802517517] = { "" }, } }, - ["DexterityAndIntelligenceGiveStrengthMeleeBonusInRadiusUniqueJewel55"] = { affix = "", "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus", statOrder = { 3138 }, level = 1, group = "DexterityAndIntelligenceGiveStrengthMeleeBonusInRadius", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3802517517] = { "" }, [842363566] = { "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus" }, } }, + ["ClawPhysDamageAndEvasionPerDexUniqueJewel47"] = { affix = "", "1% increased Evasion Rating per 3 Dexterity Allocated in Radius", "1% increased Claw Physical Damage per 3 Dexterity Allocated in Radius", "1% increased Melee Physical Damage with Unarmed Attacks per 3 Dexterity Allocated in Radius", statOrder = { 3123, 3124, 3139 }, level = 1, group = "ClawPhysDamageAndEvasionPerDex", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "defences", "evasion", "damage", "physical", "attack" }, tradeHashes = { [1619923327] = { "1% increased Claw Physical Damage per 3 Dexterity Allocated in Radius" }, [915233352] = { "1% increased Melee Physical Damage with Unarmed Attacks per 3 Dexterity Allocated in Radius" }, [4113852051] = { "1% increased Evasion Rating per 3 Dexterity Allocated in Radius" }, } }, + ["ColdAndPhysicalNodesInRadiusSwapPropertiesUniqueJewel48_"] = { affix = "", "Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage", "Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage", statOrder = { 3126, 3127 }, level = 1, group = "ColdAndPhysicalNodesInRadiusSwapProperties", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [738100799] = { "Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage" }, [3772485866] = { "Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage" }, } }, + ["AllDamageInRadiusBecomesFireUniqueJewel49"] = { affix = "", "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage", statOrder = { 3125 }, level = 1, group = "AllDamageInRadiusBecomesFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3446950357] = { "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage" }, } }, + ["EnergyShieldInRadiusIncreasesArmourUniqueJewel50"] = { affix = "", "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value", statOrder = { 3128 }, level = 1, group = "EnergyShieldInRadiusIncreasesArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2605119037] = { "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value" }, } }, + ["LifeInRadiusBecomesEnergyShieldAtHalfValueUniqueJewel51"] = { affix = "", "Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield", statOrder = { 3129 }, level = 1, group = "LifeInRadiusBecomesEnergyShieldAtHalfValue", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3194864913] = { "Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield" }, } }, + ["LifePerIntelligenceInRadusUniqueJewel52"] = { affix = "", "Adds 1 to Maximum Life per 3 Intelligence Allocated in Radius", statOrder = { 3134 }, level = 1, group = "LifePerIntelligenceInRadus", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2865989731] = { "Adds 1 to Maximum Life per 3 Intelligence Allocated in Radius" }, } }, + ["AddedLightningDamagePerDexInRadiusUniqueJewel53"] = { affix = "", "Adds 1 to 2 Lightning Damage to Attacks", "Adds 1 maximum Lightning Damage to Attacks per 1 Dexterity Allocated in Radius", statOrder = { 1380, 3133 }, level = 1, group = "AddedLightningDamagePerDexInRadius", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [778050954] = { "Adds 1 maximum Lightning Damage to Attacks per 1 Dexterity Allocated in Radius" }, [1754445556] = { "Adds 1 to 2 Lightning Damage to Attacks" }, } }, + ["LifePassivesBecomeManaPassivesInRadiusUniqueJewel54"] = { affix = "", "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value", statOrder = { 3137 }, level = 1, group = "LifePassivesBecomeManaPassivesInRadius", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2479374428] = { "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value" }, } }, + ["DexterityAndIntelligenceGiveStrengthMeleeBonusInRadiusUniqueJewel55"] = { affix = "", "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus", statOrder = { 3138 }, level = 1, group = "DexterityAndIntelligenceGiveStrengthMeleeBonusInRadius", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [842363566] = { "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus" }, } }, ["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" }, } }, @@ -4702,8 +4702,8 @@ return { ["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" }, } }, + ["UnholyMightOnBlockChanceUniqueShieldStrInt8"] = { affix = "", "30% chance to gain Unholy Might on Block for 3 seconds", statOrder = { 3046 }, level = 1, group = "UnholyMightOnBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3184880507] = { "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 = { [3184880507] = { "Gain Unholy Might on Block for 10 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" }, } }, @@ -4715,7 +4715,7 @@ return { ["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" }, } }, ["ChaosDamageDoesNotBypassESDuringFlaskEffectUnique__1"] = { affix = "", "Chaos Damage taken does not bypass Energy Shield during effect", statOrder = { 960 }, level = 1, group = "ChaosDamageDoesNotBypassESDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2229840047] = { "Chaos Damage taken does not bypass Energy Shield during effect" }, } }, - ["RemoveLifeAndAddThatMuchEnergyShieldOnFlaskUseUnique__1"] = { affix = "", "Removes all but one Life on use", "Removed life is Regenerated as Energy Shield over 2 seconds", statOrder = { 3144, 3144.1 }, level = 1, group = "RemoveLifeAndAddThatMuchEnergyShieldOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [4149482999] = { "" }, [887466725] = { "" }, } }, + ["RemoveLifeAndAddThatMuchEnergyShieldOnFlaskUseUnique__1"] = { affix = "", "Removes all but one Life on use", "Removed life is Regenerated as Energy Shield over 2 seconds", statOrder = { 3144, 3144.1 }, level = 1, group = "RemoveLifeAndAddThatMuchEnergyShieldOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [4120779321] = { "Removes all but one Life on use", "Removed life is Regenerated as Energy Shield over 2 seconds" }, } }, ["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" }, } }, @@ -4723,7 +4723,7 @@ return { ["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] = { "" }, } }, + ["TalismanAdditionalZombie"] = { affix = "", "+1 to maximum number of Raised Zombies", statOrder = { 2160 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1225383362] = { "" }, [966747987] = { "+1 to maximum number of Raised Zombies" }, [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" }, } }, @@ -4765,10 +4765,10 @@ return { ["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" }, } }, - ["IncreasedFireballRadiusUniqueJewel57"] = { affix = "", "Fire Damage is increased by 1% per 5 Intelligence from Allocated Passives in Radius", statOrder = { 3147 }, level = 1, group = "IncreasedFireballRadiusAtLongRangeJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3802517517] = { "" }, [1657716311] = { "Fire Damage is increased by 1% per 5 Intelligence from Allocated Passives in Radius" }, [1321847001] = { "" }, } }, - ["AdditionalGlacialCascadeSequenceUniqueJewel58"] = { affix = "", "Cold Damage is increased by 1% per 8 Intelligence from Allocated Passives in Radius", "Physical Damage is increased by 1% per 8 Intelligence from Allocated Passives in Radius", "Glacial Cascade gains an additional Burst with 60 Intelligence from Passives in Radius", statOrder = { 3148, 3149, 3155 }, level = 1, group = "AdditionalGlacialCascadeSequenceJewel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [1966815700] = { "Cold Damage is increased by 1% per 8 Intelligence from Allocated Passives in Radius" }, [2797049742] = { "Glacial Cascade gains an additional Burst with 60 Intelligence from Passives in Radius" }, [3802517517] = { "" }, [741102575] = { "Physical Damage is increased by 1% per 8 Intelligence from Allocated Passives in Radius" }, } }, - ["AnimateBowsAndWandsUnique____70"] = { affix = "", "With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 20 Ranged Weapons", statOrder = { 3254 }, level = 1, group = "AnimateBowsAndWandsJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802517517] = { "" }, [3585572043] = { "With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 20 Ranged Weapons" }, } }, - ["ExtraArrowForSplitArrowUniqueJewel60"] = { affix = "", "1% increased Projectile Damage per 5 Dexterity from Allocated Passives in Radius", "Split Arrow fires an additional arrow with 50 Dexterity from Passives in Radius", statOrder = { 3154, 3157 }, level = 1, group = "ExtraArrowForSplitArrowJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3802517517] = { "" }, [1872333105] = { "1% increased Projectile Damage per 5 Dexterity from Allocated Passives in Radius" }, [3944719053] = { "Split Arrow fires an additional arrow with 50 Dexterity from Passives in Radius" }, } }, + ["IncreasedFireballRadiusUniqueJewel57"] = { affix = "", "Fire Damage is increased by 1% per 5 Intelligence from Allocated Passives in Radius", statOrder = { 3147 }, level = 1, group = "IncreasedFireballRadiusAtLongRangeJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1657716311] = { "Fire Damage is increased by 1% per 5 Intelligence from Allocated Passives in Radius" }, } }, + ["AdditionalGlacialCascadeSequenceUniqueJewel58"] = { affix = "", "Cold Damage is increased by 1% per 8 Intelligence from Allocated Passives in Radius", "Physical Damage is increased by 1% per 8 Intelligence from Allocated Passives in Radius", "Glacial Cascade gains an additional Burst with 60 Intelligence from Passives in Radius", statOrder = { 3148, 3149, 3155 }, level = 1, group = "AdditionalGlacialCascadeSequenceJewel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [1966815700] = { "Cold Damage is increased by 1% per 8 Intelligence from Allocated Passives in Radius" }, [2797049742] = { "Glacial Cascade gains an additional Burst with 60 Intelligence from Passives in Radius" }, [741102575] = { "Physical Damage is increased by 1% per 8 Intelligence from Allocated Passives in Radius" }, } }, + ["AnimateBowsAndWandsUnique____70"] = { affix = "", "With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 20 Ranged Weapons", statOrder = { 3254 }, level = 1, group = "AnimateBowsAndWandsJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3585572043] = { "With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 20 Ranged Weapons" }, } }, + ["ExtraArrowForSplitArrowUniqueJewel60"] = { affix = "", "1% increased Projectile Damage per 5 Dexterity from Allocated Passives in Radius", "Split Arrow fires an additional arrow with 50 Dexterity from Passives in Radius", statOrder = { 3154, 3157 }, level = 1, group = "ExtraArrowForSplitArrowJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3944719053] = { "Split Arrow fires an additional arrow with 50 Dexterity from Passives in Radius" }, [1872333105] = { "1% increased Projectile Damage per 5 Dexterity from Allocated Passives in Radius" }, } }, ["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" }, } }, @@ -4780,47 +4780,47 @@ return { ["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" }, } }, - ["GlacialHammerThresholdJewel__1"] = { affix = "", "With at least 40 Strength in Radius, 20% increased", "Rarity of Items dropped by Enemies Shattered by Glacial Hammer", statOrder = { 3225, 3225.1 }, level = 1, group = "GlacialHammerThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "drop" }, tradeHashes = { [1250317014] = { "With at least 40 Strength in Radius, 20% increased", "Rarity of Items dropped by Enemies Shattered by Glacial Hammer" }, [3802517517] = { "" }, } }, - ["SpectralThrowThresholdJewel__1"] = { affix = "", "With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 5% increased Damage each time it Hits", statOrder = { 3226 }, level = 1, group = "SpectralThrowThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3802517517] = { "" }, [811386429] = { "With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 5% increased Damage each time it Hits" }, } }, - ["ViperStrikeThresholdJewel__1"] = { affix = "", "With at least 40 Dexterity in Radius, Viper Strike deals 2% increased Damage with Hits and Poison for each Poison on the Enemy", statOrder = { 3228 }, level = 1, group = "ViperStrikeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3802517517] = { "" }, [695031402] = { "With at least 40 Dexterity in Radius, Viper Strike deals 2% increased Damage with Hits and Poison for each Poison on the Enemy" }, } }, + ["GlacialHammerThresholdJewel__1"] = { affix = "", "With at least 40 Strength in Radius, 20% increased", "Rarity of Items dropped by Enemies Shattered by Glacial Hammer", statOrder = { 3225, 3225.1 }, level = 1, group = "GlacialHammerThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "drop" }, tradeHashes = { [1250317014] = { "With at least 40 Strength in Radius, 20% increased", "Rarity of Items dropped by Enemies Shattered by Glacial Hammer" }, } }, + ["SpectralThrowThresholdJewel__1"] = { affix = "", "With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 5% increased Damage each time it Hits", statOrder = { 3226 }, level = 1, group = "SpectralThrowThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [811386429] = { "With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 5% increased Damage each time it Hits" }, } }, + ["ViperStrikeThresholdJewel__1"] = { affix = "", "With at least 40 Dexterity in Radius, Viper Strike deals 2% increased Damage with Hits and Poison for each Poison on the Enemy", statOrder = { 3228 }, level = 1, group = "ViperStrikeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [695031402] = { "With at least 40 Dexterity in Radius, Viper Strike deals 2% increased Damage with Hits and Poison for each Poison on the Enemy" }, } }, ["ViperStrikeThresholdJewel__2"] = { affix = "", "With at least 40 Dexterity in Radius, Viper Strike has a 10% chance per Poison on Enemy to grant Unholy Might for 4 seconds on Hit", statOrder = { 8126 }, level = 1, group = "ViperStrikeThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [235847153] = { "With at least 40 Dexterity in Radius, Viper Strike has a 10% chance per Poison on Enemy to grant Unholy Might for 4 seconds on Hit" }, } }, - ["HeavyStrikeThresholdJewel___1"] = { affix = "", "With at least 40 Strength in Radius, Heavy Strike has a ", "20% chance to deal Double Damage", statOrder = { 3229, 3229.1 }, level = 1, group = "HeavyStrikeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3802517517] = { "" }, [1025503586] = { "With at least 40 Strength in Radius, Heavy Strike has a ", "20% chance to deal Double Damage" }, } }, - ["ShrapnelShotThresholdJewel_1"] = { affix = "", "With at least 40 Dexterity in Radius, Galvanic Arrow has 25% increased Area of Effect", "With at least 40 Dexterity in Radius, Galvanic Arrow deals 50% increased Area Damage", statOrder = { 3351, 8116 }, level = 1, group = "ShrapnelShotThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3802517517] = { "" }, [1170556324] = { "With at least 40 Dexterity in Radius, Galvanic Arrow deals 50% increased Area Damage" }, [3945934607] = { "With at least 40 Dexterity in Radius, Galvanic Arrow has 25% increased Area of Effect" }, } }, - ["BurningArrowThresholdJewel_2"] = { affix = "", "Ignited Enemies Killed by your Hits are destroyed", statOrder = { 2593 }, level = 1, group = "BurningArrowThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack", "ailment" }, tradeHashes = { [223497523] = { "" }, [3173052379] = { "Ignited Enemies Killed by your Hits are destroyed" }, } }, - ["CleaveThresholdJewel_1"] = { affix = "", "With at least 40 Strength in Radius, Hits with Cleave Fortify", "With at least 40 Strength in Radius, Cleave has +0.1 metres to Radius per Nearby", "Enemy, up to a maximum of +1 metre", statOrder = { 3345, 3346, 3346.1 }, level = 1, group = "CleaveThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3802517517] = { "" }, [1539696482] = { "With at least 40 Strength in Radius, Cleave has +0.1 metres to Radius per Nearby", "Enemy, up to a maximum of +1 metre" }, [1248507170] = { "With at least 40 Strength in Radius, Hits with Cleave Fortify" }, } }, - ["FreezingPulseThresholdJewel_1"] = { affix = "", "With at least 40 Intelligence in Radius, Freezing Pulse fires 2 additional Projectiles", "With at least 40 Intelligence in Radius, 25% increased Freezing Pulse Damage if", "you've Shattered an Enemy Recently", statOrder = { 3354, 3355, 3355.1 }, level = 1, group = "FreezingPulseThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3802517517] = { "" }, [2098320128] = { "With at least 40 Intelligence in Radius, Freezing Pulse fires 2 additional Projectiles" }, [2074744008] = { "With at least 40 Intelligence in Radius, 25% increased Freezing Pulse Damage if", "you've Shattered an Enemy Recently" }, } }, - ["IceShotThresholdJewel__1"] = { affix = "", "With at least 40 Dexterity in Radius, Ice Shot Pierces 50 additional Targets", "With at least 40 Dexterity in Radius, Ice Shot has 25% increased Area of Effect", statOrder = { 8083, 8084 }, level = 1, group = "IceShotThresholdJewelOld", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3442130499] = { "With at least 40 Dexterity in Radius, Ice Shot has 25% increased Area of Effect" }, [804496834] = { "With at least 40 Dexterity in Radius, Ice Shot Pierces 50 additional Targets" }, [3802517517] = { "" }, } }, - ["IceShotThresholdJewel__2"] = { affix = "", "With at least 40 Dexterity in Radius, Ice Shot has 25% increased Area of Effect", "With at least 40 Dexterity in Radius, Ice Shot Pierces 3 additional Targets", statOrder = { 8084, 8085 }, level = 1, group = "IceShotThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3442130499] = { "With at least 40 Dexterity in Radius, Ice Shot has 25% increased Area of Effect" }, [3103494675] = { "With at least 40 Dexterity in Radius, Ice Shot Pierces 3 additional Targets" }, [3802517517] = { "" }, } }, - ["MoltenStrikeThresholdJewel_1"] = { affix = "", "With at least 40 Strength in Radius, Molten Strike fires 2 additional Projectiles", "With at least 40 Strength in Radius, Molten Strike has 25% increased Area of Effect", statOrder = { 8097, 8098 }, level = 1, group = "MoltenStrikeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3802517517] = { "" }, [2845889407] = { "With at least 40 Strength in Radius, Molten Strike fires 2 additional Projectiles" }, [1163758055] = { "With at least 40 Strength in Radius, Molten Strike has 25% increased Area of Effect" }, } }, - ["MoltenStrikeThresholdJewel__2"] = { affix = "", "With at least 40 Strength in Radius, Molten Strike Projectiles Chain on impacting ground", "With at least 40 Strength in Radius, Molten Strike Projectiles Chain +1 time", "With at least 40 Strength in Radius, Molten Strike fires 50% less Projectiles", statOrder = { 7975, 7976, 7977 }, level = 1, group = "MoltenStrikeThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [670814047] = { "With at least 40 Strength in Radius, Molten Strike Projectiles Chain on impacting ground" }, [786380548] = { "With at least 40 Strength in Radius, Molten Strike fires 50% less Projectiles" }, [2295439133] = { "With at least 40 Strength in Radius, Molten Strike Projectiles Chain +1 time" }, [3802517517] = { "" }, } }, - ["FrostBladesThresholdJewel_1"] = { affix = "", "With at least 40 Dexterity in Radius, Melee Damage", "dealt by Frost Blades Penetrates 15% Cold Resistance", "With at least 40 Dexterity in Radius, Frost Blades has 25% increased Projectile Speed", statOrder = { 8076, 8076.1, 8077 }, level = 1, group = "FrostBladesThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack", "speed" }, tradeHashes = { [3802517517] = { "" }, [2092708508] = { "With at least 40 Dexterity in Radius, Frost Blades has 25% increased Projectile Speed" }, [2412100590] = { "With at least 40 Dexterity in Radius, Melee Damage", "dealt by Frost Blades Penetrates 15% Cold Resistance" }, } }, - ["DualStrikeThresholdJewel_1"] = { affix = "", "With at least 40 Dexterity in Radius, Dual Strike has a 20% chance", "to deal Double Damage with the Main-Hand Weapon", "With at least 40 Dexterity in Radius, Dual Strike deals Off Hand Splash Damage", "to surrounding targets", statOrder = { 8060, 8060.1, 8062, 8062.1 }, level = 1, group = "DualStrikeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3802517517] = { "" }, [3603019813] = { "With at least 40 Dexterity in Radius, Dual Strike deals Off Hand Splash Damage", "to surrounding targets" }, [3765671129] = { "With at least 40 Dexterity in Radius, Dual Strike has a 20% chance", "to deal Double Damage with the Main-Hand Weapon" }, } }, + ["HeavyStrikeThresholdJewel___1"] = { affix = "", "With at least 40 Strength in Radius, Heavy Strike has a ", "20% chance to deal Double Damage", statOrder = { 3229, 3229.1 }, level = 1, group = "HeavyStrikeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1025503586] = { "With at least 40 Strength in Radius, Heavy Strike has a ", "20% chance to deal Double Damage" }, } }, + ["ShrapnelShotThresholdJewel_1"] = { affix = "", "With at least 40 Dexterity in Radius, Galvanic Arrow has 25% increased Area of Effect", "With at least 40 Dexterity in Radius, Galvanic Arrow deals 50% increased Area Damage", statOrder = { 3351, 8116 }, level = 1, group = "ShrapnelShotThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1170556324] = { "With at least 40 Dexterity in Radius, Galvanic Arrow deals 50% increased Area Damage" }, [3945934607] = { "With at least 40 Dexterity in Radius, Galvanic Arrow has 25% increased Area of Effect" }, } }, + ["BurningArrowThresholdJewel_2"] = { affix = "", "Ignited Enemies Killed by your Hits are destroyed", statOrder = { 2593 }, level = 1, group = "BurningArrowThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack", "ailment" }, tradeHashes = { [3173052379] = { "Ignited Enemies Killed by your Hits are destroyed" }, } }, + ["CleaveThresholdJewel_1"] = { affix = "", "With at least 40 Strength in Radius, Hits with Cleave Fortify", "With at least 40 Strength in Radius, Cleave has +0.1 metres to Radius per Nearby", "Enemy, up to a maximum of +1 metre", statOrder = { 3345, 3346, 3346.1 }, level = 1, group = "CleaveThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1539696482] = { "With at least 40 Strength in Radius, Cleave has +0.1 metres to Radius per Nearby", "Enemy, up to a maximum of +1 metre" }, [1248507170] = { "With at least 40 Strength in Radius, Hits with Cleave Fortify" }, } }, + ["FreezingPulseThresholdJewel_1"] = { affix = "", "With at least 40 Intelligence in Radius, Freezing Pulse fires 2 additional Projectiles", "With at least 40 Intelligence in Radius, 25% increased Freezing Pulse Damage if", "you've Shattered an Enemy Recently", statOrder = { 3354, 3355, 3355.1 }, level = 1, group = "FreezingPulseThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2074744008] = { "With at least 40 Intelligence in Radius, 25% increased Freezing Pulse Damage if", "you've Shattered an Enemy Recently" }, [2098320128] = { "With at least 40 Intelligence in Radius, Freezing Pulse fires 2 additional Projectiles" }, } }, + ["IceShotThresholdJewel__1"] = { affix = "", "With at least 40 Dexterity in Radius, Ice Shot Pierces 50 additional Targets", "With at least 40 Dexterity in Radius, Ice Shot has 25% increased Area of Effect", statOrder = { 8083, 8084 }, level = 1, group = "IceShotThresholdJewelOld", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3442130499] = { "With at least 40 Dexterity in Radius, Ice Shot has 25% increased Area of Effect" }, [804496834] = { "With at least 40 Dexterity in Radius, Ice Shot Pierces 50 additional Targets" }, } }, + ["IceShotThresholdJewel__2"] = { affix = "", "With at least 40 Dexterity in Radius, Ice Shot has 25% increased Area of Effect", "With at least 40 Dexterity in Radius, Ice Shot Pierces 3 additional Targets", statOrder = { 8084, 8085 }, level = 1, group = "IceShotThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3442130499] = { "With at least 40 Dexterity in Radius, Ice Shot has 25% increased Area of Effect" }, [3103494675] = { "With at least 40 Dexterity in Radius, Ice Shot Pierces 3 additional Targets" }, } }, + ["MoltenStrikeThresholdJewel_1"] = { affix = "", "With at least 40 Strength in Radius, Molten Strike fires 2 additional Projectiles", "With at least 40 Strength in Radius, Molten Strike has 25% increased Area of Effect", statOrder = { 8097, 8098 }, level = 1, group = "MoltenStrikeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2845889407] = { "With at least 40 Strength in Radius, Molten Strike fires 2 additional Projectiles" }, [1163758055] = { "With at least 40 Strength in Radius, Molten Strike has 25% increased Area of Effect" }, } }, + ["MoltenStrikeThresholdJewel__2"] = { affix = "", "With at least 40 Strength in Radius, Molten Strike Projectiles Chain on impacting ground", "With at least 40 Strength in Radius, Molten Strike Projectiles Chain +1 time", "With at least 40 Strength in Radius, Molten Strike fires 50% less Projectiles", statOrder = { 7975, 7976, 7977 }, level = 1, group = "MoltenStrikeThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [670814047] = { "With at least 40 Strength in Radius, Molten Strike Projectiles Chain on impacting ground" }, [786380548] = { "With at least 40 Strength in Radius, Molten Strike fires 50% less Projectiles" }, [2295439133] = { "With at least 40 Strength in Radius, Molten Strike Projectiles Chain +1 time" }, } }, + ["FrostBladesThresholdJewel_1"] = { affix = "", "With at least 40 Dexterity in Radius, Melee Damage", "dealt by Frost Blades Penetrates 15% Cold Resistance", "With at least 40 Dexterity in Radius, Frost Blades has 25% increased Projectile Speed", statOrder = { 8076, 8076.1, 8077 }, level = 1, group = "FrostBladesThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack", "speed" }, tradeHashes = { [2412100590] = { "With at least 40 Dexterity in Radius, Melee Damage", "dealt by Frost Blades Penetrates 15% Cold Resistance" }, [2092708508] = { "With at least 40 Dexterity in Radius, Frost Blades has 25% increased Projectile Speed" }, } }, + ["DualStrikeThresholdJewel_1"] = { affix = "", "With at least 40 Dexterity in Radius, Dual Strike has a 20% chance", "to deal Double Damage with the Main-Hand Weapon", "With at least 40 Dexterity in Radius, Dual Strike deals Off Hand Splash Damage", "to surrounding targets", statOrder = { 8060, 8060.1, 8062, 8062.1 }, level = 1, group = "DualStrikeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3765671129] = { "With at least 40 Dexterity in Radius, Dual Strike has a 20% chance", "to deal Double Damage with the Main-Hand Weapon" }, [3603019813] = { "With at least 40 Dexterity in Radius, Dual Strike deals Off Hand Splash Damage", "to surrounding targets" }, } }, ["DualStrikeThresholdJewelAxe"] = { affix = "", "With at least 40 Dexterity in Radius, Dual Strike Hits Intimidate Enemies for", "4 seconds while wielding an Axe", statOrder = { 8059, 8059.1 }, level = 1, group = "DualStrikeThresholdJewelAxe", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [100088509] = { "With at least 40 Dexterity in Radius, Dual Strike Hits Intimidate Enemies for", "4 seconds while wielding an Axe" }, } }, ["DualStrikeThresholdJewelClaw"] = { affix = "", "With at least 40 Dexterity in Radius, Dual Strike has (10-15)% increased Attack", "Speed while wielding a Claw", statOrder = { 8057, 8057.1 }, level = 1, group = "DualStrikeThresholdJewelClaw", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1795260970] = { "With at least 40 Dexterity in Radius, Dual Strike has (10-15)% increased Attack", "Speed while wielding a Claw" }, } }, ["DualStrikeThresholdJewelDagger"] = { affix = "", "With at least 40 Dexterity in Radius, Dual Strike has +(20-30)% to Critical Strike", "Multiplier while wielding a Dagger", statOrder = { 8058, 8058.1 }, level = 1, group = "DualStrikeThresholdJewelDagger", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1503812817] = { "With at least 40 Dexterity in Radius, Dual Strike has +(20-30)% to Critical Strike", "Multiplier while wielding a Dagger" }, } }, ["DualStrikeThresholdJewelMace"] = { affix = "", "With at least 40 Dexterity in Radius, Dual Strike deals Splash Damage", "to surrounding targets while wielding a Mace", statOrder = { 8061, 8061.1 }, level = 1, group = "DualStrikeThresholdJewelMace", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2562474285] = { "With at least 40 Dexterity in Radius, Dual Strike deals Splash Damage", "to surrounding targets while wielding a Mace" }, } }, ["DualStrikeThresholdJewelSword_"] = { affix = "", "With at least 40 Dexterity in Radius, Dual Strike has (20-30)% increased", "Accuracy Rating while wielding a Sword", statOrder = { 8056, 8056.1 }, level = 1, group = "DualStrikeThresholdJewelSword", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2869420801] = { "With at least 40 Dexterity in Radius, Dual Strike has (20-30)% increased", "Accuracy Rating while wielding a Sword" }, } }, - ["DualStrikeThresholdJewel__2_"] = { affix = "", "(10-15)% increased Attack Damage", statOrder = { 1198 }, level = 1, group = "DualStrikeThresholdJewelDamageRadius", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3802517517] = { "" }, [2843214518] = { "(10-15)% increased Attack Damage" }, } }, - ["FrostboltThresholdJewel_1"] = { affix = "", "With at least 40 Intelligence in Radius, Frostbolt fires 2 additional Projectiles", "With at least 40 Intelligence in Radius, Frostbolt Projectiles gain 40% increased Projectile Speed per second", statOrder = { 8078, 8079 }, level = 1, group = "FrostboltThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [2727977666] = { "With at least 40 Intelligence in Radius, Frostbolt Projectiles gain 40% increased Projectile Speed per second" }, [3790108551] = { "With at least 40 Intelligence in Radius, Frostbolt fires 2 additional Projectiles" }, } }, - ["EtherealKnivesThresholdJewel_1"] = { affix = "", "With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a circle", statOrder = { 3348 }, level = 1, group = "EtherealKnivesThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [2511280084] = { "With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a circle" }, [2822821681] = { "" }, } }, - ["LightningTendrilsThresholdJewel_1"] = { affix = "", "With at least 40 Intelligence in Radius, each Lightning Tendrils Repeat has 4% increased Area of Effect per Enemy Hit", statOrder = { 8092 }, level = 1, group = "LightningTendrilsThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [2958270185] = { "With at least 40 Intelligence in Radius, each Lightning Tendrils Repeat has 4% increased Area of Effect per Enemy Hit" }, } }, - ["MagmaOrbThresholdJewel_1"] = { affix = "", "With at least 40 Intelligence in Radius, Rolling Magma fires an additional Projectile", "With at least 40 Intelligence in Radius, Rolling Magma", "has 10% increased Area of Effect per Chain", statOrder = { 8093, 8094, 8094.1 }, level = 1, group = "MagmaOrbThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [160933750] = { "With at least 40 Intelligence in Radius, Rolling Magma", "has 10% increased Area of Effect per Chain" }, [2542542825] = { "With at least 40 Intelligence in Radius, Rolling Magma fires an additional Projectile" }, } }, - ["MagmaOrbThresholdJewel_2"] = { affix = "", "With at least 40 Intelligence in Radius, Rolling Magma deals 50% less Damage", "With at least 40 Intelligence in Radius, Rolling Magma deals 40% more Damage per Chain", "With at least 40 Intelligence in Radius, Rolling Magma", "has 10% increased Area of Effect per Chain", statOrder = { 7973, 7974, 8094, 8094.1 }, level = 1, group = "MagmaOrbThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1141756390] = { "With at least 40 Intelligence in Radius, Rolling Magma deals 40% more Damage per Chain" }, [3131110290] = { "With at least 40 Intelligence in Radius, Rolling Magma deals 50% less Damage" }, [160933750] = { "With at least 40 Intelligence in Radius, Rolling Magma", "has 10% increased Area of Effect per Chain" }, [3802517517] = { "" }, } }, - ["GlacialHammerThresholdJewel_2"] = { affix = "", "With at least 40 Strength in Radius, Glacial Hammer deals", "Cold-only Splash Damage to surrounding targets", "With at least 40 Strength in Radius, 25% of Glacial", "Hammer Physical Damage Converted to Cold Damage", statOrder = { 3349, 3349.1, 3350, 3350.1 }, level = 1, group = "GlacialHammerThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "attack" }, tradeHashes = { [3802517517] = { "" }, [3565558422] = { "With at least 40 Strength in Radius, Glacial Hammer deals", "Cold-only Splash Damage to surrounding targets" }, [3738331820] = { "With at least 40 Strength in Radius, 25% of Glacial", "Hammer Physical Damage Converted to Cold Damage" }, } }, - ["BlightThresholdJewel_1"] = { affix = "", "With at least 40 Intelligence in Radius, Blight has 25% increased Area of Effect after 1 second of Channelling", statOrder = { 8042 }, level = 1, group = "BlightThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [3240043456] = { "With at least 40 Intelligence in Radius, Blight has 25% increased Area of Effect after 1 second of Channelling" }, } }, - ["BlightThresholdJewel_2"] = { affix = "", "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds", "With at least 40 Intelligence in Radius, Blight has 50% increased Hinder Duration", statOrder = { 8038, 8040 }, level = 1, group = "BlightThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [2181499453] = { "With at least 40 Intelligence in Radius, Blight has 50% increased Hinder Duration" }, [435737693] = { "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds" }, } }, - ["BlightThresholdJewel_3"] = { affix = "", "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds", "With at least 40 Intelligence in Radius, Blight has 50% increased Hinder Duration", statOrder = { 8037, 8040 }, level = 1, group = "BlightThresholdJewel3", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802517517] = { "" }, [2181499453] = { "With at least 40 Intelligence in Radius, Blight has 50% increased Hinder Duration" }, [3881647885] = { "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds" }, } }, - ["BlightThresholdJewel_4"] = { affix = "", "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds", "With at least 40 Intelligence in Radius, Blight has 30% reduced Cast Speed", statOrder = { 8037, 8039 }, level = 1, group = "BlightThresholdJewel4", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802517517] = { "" }, [3881647885] = { "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds" }, [222829382] = { "With at least 40 Intelligence in Radius, Blight has 30% reduced Cast Speed" }, } }, - ["RaiseZombieThresholdJewel1"] = { affix = "", "With at least 40 Intelligence in Radius, Raised", "Zombies' Slam Attack has 100% increased Cooldown Recovery Rate", "With at least 40 Intelligence in Radius, Raised Zombies' Slam", "Attack deals 30% increased Damage", statOrder = { 8127, 8127.1, 8128, 8128.1 }, level = 1, group = "RaiseZombieThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [781633505] = { "With at least 40 Intelligence in Radius, Raised Zombies' Slam", "Attack deals 30% increased Damage" }, [3802517517] = { "" }, [1097026492] = { "With at least 40 Intelligence in Radius, Raised", "Zombies' Slam Attack has 100% increased Cooldown Recovery Rate" }, } }, - ["SparkThresholdJewel1"] = { affix = "", "With at least 40 Intelligence in Radius, 2 additional Spark Projectiles", statOrder = { 3353 }, level = 1, group = "SparkThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1645248914] = { "With at least 40 Intelligence in Radius, 2 additional Spark Projectiles" }, [3802517517] = { "" }, [2333775394] = { "" }, } }, - ["SparkThresholdJewel_2"] = { affix = "", "With at least 40 Intelligence in Radius, Spark fires Projectiles in a circle", statOrder = { 8119 }, level = 1, group = "SparkThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [1650632809] = { "" }, [935386993] = { "With at least 40 Intelligence in Radius, Spark fires Projectiles in a circle" }, } }, - ["FireTrapThresholdJewel1"] = { affix = "", "With at least 40 Dexterity in Radius, Fire Trap throws up to 1 additional Trap", statOrder = { 8075 }, level = 1, group = "FireTrapThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1309764735] = { "With at least 40 Dexterity in Radius, Fire Trap throws up to 1 additional Trap" }, [3802517517] = { "" }, } }, - ["SplitArrowThresholdJewel1"] = { affix = "", "With at least 40 Dexterity in Radius, Split Arrow fires Projectiles in Parallel", statOrder = { 8124 }, level = 1, group = "SplitArrowThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3802517517] = { "" }, [1385108739] = { "With at least 40 Dexterity in Radius, Split Arrow fires Projectiles in Parallel" }, [1304044957] = { "" }, } }, - ["GlacialCascadeThresholdJewel1"] = { affix = "", "With 40 Intelligence in Radius, Glacial Cascade has an additional Burst", "With 40 Intelligence in Radius, 20% of Glacial Cascade Physical Damage", "Converted to Cold Damage", statOrder = { 8080, 8081, 8081.1 }, level = 1, group = "GlacialCascadeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [1478305007] = { "With 40 Intelligence in Radius, 20% of Glacial Cascade Physical Damage", "Converted to Cold Damage" }, [1367987042] = { "With 40 Intelligence in Radius, Glacial Cascade has an additional Burst" }, } }, - ["CausticArrowThresholdJewel1"] = { affix = "", "With at least 40 Dexterity in Radius, Caustic Arrow deals 30% reduced Damage with Hits", statOrder = { 8045 }, level = 1, group = "CausticArrowThresholdJewel1", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1689539796] = { "With at least 40 Dexterity in Radius, Caustic Arrow deals 30% reduced Damage with Hits" }, [3802517517] = { "" }, } }, + ["DualStrikeThresholdJewel__2_"] = { affix = "", "(10-15)% increased Attack Damage", statOrder = { 1198 }, level = 1, group = "DualStrikeThresholdJewelDamageRadius", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(10-15)% increased Attack Damage" }, } }, + ["FrostboltThresholdJewel_1"] = { affix = "", "With at least 40 Intelligence in Radius, Frostbolt fires 2 additional Projectiles", "With at least 40 Intelligence in Radius, Frostbolt Projectiles gain 40% increased Projectile Speed per second", statOrder = { 8078, 8079 }, level = 1, group = "FrostboltThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [2727977666] = { "With at least 40 Intelligence in Radius, Frostbolt Projectiles gain 40% increased Projectile Speed per second" }, [3790108551] = { "With at least 40 Intelligence in Radius, Frostbolt fires 2 additional Projectiles" }, } }, + ["EtherealKnivesThresholdJewel_1"] = { affix = "", "With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a circle", statOrder = { 3348 }, level = 1, group = "EtherealKnivesThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [2511280084] = { "With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a circle" }, [2822821681] = { "" }, } }, + ["LightningTendrilsThresholdJewel_1"] = { affix = "", "With at least 40 Intelligence in Radius, each Lightning Tendrils Repeat has 4% increased Area of Effect per Enemy Hit", statOrder = { 8092 }, level = 1, group = "LightningTendrilsThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [2958270185] = { "With at least 40 Intelligence in Radius, each Lightning Tendrils Repeat has 4% increased Area of Effect per Enemy Hit" }, } }, + ["MagmaOrbThresholdJewel_1"] = { affix = "", "With at least 40 Intelligence in Radius, Rolling Magma fires an additional Projectile", "With at least 40 Intelligence in Radius, Rolling Magma", "has 10% increased Area of Effect per Chain", statOrder = { 8093, 8094, 8094.1 }, level = 1, group = "MagmaOrbThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [160933750] = { "With at least 40 Intelligence in Radius, Rolling Magma", "has 10% increased Area of Effect per Chain" }, [2542542825] = { "With at least 40 Intelligence in Radius, Rolling Magma fires an additional Projectile" }, } }, + ["MagmaOrbThresholdJewel_2"] = { affix = "", "With at least 40 Intelligence in Radius, Rolling Magma deals 50% less Damage", "With at least 40 Intelligence in Radius, Rolling Magma deals 40% more Damage per Chain", "With at least 40 Intelligence in Radius, Rolling Magma", "has 10% increased Area of Effect per Chain", statOrder = { 7973, 7974, 8094, 8094.1 }, level = 1, group = "MagmaOrbThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1141756390] = { "With at least 40 Intelligence in Radius, Rolling Magma deals 40% more Damage per Chain" }, [3131110290] = { "With at least 40 Intelligence in Radius, Rolling Magma deals 50% less Damage" }, [160933750] = { "With at least 40 Intelligence in Radius, Rolling Magma", "has 10% increased Area of Effect per Chain" }, } }, + ["GlacialHammerThresholdJewel_2"] = { affix = "", "With at least 40 Strength in Radius, Glacial Hammer deals", "Cold-only Splash Damage to surrounding targets", "With at least 40 Strength in Radius, 25% of Glacial", "Hammer Physical Damage Converted to Cold Damage", statOrder = { 3349, 3349.1, 3350, 3350.1 }, level = 1, group = "GlacialHammerThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "attack" }, tradeHashes = { [3565558422] = { "With at least 40 Strength in Radius, Glacial Hammer deals", "Cold-only Splash Damage to surrounding targets" }, [3738331820] = { "With at least 40 Strength in Radius, 25% of Glacial", "Hammer Physical Damage Converted to Cold Damage" }, } }, + ["BlightThresholdJewel_1"] = { affix = "", "With at least 40 Intelligence in Radius, Blight has 25% increased Area of Effect after 1 second of Channelling", statOrder = { 8042 }, level = 1, group = "BlightThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3240043456] = { "With at least 40 Intelligence in Radius, Blight has 25% increased Area of Effect after 1 second of Channelling" }, } }, + ["BlightThresholdJewel_2"] = { affix = "", "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds", "With at least 40 Intelligence in Radius, Blight has 50% increased Hinder Duration", statOrder = { 8038, 8040 }, level = 1, group = "BlightThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [435737693] = { "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds" }, [2181499453] = { "With at least 40 Intelligence in Radius, Blight has 50% increased Hinder Duration" }, } }, + ["BlightThresholdJewel_3"] = { affix = "", "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds", "With at least 40 Intelligence in Radius, Blight has 50% increased Hinder Duration", statOrder = { 8037, 8040 }, level = 1, group = "BlightThresholdJewel3", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3881647885] = { "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds" }, [2181499453] = { "With at least 40 Intelligence in Radius, Blight has 50% increased Hinder Duration" }, } }, + ["BlightThresholdJewel_4"] = { affix = "", "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds", "With at least 40 Intelligence in Radius, Blight has 30% reduced Cast Speed", statOrder = { 8037, 8039 }, level = 1, group = "BlightThresholdJewel4", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3881647885] = { "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds" }, [222829382] = { "With at least 40 Intelligence in Radius, Blight has 30% reduced Cast Speed" }, } }, + ["RaiseZombieThresholdJewel1"] = { affix = "", "With at least 40 Intelligence in Radius, Raised", "Zombies' Slam Attack has 100% increased Cooldown Recovery Rate", "With at least 40 Intelligence in Radius, Raised Zombies' Slam", "Attack deals 30% increased Damage", statOrder = { 8127, 8127.1, 8128, 8128.1 }, level = 1, group = "RaiseZombieThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [781633505] = { "With at least 40 Intelligence in Radius, Raised Zombies' Slam", "Attack deals 30% increased Damage" }, [1097026492] = { "With at least 40 Intelligence in Radius, Raised", "Zombies' Slam Attack has 100% increased Cooldown Recovery Rate" }, } }, + ["SparkThresholdJewel1"] = { affix = "", "With at least 40 Intelligence in Radius, 2 additional Spark Projectiles", statOrder = { 3353 }, level = 1, group = "SparkThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1645248914] = { "With at least 40 Intelligence in Radius, 2 additional Spark Projectiles" }, [2333775394] = { "" }, } }, + ["SparkThresholdJewel_2"] = { affix = "", "With at least 40 Intelligence in Radius, Spark fires Projectiles in a circle", statOrder = { 8119 }, level = 1, group = "SparkThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1650632809] = { "" }, [935386993] = { "With at least 40 Intelligence in Radius, Spark fires Projectiles in a circle" }, } }, + ["FireTrapThresholdJewel1"] = { affix = "", "With at least 40 Dexterity in Radius, Fire Trap throws up to 1 additional Trap", statOrder = { 8075 }, level = 1, group = "FireTrapThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1309764735] = { "With at least 40 Dexterity in Radius, Fire Trap throws up to 1 additional Trap" }, } }, + ["SplitArrowThresholdJewel1"] = { affix = "", "With at least 40 Dexterity in Radius, Split Arrow fires Projectiles in Parallel", statOrder = { 8124 }, level = 1, group = "SplitArrowThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1385108739] = { "With at least 40 Dexterity in Radius, Split Arrow fires Projectiles in Parallel" }, } }, + ["GlacialCascadeThresholdJewel1"] = { affix = "", "With 40 Intelligence in Radius, Glacial Cascade has an additional Burst", "With 40 Intelligence in Radius, 20% of Glacial Cascade Physical Damage", "Converted to Cold Damage", statOrder = { 8080, 8081, 8081.1 }, level = 1, group = "GlacialCascadeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1478305007] = { "With 40 Intelligence in Radius, 20% of Glacial Cascade Physical Damage", "Converted to Cold Damage" }, [1367987042] = { "With 40 Intelligence in Radius, Glacial Cascade has an additional Burst" }, } }, + ["CausticArrowThresholdJewel1"] = { affix = "", "With at least 40 Dexterity in Radius, Caustic Arrow deals 30% reduced Damage with Hits", statOrder = { 8045 }, level = 1, group = "CausticArrowThresholdJewel1", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1689539796] = { "With at least 40 Dexterity in Radius, Caustic Arrow deals 30% reduced Damage with Hits" }, } }, ["CausticArrowThresholdJewel2"] = { affix = "", "With at least 40 Dexterity in Radius, Caustic Arrow deals 40% increased Damage over Time", statOrder = { 8044 }, level = 1, group = "CausticArrowThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [101715298] = { "With at least 40 Dexterity in Radius, Caustic Arrow deals 40% increased Damage over Time" }, } }, ["CausticArrowThresholdJewel3"] = { affix = "", "With at least 40 Dexterity in Radius, Caustic Arrow has a 50% chance on Hit to Poison Enemies on Caustic Ground", statOrder = { 8043 }, level = 1, group = "CausticArrowThresholdJewel3", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [2428035730] = { "With at least 40 Dexterity in Radius, Caustic Arrow has a 50% chance on Hit to Poison Enemies on Caustic Ground" }, } }, - ["SpectralShieldThrowThresholdJewel1_"] = { affix = "", "+0.15% to Off Hand Critical Strike Chance per 10 Maximum Energy Shield on Shield", statOrder = { 9549 }, level = 1, group = "ShieldCritChancePerEsOnShieldJewel1", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3285400610] = { "+0.15% to Off Hand Critical Strike Chance per 10 Maximum Energy Shield on Shield" }, [223497523] = { "" }, } }, + ["SpectralShieldThrowThresholdJewel1_"] = { affix = "", "+0.15% to Off Hand Critical Strike Chance per 10 Maximum Energy Shield on Shield", statOrder = { 9549 }, level = 1, group = "ShieldCritChancePerEsOnShieldJewel1", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3285400610] = { "+0.15% to Off Hand Critical Strike Chance per 10 Maximum Energy Shield on Shield" }, } }, ["SpectralShieldThrowThresholdJewel2"] = { affix = "", "+4% to Off Hand Critical Strike Multiplier per 10 Maximum Energy Shield on Shield", statOrder = { 9550 }, level = 1, group = "ShieldCritMultiplierPerEsOnShieldJewel1", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [240790947] = { "+4% to Off Hand Critical Strike Multiplier per 10 Maximum Energy Shield on Shield" }, } }, ["IncreasedStunThresholdUnique__1_"] = { affix = "", "20% increased Stun Threshold", statOrder = { 3272 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "20% increased Stun Threshold" }, } }, ["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" }, } }, @@ -4833,12 +4833,12 @@ return { ["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" }, } }, - ["RallyingCryThresholdJewel__1"] = { affix = "", "With at least 40 Intelligence in Radius, 10% of Damage taken Recouped as Mana if you've Warcried Recently", statOrder = { 3261 }, level = 1, group = "RallyingCryThresholdJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [303219716] = { "With at least 40 Intelligence in Radius, 10% of Damage taken Recouped as Mana if you've Warcried Recently" }, [3802517517] = { "" }, } }, - ["VigilantStrikeThresholdJewel__1"] = { affix = "", "With at least 40 Strength in Radius, Hits with Vigilant Strike Fortify you and Nearby Allies for 8 seconds", statOrder = { 3248 }, level = 1, group = "VigilantStrikeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [530280833] = { "With at least 40 Strength in Radius, Hits with Vigilant Strike Fortify you and Nearby Allies for 8 seconds" }, [3802517517] = { "" }, } }, - ["ColdsnapThresholdJewel__1"] = { affix = "", "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", statOrder = { 8051, 8051.1 }, level = 1, group = "ColdSnapThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [2560038623] = { "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" }, [3802517517] = { "" }, } }, - ["FireballThresholdJewel__1"] = { affix = "", "With at least 40 Intelligence in Radius, Fireball Projectiles gain Area as they travel farther, up to 50% increased Area of Effect", statOrder = { 3250 }, level = 1, group = "FireballThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [24977021] = { "With at least 40 Intelligence in Radius, Fireball Projectiles gain Area as they travel farther, up to 50% increased Area of Effect" }, } }, - ["FireballThresholdJewel__2_"] = { affix = "", "With at least 40 Intelligence in Radius, Projectiles gain radius as they travel farther, up to a maximum of +0.4 metres to radius", statOrder = { 3251 }, level = 1, group = "FireballThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1351893427] = { "With at least 40 Intelligence in Radius, Projectiles gain radius as they travel farther, up to a maximum of +0.4 metres to radius" }, [3802517517] = { "" }, } }, - ["FireballThresholdJewel__3"] = { affix = "", "With at least 40 Intelligence in Radius, Fireball cannot ignite", "With at least 40 Intelligence in Radius, Fireball has +(30-50)% chance to inflict scorch", statOrder = { 7970, 7971 }, level = 1, group = "FireballThresholdJewel3", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [480975218] = { "With at least 40 Intelligence in Radius, Fireball cannot ignite" }, [1482194094] = { "With at least 40 Intelligence in Radius, Fireball has +(30-50)% chance to inflict scorch" }, } }, + ["RallyingCryThresholdJewel__1"] = { affix = "", "With at least 40 Intelligence in Radius, 10% of Damage taken Recouped as Mana if you've Warcried Recently", statOrder = { 3261 }, level = 1, group = "RallyingCryThresholdJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [303219716] = { "With at least 40 Intelligence in Radius, 10% of Damage taken Recouped as Mana if you've Warcried Recently" }, } }, + ["VigilantStrikeThresholdJewel__1"] = { affix = "", "With at least 40 Strength in Radius, Hits with Vigilant Strike Fortify you and Nearby Allies for 8 seconds", statOrder = { 3248 }, level = 1, group = "VigilantStrikeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [530280833] = { "With at least 40 Strength in Radius, Hits with Vigilant Strike Fortify you and Nearby Allies for 8 seconds" }, } }, + ["ColdsnapThresholdJewel__1"] = { affix = "", "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", statOrder = { 8051, 8051.1 }, level = 1, group = "ColdSnapThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [2560038623] = { "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" }, } }, + ["FireballThresholdJewel__1"] = { affix = "", "With at least 40 Intelligence in Radius, Fireball Projectiles gain Area as they travel farther, up to 50% increased Area of Effect", statOrder = { 3250 }, level = 1, group = "FireballThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [24977021] = { "With at least 40 Intelligence in Radius, Fireball Projectiles gain Area as they travel farther, up to 50% increased Area of Effect" }, } }, + ["FireballThresholdJewel__2_"] = { affix = "", "With at least 40 Intelligence in Radius, Projectiles gain radius as they travel farther, up to a maximum of +0.4 metres to radius", statOrder = { 3251 }, level = 1, group = "FireballThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1351893427] = { "With at least 40 Intelligence in Radius, Projectiles gain radius as they travel farther, up to a maximum of +0.4 metres to radius" }, } }, + ["FireballThresholdJewel__3"] = { affix = "", "With at least 40 Intelligence in Radius, Fireball cannot ignite", "With at least 40 Intelligence in Radius, Fireball has +(30-50)% chance to inflict scorch", statOrder = { 7970, 7971 }, level = 1, group = "FireballThresholdJewel3", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1482194094] = { "With at least 40 Intelligence in Radius, Fireball has +(30-50)% chance to inflict scorch" }, [480975218] = { "With at least 40 Intelligence in Radius, Fireball cannot ignite" }, } }, ["ShockNearbyEnemiesDuringFlaskEffect___1"] = { affix = "", "Shocks nearby Enemies during Effect, causing 10% increased Damage taken", statOrder = { 1054 }, level = 85, group = "ShockNearbyEnemiesDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, tradeHashes = { [3446170049] = { "Shocks nearby Enemies during Effect, causing 10% increased Damage taken" }, } }, ["ShockSelfDuringFlaskEffect__1"] = { affix = "", "You are Shocked during Effect, causing 50% increased Damage taken", statOrder = { 1055 }, level = 1, group = "ShockSelfDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, tradeHashes = { [1187803783] = { "You are Shocked during Effect, causing 50% increased Damage taken" }, } }, ["LightningLifeLeechDuringFlaskEffect__1"] = { affix = "", "20% of Lightning Damage Leeched as Life during Effect", statOrder = { 1062 }, level = 1, group = "LightningLifeLeechDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "elemental", "lightning" }, tradeHashes = { [2687254633] = { "20% of Lightning Damage Leeched as Life during Effect" }, } }, @@ -4872,12 +4872,12 @@ return { ["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" }, } }, - ["BurningArrowThresholdJewelUnique__1"] = { affix = "", "+10% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 1, group = "BurningArrowGroundTarAndFire", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3382807662] = { "+10% to Fire Damage over Time Multiplier" }, [223497523] = { "" }, } }, + ["BurningArrowThresholdJewelUnique__1"] = { affix = "", "+10% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 1, group = "BurningArrowGroundTarAndFire", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3382807662] = { "+10% to Fire Damage over Time Multiplier" }, } }, ["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" }, } }, - ["BarrageThresholdUnique__1"] = { affix = "", "With at least 40 Dexterity in Radius, Barrage fires an additional 6 projectiles simultaneously on the first and final attacks", statOrder = { 3263 }, level = 1, group = "BarrageThreshold", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3802517517] = { "" }, [630867098] = { "With at least 40 Dexterity in Radius, Barrage fires an additional 6 projectiles simultaneously on the first and final attacks" }, } }, - ["GroundSlamThresholdUnique__1"] = { affix = "", "With at least 40 Strength in Radius, Ground Slam", "has a 50% increased angle", statOrder = { 3257, 3257.1 }, level = 1, group = "GroundSlamThreshold", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [156016608] = { "With at least 40 Strength in Radius, Ground Slam", "has a 50% increased angle" }, [3802517517] = { "" }, } }, + ["BarrageThresholdUnique__1"] = { affix = "", "With at least 40 Dexterity in Radius, Barrage fires an additional 6 projectiles simultaneously on the first and final attacks", statOrder = { 3263 }, level = 1, group = "BarrageThreshold", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [630867098] = { "With at least 40 Dexterity in Radius, Barrage fires an additional 6 projectiles simultaneously on the first and final attacks" }, } }, + ["GroundSlamThresholdUnique__1"] = { affix = "", "With at least 40 Strength in Radius, Ground Slam", "has a 50% increased angle", statOrder = { 3257, 3257.1 }, level = 1, group = "GroundSlamThreshold", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [156016608] = { "With at least 40 Strength in Radius, Ground Slam", "has a 50% increased angle" }, } }, ["GroundSlamThresholdUnique__2"] = { affix = "", "With at least 40 Strength in Radius, Ground Slam has a 35% chance", "to grant an Endurance Charge when you Stun an Enemy", statOrder = { 3256, 3256.1 }, level = 1, group = "GroundSlamThreshold2", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1559361866] = { "With at least 40 Strength in Radius, Ground Slam has a 35% chance", "to grant an Endurance Charge when you Stun an Enemy" }, } }, - ["SummonSkeletonsThresholdUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages", statOrder = { 3246 }, level = 1, group = "SummonSkeletonsThreshold", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3088991881] = { "With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages" }, [3802517517] = { "" }, } }, + ["SummonSkeletonsThresholdUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages", statOrder = { 3246 }, level = 1, group = "SummonSkeletonsThreshold", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3088991881] = { "With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages" }, } }, ["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" }, } }, @@ -4913,7 +4913,7 @@ return { ["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] = { "" }, } }, + ["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" }, } }, ["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" }, } }, @@ -5005,17 +5005,17 @@ return { ["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" }, } }, - ["ManaPerStackableJewelUnique__1"] = { affix = "", "Gain 30 Mana per Grand Spectrum", statOrder = { 4156 }, level = 1, group = "ManaPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2592799343] = { "Gain 30 Mana per Grand Spectrum" }, [4230859323] = { "" }, } }, - ["ArmourPerStackableJewelUnique__1"] = { affix = "", "Gain 200 Armour per Grand Spectrum", statOrder = { 4157 }, level = 1, group = "ArmourPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [4230859323] = { "" }, [1166487805] = { "Gain 200 Armour per Grand Spectrum" }, } }, - ["IncreasedDamagePerStackableJewelUnique__1"] = { affix = "", "15% increased Elemental Damage per Grand Spectrum", statOrder = { 4160 }, level = 1, group = "IncreasedDamagePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3163738488] = { "15% increased Elemental Damage per Grand Spectrum" }, [4230859323] = { "" }, } }, - ["CriticalStrikeChancePerStackableJewelUnique__1"] = { affix = "", "25% increased Critical Strike Chance per Grand Spectrum", statOrder = { 4159 }, level = 1, group = "CriticalStrikeChancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4230859323] = { "" }, [2948375275] = { "25% increased Critical Strike Chance per Grand Spectrum" }, } }, - ["AllResistancePerStackableJewelUnique__1"] = { affix = "", "+7% to all Elemental Resistances per Grand Spectrum", statOrder = { 4161 }, level = 1, group = "AllResistancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [4230859323] = { "" }, [242161915] = { "+7% to all Elemental Resistances per Grand Spectrum" }, } }, - ["MaximumLifePerStackableJewelUnique__1"] = { affix = "", "5% increased Maximum Life per Grand Spectrum", statOrder = { 4162 }, level = 1, group = "MaximumLifePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [332217711] = { "5% increased Maximum Life per Grand Spectrum" }, [4230859323] = { "" }, } }, - ["AvoidElementalAilmentsPerStackableJewelUnique__1"] = { affix = "", "12% chance to Avoid Elemental Ailments per Grand Spectrum", statOrder = { 4158 }, level = 1, group = "AvoidElementalAilmentsPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [4230859323] = { "" }, [611279043] = { "12% chance to Avoid Elemental Ailments per Grand Spectrum" }, } }, - ["MinionCriticalStrikeMultiplierPerStackableJewelUnique__1"] = { affix = "", "Minions have +10% to Critical Strike Multiplier per Grand Spectrum", statOrder = { 4166 }, level = 1, group = "MinionCriticalStrikeMultiplierPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [4230859323] = { "" }, [482240997] = { "Minions have +10% to Critical Strike Multiplier per Grand Spectrum" }, } }, - ["MinimumEnduranceChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Endurance Charges per Grand Spectrum", statOrder = { 4163 }, level = 1, group = "MinimumEnduranceChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [4230859323] = { "" }, [2276643899] = { "+1 to Minimum Endurance Charges per Grand Spectrum" }, } }, - ["MinimumFrenzyChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Frenzy Charges per Grand Spectrum", statOrder = { 4164 }, level = 1, group = "MinimumFrenzyChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4230859323] = { "" }, [596758264] = { "+1 to Minimum Frenzy Charges per Grand Spectrum" }, } }, - ["MinimumPowerChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Power Charges per Grand Spectrum", statOrder = { 4165 }, level = 1, group = "MinimumPowerChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [4230859323] = { "" }, [308799121] = { "+1 to Minimum Power Charges per Grand Spectrum" }, } }, + ["ManaPerStackableJewelUnique__1"] = { affix = "", "Gain 30 Mana per Grand Spectrum", statOrder = { 4156 }, level = 1, group = "ManaPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2592799343] = { "Gain 30 Mana per Grand Spectrum" }, } }, + ["ArmourPerStackableJewelUnique__1"] = { affix = "", "Gain 200 Armour per Grand Spectrum", statOrder = { 4157 }, level = 1, group = "ArmourPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1166487805] = { "Gain 200 Armour per Grand Spectrum" }, } }, + ["IncreasedDamagePerStackableJewelUnique__1"] = { affix = "", "15% increased Elemental Damage per Grand Spectrum", statOrder = { 4160 }, level = 1, group = "IncreasedDamagePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3163738488] = { "15% increased Elemental Damage per Grand Spectrum" }, } }, + ["CriticalStrikeChancePerStackableJewelUnique__1"] = { affix = "", "25% increased Critical Strike Chance per Grand Spectrum", statOrder = { 4159 }, level = 1, group = "CriticalStrikeChancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2948375275] = { "25% increased Critical Strike Chance per Grand Spectrum" }, } }, + ["AllResistancePerStackableJewelUnique__1"] = { affix = "", "+7% to all Elemental Resistances per Grand Spectrum", statOrder = { 4161 }, level = 1, group = "AllResistancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [242161915] = { "+7% to all Elemental Resistances per Grand Spectrum" }, } }, + ["MaximumLifePerStackableJewelUnique__1"] = { affix = "", "5% increased Maximum Life per Grand Spectrum", statOrder = { 4162 }, level = 1, group = "MaximumLifePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [332217711] = { "5% increased Maximum Life per Grand Spectrum" }, } }, + ["AvoidElementalAilmentsPerStackableJewelUnique__1"] = { affix = "", "12% chance to Avoid Elemental Ailments per Grand Spectrum", statOrder = { 4158 }, level = 1, group = "AvoidElementalAilmentsPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [611279043] = { "12% chance to Avoid Elemental Ailments per Grand Spectrum" }, } }, + ["MinionCriticalStrikeMultiplierPerStackableJewelUnique__1"] = { affix = "", "Minions have +10% to Critical Strike Multiplier per Grand Spectrum", statOrder = { 4166 }, level = 1, group = "MinionCriticalStrikeMultiplierPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [482240997] = { "Minions have +10% to Critical Strike Multiplier per Grand Spectrum" }, } }, + ["MinimumEnduranceChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Endurance Charges per Grand Spectrum", statOrder = { 4163 }, level = 1, group = "MinimumEnduranceChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2276643899] = { "+1 to Minimum Endurance Charges per Grand Spectrum" }, } }, + ["MinimumFrenzyChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Frenzy Charges per Grand Spectrum", statOrder = { 4164 }, level = 1, group = "MinimumFrenzyChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [596758264] = { "+1 to Minimum Frenzy Charges per Grand Spectrum" }, } }, + ["MinimumPowerChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Power Charges per Grand Spectrum", statOrder = { 4165 }, level = 1, group = "MinimumPowerChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [308799121] = { "+1 to Minimum Power Charges per Grand Spectrum" }, } }, ["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" }, } }, @@ -5070,9 +5070,9 @@ return { ["FireResistConvertedToBlockChanceScaledJewelUnique__1_"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Attack Damage at 50% of its value", statOrder = { 8071, 8071.1 }, level = 1, group = "FireResistConvertedToBlockChanceScaledJewel", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3931143552] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Attack Damage at 50% of its value" }, } }, ["ColdResistConvertedToDodgeChanceScaledJewelUnique__1"] = { affix = "", "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant Chance to Suppress Spell Damage at 70% of its value", statOrder = { 8050, 8050.1 }, level = 1, group = "ColdResistConvertedToDodgeChanceScaledJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1409669176] = { "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant Chance to Suppress Spell Damage at 70% of its value" }, } }, ["LightningResistConvertedToSpellBlockChanceScaledJewelUnique__1"] = { affix = "", "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Spell Damage at 50% of its value", statOrder = { 8088, 8088.1 }, level = 1, group = "LightningResistConvertedToSpellBlockChanceScaledJewel", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1224928411] = { "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Spell Damage at 50% of its value" }, } }, - ["FireResistAlsoGrantsEnduranceChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain an Endurance Charge on Kill", statOrder = { 8072, 8072.1 }, level = 1, group = "FireResistAlsoGrantsEnduranceChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3802517517] = { "" }, [1645524575] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain an Endurance Charge on Kill" }, } }, - ["ColdResistAlsoGrantsFrenzyChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Frenzy Charge on Kill", statOrder = { 8048, 8048.1 }, level = 1, group = "ColdResistAlsoGrantsFrenzyChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3802517517] = { "" }, [509677462] = { "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Frenzy Charge on Kill" }, } }, - ["LightningResistAlsoGrantsPowerChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Power Charge on Kill", statOrder = { 8091, 8091.1 }, level = 1, group = "LightningResistAlsoGrantsPowerChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3802517517] = { "" }, [926444104] = { "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Power Charge on Kill" }, } }, + ["FireResistAlsoGrantsEnduranceChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain an Endurance Charge on Kill", statOrder = { 8072, 8072.1 }, level = 1, group = "FireResistAlsoGrantsEnduranceChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1645524575] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain an Endurance Charge on Kill" }, } }, + ["ColdResistAlsoGrantsFrenzyChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Frenzy Charge on Kill", statOrder = { 8048, 8048.1 }, level = 1, group = "ColdResistAlsoGrantsFrenzyChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [509677462] = { "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Frenzy Charge on Kill" }, } }, + ["LightningResistAlsoGrantsPowerChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Power Charge on Kill", statOrder = { 8091, 8091.1 }, level = 1, group = "LightningResistAlsoGrantsPowerChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [926444104] = { "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Power Charge on Kill" }, } }, ["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" }, } }, @@ -5083,18 +5083,18 @@ return { ["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" }, } }, + ["KeystoneAcrobaticsUnique__1"] = { affix = "", "Acrobatics", statOrder = { 10768 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [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] = { "" }, } }, + ["KeystoneBloodMagicUnique__1_"] = { affix = "", "Blood Magic", statOrder = { 10773 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, } }, ["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" }, } }, + ["KeystonePhaseAcrobaticsUnique__1"] = { affix = "", "Acrobatics", statOrder = { 10768 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [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" }, } }, @@ -5110,7 +5110,7 @@ return { ["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] = { "" }, } }, + ["KeystoneMortalConvictionUnique__1"] = { affix = "", "Blood Magic", statOrder = { 10773 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, } }, ["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" }, } }, @@ -5120,10 +5120,10 @@ return { ["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" }, } }, + ["KeystoneSoulTetherUnique__1"] = { affix = "", "Immortal Ambition", statOrder = { 10816 }, level = 1, group = "SoulTether", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [2413219096] = { "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" }, } }, + ["KeystoneSoulTetherUnique__2"] = { affix = "", "Immortal Ambition", statOrder = { 10816 }, level = 1, group = "SoulTether", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [2413219096] = { "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" }, } }, @@ -5142,7 +5142,7 @@ return { ["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" }, } }, + ["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 = { [723388324] = { "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" }, } }, ["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" }, } }, @@ -5216,7 +5216,7 @@ return { ["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" }, } }, + ["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 = { [2006370586] = { "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" }, } }, @@ -5230,7 +5230,7 @@ return { ["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" }, } }, ["FlaskStunImmunityUnique__1"] = { affix = "", "Cannot be Stunned during Effect", statOrder = { 973 }, level = 1, group = "FlaskStunImmunity", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3589217170] = { "Cannot be Stunned during Effect" }, } }, - ["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" }, } }, + ["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 = { [144887967] = { "30% chance to gain Phasing for 4 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" }, } }, @@ -5283,7 +5283,7 @@ return { ["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" }, } }, + ["HeistContractNPCPerksDoubled"] = { affix = "", "50% reduced time before Lockdown", "Rogue Perks are doubled", statOrder = { 6208, 8518 }, level = 1, group = "HeistContractNPCPerksDoubled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [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" }, } }, @@ -5307,7 +5307,7 @@ return { ["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" }, } }, - ["ChanceForSpectersToGainSoulEaterOnKillUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill", statOrder = { 8123 }, level = 1, group = "ChanceForSpectersToGainSoulEaterOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3802517517] = { "" }, [2390273715] = { "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill" }, } }, + ["ChanceForSpectersToGainSoulEaterOnKillUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill", statOrder = { 8123 }, level = 1, group = "ChanceForSpectersToGainSoulEaterOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2390273715] = { "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill" }, } }, ["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" }, } }, @@ -5398,7 +5398,7 @@ return { ["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" }, } }, + ["EnergyShieldStartsAtZero"] = { affix = "", "Your Energy Shield starts at zero", statOrder = { 10816 }, level = 1, group = "EnergyShieldStartsAtZero", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2413219096] = { "Your Energy Shield starts at zero" }, } }, ["FlaskElementalPenetrationOfHighestResistUnique__1"] = { affix = "", "During Effect, Damage Penetrates (5-8)% Resistance of each Element for which your Uncapped Elemental Resistance is highest", statOrder = { 1053 }, level = 1, group = "FlaskElementalPenetrationOfHighestResist", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental" }, tradeHashes = { [2444301311] = { "During Effect, Damage Penetrates (5-8)% Resistance of each Element for which your Uncapped Elemental Resistance is highest" }, } }, ["FlaskElementalDamageTakenOfLowestResistUnique__1"] = { affix = "", "During Effect, 6% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest", statOrder = { 1052 }, level = 1, group = "FlaskElementalDamageTakenOfLowestResist", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1869678332] = { "During Effect, 6% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest" }, } }, ["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" }, } }, @@ -5437,7 +5437,7 @@ return { ["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" }, } }, + ["NearbyEnemiesAreIntimidatedUnique__1"] = { affix = "", "Nearby Enemies are Intimidated", statOrder = { 7909 }, level = 1, group = "NearbyEnemiesAreIntimidated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [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" }, } }, @@ -5527,8 +5527,8 @@ return { ["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] = { "" }, } }, + ["TriggeredAbyssalCryUnique__1"] = { affix = "", "Trigger Level 1 Intimidating Cry on Hit", statOrder = { 825 }, level = 1, group = "TriggeredAbyssalCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [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 = { [1527893390] = { "Trigger Level 15 Lightning Warp on Hit with this Weapon" }, } }, ["SummonSkeletonsNumberOfSkeletonsToSummonUnique__1"] = { affix = "", "Summon 4 additional Skeletons with Summon Skeletons", statOrder = { 4001 }, level = 1, group = "SummonSkeletonsNumberOfSkeletonsToSummon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1589090910] = { "Summon 4 additional Skeletons with Summon Skeletons" }, } }, ["SummonSkeletonsCooldownTimeUnique__1"] = { affix = "", "+1 second to Summon Skeleton Cooldown", statOrder = { 10302 }, level = 1, group = "SummonSkeletonsCooldownTime", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3013430129] = { "+1 second to Summon Skeleton Cooldown" }, } }, ["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" }, } }, @@ -5609,272 +5609,272 @@ return { ["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] = { "" }, } }, + ["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 = { [3221550523] = { "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" }, [3221550523] = { "Has Consumed 1 Gem" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1991958615] = { "Socketed Gems are Supported by Level 20 Cold Penetration" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1384629003] = { "Socketed Gems are Supported by Level 20 Ice Bite" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2608615082] = { "Socketed Gems are Supported by Level 20 Mana Leech" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [4020144606] = { "Socketed Gems are Supported by Level 20 Added Cold Damage" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [749770518] = { "Socketed Gems are Supported by Level 20 Inspiration" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1567462963] = { "Socketed Gems are supported by Level 20 Additional Accuracy" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3922006600] = { "Socketed Gems are Supported by Level 20 Arrogance" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2062753054] = { "Socketed Gems are supported by Level 20 Fork" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1106668565] = { "Socketed Gems are Supported by Level 20 Innervate" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [228165595] = { "Socketed Gems are Supported by Level 20 Chance to Poison" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [13669281] = { "Socketed Gems are Supported by Level 20 Hypothermia" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [891277550] = { "Socketed Gems are supported by Level 20 Life Leech" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1811422871] = { "Socketed Gems are supported by Level 20 Melee Splash" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2501237765] = { "Socketed Gems are supported by Level 20 Multistrike" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [99089516] = { "Socketed Gems are supported by Level 20 Faster Projectiles" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1710508327] = { "Socketed Gems are Supported by Level 20 Blastchain Mine" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2116100988] = { "Socketed Gems are Supported by Level 20 High-Impact Mine" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [689720069] = { "Socketed Gems are supported by Level 20 Stun" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2325632050] = { "Socketed Gems are supported by Level 20 Cast On Critical Strike" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1079148723] = { "Socketed Gems are supported by Level 20 Cast when Stunned" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1002855537] = { "Socketed Gems are Supported by Level 20 Vile Toxins" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2532625478] = { "Socketed Gems are supported by Level 20 Elemental Damage with Attacks" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3720936304] = { "Socketed Gems are Supported by Level 20 Increased Area of Effect" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [4066711249] = { "Socketed Gems are Supported by Level 20 Knockback" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1337327984] = { "Socketed Gems are Supported by Level 20 Minion Life" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [995332031] = { "Socketed Gems are Supported by Level 20 Minion Speed" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [584144941] = { "Socketed Gems are Supported by Level 20 Multiple Projectiles" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [808939569] = { "Socketed Gems are Supported by Level 20 Minion Damage" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1108755349] = { "Socketed Gems are supported by Level 20 Increased Critical Damage" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2223640518] = { "Socketed Gems are supported by Level 20 Blind" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3375208082] = { "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [539747809] = { "Socketed Gems are Supported by Level 20 Blasphemy" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1122134690] = { "Socketed Gems are Supported by Level 20 Trap" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [906997920] = { "Socketed Gems are Supported by Level 20 Iron Will" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2169938251] = { "Socketed Gems are Supported by Level 20 Faster Casting" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [952060721] = { "Socketed Gems are supported by Level 20 Chance to Flee" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [550444281] = { "Socketed Gems are Supported by Level 20 Cold to Fire" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2962840349] = { "Socketed Gems are Supported by Level 20 Spell Totem" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [359450079] = { "Socketed Gems are Supported by Level 20 Greater Multiple Projectiles" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2259700079] = { "Socketed Gems are Supported by Level 20 Increased Critical Strikes" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [248646071] = { "Socketed Gems are Supported by Level 20 Item Quantity" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3587013273] = { "Socketed Gems are Supported by Level 20 Item Rarity" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [407317553] = { "Socketed Gems are Supported by Level 20 More Duration" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1828254451] = { "Socketed Gems are Supported by Level 20 Combustion" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [804508379] = { "Socketed Gems are Supported by Level 20 Bloodlust" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2032386732] = { "Socketed Gems are Supported by Level 20 Life Gain On Hit" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1135493957] = { "Socketed Gems are Supported by Level 20 Culling Strike" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3754129682] = { "Socketed Gems are Supported by Level 20 Point Blank" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [251446805] = { "Socketed Gems are Supported by Level 20 Iron Grip" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2126431157] = { "Socketed Gems are Supported by Level 20 Damage On Full Life" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3030692053] = { "Socketed Gems are Supported by Level 20 Ballista Totem" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1979658770] = { "Socketed Gems are Supported by Level 20 Fire Penetration" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3354027870] = { "Socketed Gems are Supported by Level 20 Lightning Penetration" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2643665787] = { "Socketed Gems are Supported by Level 20 Chain" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [913919528] = { "Socketed Gems are Supported by Level 20 Spell Echo" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [4015918489] = { "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2680613507] = { "Socketed Gems are Supported by Level 20 Burning Damage" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [514705332] = { "Socketed Gems are Supported by Level 20 Elemental Army Support" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2697741965] = { "Socketed Gems are Supported by Level 20 Hextouch" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3312593243] = { "Socketed Gems are Supported by Level 20 Cast On Melee Kill" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3016436615] = { "Socketed Gems are Supported by Level 20 Multiple Traps" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3581578643] = { "Socketed Gems are Supported by Level 3 Empower" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1390285657] = { "Socketed Gems are Supported by Level 20 Slower Projectiles" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2487643588] = { "Socketed Gems are Supported by Level 20 Less Duration" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3036440332] = { "Socketed Gems are Supported by Level 20 Cast when Damage Taken" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2556436882] = { "Socketed Gems are Supported by Level 3 Enhance" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2513293614] = { "Socketed Gems are Supported by Level 20 Vicious Projectiles" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2065361612] = { "Socketed Gems are Supported by Level 3 Enlighten" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3327487371] = { "Socketed Gems are Supported by Level 20 Physical To Lightning" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3814066599] = { "Socketed Gems are Supported by Level 20 Trap And Mine Damage" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2228279620] = { "Socketed Gems are Supported by Level 20 Critical Strike Affliction" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1866583932] = { "Socketed Gems are Supported by Level 20 Void Manipulation" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1636220212] = { "Socketed Gems are Supported by Level 20 Swift Affliction" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2854183975] = { "Socketed Gems are Supported by Level 20 Cluster Trap" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1169422227] = { "Socketed Gems are Supported by Level 20 Elemental Focus" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2805586447] = { "Socketed Gems are Supported by Level 20 Minefield" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3839163699] = { "Socketed Gems are Supported by Level 20 Advanced Traps" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1316646496] = { "Socketed Gems are Supported by Level 20 Cast While Channelling" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3593797653] = { "Socketed Gems are Supported by Level 20 Ignite Proliferation" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [4197676934] = { "Socketed Gems are Supported by Level 20 Chance To Bleed" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [103909236] = { "Socketed Gems are Supported by Level 20 Deadly Ailments" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [388696990] = { "Socketed Gems are Supported by Level 20 Decay" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3924539382] = { "Socketed Gems are Supported by Level 20 Efficacy" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3826977109] = { "Socketed Gems are Supported by Level 20 Maim" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2420410470] = { "Socketed Gems are Supported by Level 20 Immolate" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3699494172] = { "Socketed Gems are Supported by Level 20 Unbound Ailments" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [715256302] = { "Socketed Gems are Supported by Level 20 Brutality" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3796013729] = { "Socketed Gems are Supported by Level 20 Ruthless" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3237923082] = { "Socketed Gems are Supported by Level 20 Momentum" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2287264161] = { "Socketed Gems are Supported by Level 20 Arcane Surge" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3827538724] = { "Socketed Gems are Supported by Level 20 Barrage" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1331336999] = { "Socketed Gems are Supported by Level 20 Arrow Nova" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2433615566] = { "Socketed Gems are supported by Level 20 Pierce" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [928701213] = { "Socketed Gems are Supported by Level 20 Faster Attacks" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2985291457] = { "Socketed Gems are Supported by Level 20 Melee Physical Damage" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2593773031] = { "Socketed Gems are Supported by Level 20 Generosity" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [107118693] = { "Socketed Gems are Supported by Level 20 Fortify" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2929101122] = { "Socketed Gems are Supported by Level 20 Elemental Proliferation" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3718597497] = { "Socketed Gems are Supported by Level 20 Controlled Destruction" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2388360415] = { "Socketed Gems are Supported by Level 20 Concentrated Effect" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3878987051] = { "Socketed Gems are supported by Level 20 Cast on Death" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1647529598] = { "Socketed Gems are Supported by Level 20 Added Lightning Damage" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [411460446] = { "Socketed Gems are Supported by Level 20 Added Chaos Damage" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1966051190] = { "Socketed Gems are Supported by Level 20 Block Chance Reduction" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [4048257027] = { "Socketed Gems are Supported by Level 20 Infused Channelling" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2696557965] = { "Socketed Gems are Supported by Level 20 Volley" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2223565123] = { "Socketed Gems are Supported by Level 20 Greater Volley" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [503990161] = { "Socketed Gems are Supported by Level 20 Spell Cascade" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [696805682] = { "Socketed Gems are Supported by Level 20 Ancestral Call" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3155072742] = { "Socketed Gems are Supported by Level 20 Summon Phantasm" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3239503729] = { "Socketed Gems are Supported by Level 20 Mirage Archer" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [479453859] = { "Socketed Gems are Supported by Level 20 Charged Traps" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3287477747] = { "Socketed Gems are Supported by Level 20 Withering Touch" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1859244771] = { "Socketed Gems are Supported by Level 20 Bonechill" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [807186595] = { "Socketed Gems are Supported by Level 20 Multiple Totems" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [799443127] = { "Socketed Gems are Supported by Level 20 Energy Leech" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1876637240] = { "Socketed Gems are Supported by Level 20 Intensify" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3356013982] = { "Socketed Gems are Supported by Level 20 Unleash" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1900098804] = { "Socketed Gems are Supported by Level 20 Impale" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [282757414] = { "Socketed Gems are Supported by Level 20 Pulverise" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [369650395] = { "Socketed Gems are Supported by Level 20 Rage" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [694651314] = { "Socketed Gems are Supported by Level 20 Close Combat" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1344789934] = { "Socketed Gems are Supported by Level 20 Shockwave" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2269282877] = { "Socketed Gems are Supported by Level 20 Feeding Frenzy" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [858460086] = { "Socketed Gems are Supported by Level 20 Meat Shield" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [4082662318] = { "Socketed Gems are Supported by Level 20 Predator" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2861649515] = { "Socketed Gems are Supported by Level 20 Nightblade" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2201102274] = { "Socketed Gems are Supported by Level 20 Infernal Legion" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [4021476585] = { "Socketed Gems are Supported by Level 20 Swift Assembly" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1365328494] = { "Socketed Gems are Supported by Level 20 Charged Mines" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [339131601] = { "Socketed Gems are Supported by Level 5 Awakened Added Fire Damage" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [4055526353] = { "Socketed Gems are Supported by Level 5 Awakened Ancestral Call" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3610200044] = { "Socketed Gems are Supported by Level 5 Awakened Brutality" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [493707013] = { "Socketed Gems are Supported by Level 5 Awakened Burning Damage" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1786672841] = { "Socketed Gems are Supported by Level 5 Awakened Elemental Damage With Attacks" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [170274897] = { "Socketed Gems are Supported by Level 5 Awakened Fire Penetration" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1007586373] = { "Socketed Gems are Supported by Level 5 Awakened Generosity" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2173069393] = { "Socketed Gems are Supported by Level 5 Awakened Melee Physical Damage" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2253550081] = { "Socketed Gems are Supported by Level 5 Awakened Melee Splash" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [511417258] = { "Socketed Gems are Supported by Level 5 Awakened Multistrike" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2509486489] = { "Socketed Gems are Supported by Level 5 Awakened Added Cold Damage" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1411990341] = { "Socketed Gems are Supported by Level 5 Awakened Arrow Nova" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2750392696] = { "Socketed Gems are Supported by Level 5 Awakened Cast On Critical Strike" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2249251344] = { "Socketed Gems are Supported by Level 5 Awakened Chain" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1889095429] = { "Socketed Gems are Supported by Level 5 Awakened Cold Penetration" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1621366871] = { "Socketed Gems are Supported by Level 5 Awakened Deadly Ailments" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1803865171] = { "Socketed Gems are Supported by Level 5 Awakened Fork" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1980028507] = { "Socketed Gems are Supported by Level 5 Awakened Greater Multiple Projectiles" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [4089933397] = { "Socketed Gems are Supported by Level 5 Awakened Swift Affliction" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1882929618] = { "Socketed Gems are Supported by Level 5 Awakened Void Manipulation" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2647355055] = { "Socketed Gems are Supported by Level 5 Awakened Vicious Projectiles" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2722592119] = { "Socketed Gems are Supported by Level 5 Awakened Added Chaos Damage" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3429304534] = { "Socketed Gems are Supported by Level 5 Awakened Added Lightning Damage" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1046449631] = { "Socketed Gems are Supported by Level 5 Awakened Blasphemy" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [760968853] = { "Socketed Gems are Supported by Level 5 Awakened Cast While Channelling" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [271119551] = { "Socketed Gems are Supported by Level 5 Awakened Controlled Destruction" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2635746638] = { "Socketed Gems are Supported by Level 5 Awakened Hextouch" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2111661233] = { "Socketed Gems are Supported by Level 5 Awakened Elemental Focus" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2333301609] = { "Socketed Gems are Supported by Level 5 Awakened Increased Area Of Effect" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1544223714] = { "Socketed Gems are Supported by Level 5 Awakened Lightning Penetration" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2100048639] = { "Socketed Gems are Supported by Level 5 Awakened Minion Damage" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2222752567] = { "Socketed Gems are Supported by Level 5 Awakened Spell Cascade" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [48859060] = { "Socketed Gems are Supported by Level 5 Awakened Spell Echo" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2116002108] = { "Socketed Gems are Supported by Level 5 Awakened Unbound Ailments" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3428829446] = { "Socketed Gems are Supported by Level 5 Awakened Unleash" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3739157305] = { "Socketed Gems are Supported by Level 4 Awakened Empower" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [4251567680] = { "Socketed Gems are Supported by Level 4 Awakened Enlighten" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2133566731] = { "Socketed Gems are Supported by Level 4 Awakened Enhance" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [402499111] = { "Socketed Gems are Supported by Level 20 Second Wind" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3652278215] = { "Socketed Gems are Supported by Level 20 Archmage" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1485525812] = { "Socketed Gems are Supported by Level 20 Urgent Orders" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2419657101] = { "Socketed Gems are Supported by Level 20 Fist of War" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2127532091] = { "Socketed Gems are Supported by Level 20 Swiftbrand" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1994143317] = { "Socketed Gems are Supported by Level 20 Elemental Penetration" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3227145554] = { "Socketed Gems are Supported by Level 20 Impending Doom" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1803206643] = { "Socketed Gems are Supported by Level 20 Bloodthirst" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1679136] = { "Socketed Gems are Supported by Level 20 Cruelty" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1079239905] = { "Socketed Gems are Supported by Level 20 Lifetap" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [921536976] = { "Socketed Gems are Supported by Level 20 Focused Ballista" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [940684417] = { "Socketed Gems are Supported by Level 20 Earthbreaker" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1019145105] = { "Socketed Gems are Supported by Level 20 Behead" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3485498591] = { "Socketed Gems are Supported by Level 20 Mark On Hit" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3062849155] = { "Socketed Gems are Supported by Level 20 Eternal Blessing" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3062849155] = { "Socketed Gems are Supported by Level 20 Eternal Blessing" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3462081007] = { "Socketed Gems are Supported by Level 20 Overcharge" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3998071134] = { "Socketed Gems are Supported by Level 20 Cursed Ground" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3199084318] = { "Socketed Gems are Supported by Level 20 Hex Bloom" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [4022502578] = { "Socketed Gems are Supported by Level 20 Manaforged Arrows" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2910545715] = { "Socketed Gems are Supported by Level 20 Prismatic Burst" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [52197415] = { "Socketed Gems are Supported by Level 20 Returning Projectiles" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1715139253] = { "Socketed Gems are Supported by Level 20 Trauma" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [633235561] = { "Socketed Gems are Supported by Level 20 Spellblade" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2820883532] = { "Socketed Gems are Supported by Level 20 Devour" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3713917371] = { "Socketed Gems are Supported by Level 20 Fresh Meat" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [285773939] = { "Socketed Gems are Supported by Level 20 Flamewood" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3486166615] = { "Socketed Gems are Supported by Level 20 Corrupting Cry" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [4184135167] = { "Socketed Gems are Supported by Level 20 Volatility" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3434296257] = { "Socketed Gems are Supported by Level 20 Guardian's Blessing" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2302807931] = { "Socketed Gems are Supported by Level 20 Sacrifice" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3031999964] = { "Socketed Gems are Supported by Level 20 Frigid Bond" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [863963929] = { "Socketed Gems are Supported by Level 20 Locus Mine" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [794471597] = { "Socketed Gems are Supported by Level 20 Sadism" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [124226929] = { "Socketed Gems are Supported by Level 20 Controlled Blaze" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [397199955] = { "Socketed Gems are Supported by Level 20 Automation" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3950097420] = { "Socketed Gems are Supported by Level 20 Call To Arms" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3304737450] = { "Socketed Gems are Supported by Level 20 Sacred Wisps" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2707167862] = { "Socketed Gems are Supported by Level 20 Overexertion" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3570337997] = { "Socketed Gems are Supported by Level 20 Expert Retaliation" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [970734352] = { "Socketed Gems are Supported by Level 20 Rupture" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2873637569] = { "Socketed Gems are Supported by Level 20 Focused Channelling" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [143223888] = { "Socketed Gems are Supported by Level 20 Windburst" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3844615363] = { "Socketed Gems are Supported by Level 20 Kinetic Instability" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [4096329121] = { "Socketed Gems are Supported by Level 20 Living Lightning" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1385879224] = { "Socketed Gems are Supported by Level 20 Excommunicate" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3370631451] = { "Socketed Gems are Supported by Level 20 Exemplar" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2217896386] = { "Socketed Gems are Supported by Level 20 Blessed Calling" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [88019169] = { "Socketed Gems are Supported by Level 20 Hallow" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2292610865] = { "Socketed Gems are Supported by Level 3 Greater Spell Cascade" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3207084920] = { "Socketed Gems are Supported by Level 3 Eclipse" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2475469642] = { "Socketed Gems are Supported by Level 3 Invert the Rules" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [668102856] = { "Socketed Gems are Supported by Level 3 Cast on Ward Break" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [4215872260] = { "Socketed Gems are Supported by Level 3 Ward" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1663164024] = { "Socketed Gems are Supported by Level 3 Vaal Sacrifice" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3388448323] = { "Socketed Gems are Supported by Level 3 Greater Spell Echo" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3444486593] = { "Socketed Gems are Supported by Level 3 Vaal Temptation" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [532407974] = { "Socketed Gems are Supported by Level 3 Machinations" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [165595385] = { "Socketed Gems are Supported by Level 3 Pyre" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [301018639] = { "Socketed Gems are Supported by Level 3 Bonespire" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2433487502] = { "Socketed Gems are Supported by Level 3 Foulgrasp" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [4120663487] = { "Socketed Gems are Supported by Level 3 Hiveborn" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2705480258] = { "Socketed Gems are Supported by Level 3 Scornful Herald" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2252088501] = { "Socketed Gems are Supported by Level 3 Cull the Weak" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3607291760] = { "Socketed Gems are Supported by Level 3 Greater Ancestral Call" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1379504110] = { "Socketed Gems are Supported by Level 3 Fissure" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2172297405] = { "Socketed Gems are Supported by Level 3 Hextoad" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3684412823] = { "Socketed Gems are Supported by Level 3 Hexpass" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2336972637] = { "Socketed Gems are Supported by Level 3 Greater Fork" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2877350012] = { "Socketed Gems are Supported by Level 3 Greater Chain" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2985239009] = { "Socketed Gems are Supported by Level 3 Lethal Dose" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2020568221] = { "Socketed Gems are Supported by Level 3 Companionship" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2755724036] = { "Socketed Gems are Supported by Level 3 Divine Sentinel" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [833438017] = { "Socketed Gems are Supported by Level 3 Annihilation" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [503418832] = { "Socketed Gems are Supported by Level 3 Edify" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2817553827] = { "Socketed Gems are Supported by Level 3 Invention" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [879572166] = { "Socketed Gems are Supported by Level 3 Greater Kinetic Instability" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [654335115] = { "Socketed Gems are Supported by Level 3 Cooldown Recovery" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1159163588] = { "Socketed Gems are Supported by Level 3 Voidstorm" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3455096360] = { "Socketed Gems are Supported by Level 3 Void Shockwave" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1628375748] = { "Socketed Gems are Supported by Level 3 Eldritch Blasphemy" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3196117292] = { "Socketed Gems are Supported by Level 3 Gluttony" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [254238561] = { "Socketed Gems are Supported by Level 3 Overheat" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3144811156] = { "Socketed Gems are Supported by Level 3 Greater Multistrike" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1674086814] = { "Socketed Gems are Supported by Level 3 Congregation" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [139060684] = { "Socketed Gems are Supported by Level 3 Frostmage" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1452699198] = { "Socketed Gems are Supported by Level 3 Greater Devour" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3401265726] = { "Socketed Gems are Supported by Level 3 Magnetism" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [90008414] = { "Socketed Gems are Supported by Level 3 Greater Unleash" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [346232851] = { "Socketed Gems are Supported by Level 3 Pacifism" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1844853227] = { "Socketed Gems are Supported by Level 3 Bloodsoaked Banner" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [991044906] = { "Socketed Gems are Supported by Level 3 Minion Pact" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3873656110] = { "Socketed Gems are Supported by Level 3 Harrowing Throng" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [321252761] = { "Socketed Gems are Supported by Level 3 Unholy Trinity" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [2151095784] = { "Socketed Gems are Supported by Level 3 Overloaded Intensity" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3740740992] = { "Socketed Gems are Supported by Level 3 Transfusion" }, } }, ["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" }, } }, @@ -5885,7 +5885,7 @@ return { ["FlaskTakeChaosDamagePerSecondUnique__1"] = { affix = "", "Take 30 Chaos Damage per Second during Effect", statOrder = { 1043 }, level = 1, group = "FlaskTakeChaosDamagePerSecond", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos_damage", "damage", "chaos" }, tradeHashes = { [308618188] = { "Take 30 Chaos Damage per Second during Effect" }, } }, ["FlaskTakeChaosDamagePerSecondUnique__2"] = { affix = "", "Take 250 Chaos Damage per Second during Effect", statOrder = { 1043 }, level = 1, group = "FlaskTakeChaosDamagePerSecond", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos_damage", "damage", "chaos" }, tradeHashes = { [308618188] = { "Take 250 Chaos Damage per Second during Effect" }, } }, ["FlaskCriticalStrikeDoTMultiplierUnique__1"] = { affix = "", "+(20-30)% to Damage over Time Multiplier for Poison from Critical Strikes during Effect", statOrder = { 1015 }, level = 1, group = "FlaskCriticalStrikeDoTMultiplier", weightKey = { }, weightVal = { }, modTags = { "flask", "critical", "ailment" }, tradeHashes = { [1691221049] = { "+(20-30)% to Damage over Time Multiplier for Poison from Critical Strikes during Effect" }, } }, - ["StarterPassiveTreeJewelUnique__1_"] = { affix = "", "While your Passive Skill Tree connects to the Duelist's starting location, you gain:", "1% of Attack Damage Leeched as Life", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel1", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2160234277] = { "While your Passive Skill Tree connects to the Duelist's starting location, you gain:", "1% of Attack Damage Leeched as Life" }, } }, + ["StarterPassiveTreeJewelUnique__1_"] = { affix = "", "While your Passive Skill Tree connects to the Duelist's starting location, you gain:", "1% of Attack Damage Leeched as Life", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel1", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [769192511] = { "While your Passive Skill Tree connects to the Duelist's starting location, you gain:", "1% of Attack Damage Leeched as Life" }, } }, ["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" }, } }, @@ -5904,21 +5904,21 @@ return { ["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" }, } }, - ["StarterPassiveTreeJewelUnique__2"] = { affix = "", "While your Passive Skill Tree connects to the Ranger's starting location, you gain:", "7% increased Movement Speed", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel2", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1401324447] = { "While your Passive Skill Tree connects to the Ranger's starting location, you gain:", "7% increased Movement Speed" }, } }, - ["StarterPassiveTreeJewelUnique__3"] = { affix = "", "While your Passive Skill Tree connects to the Shadow's starting location, you gain:", "+0.5% to Critical Strike Chance", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel3", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4168151521] = { "While your Passive Skill Tree connects to the Shadow's starting location, you gain:", "+0.5% to Critical Strike Chance" }, } }, - ["StarterPassiveTreeJewelUnique__4"] = { affix = "", "While your Passive Skill Tree connects to the Witch's starting location, you gain:", "0.5% of Mana Regenerated per second", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel4", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [409328770] = { "While your Passive Skill Tree connects to the Witch's starting location, you gain:", "0.5% of Mana Regenerated per second" }, } }, - ["StarterPassiveTreeJewelUnique__5"] = { affix = "", "While your Passive Skill Tree connects to the Templar's starting location, you gain:", "Damage Penetrates 5% Elemental Resistances", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel5", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1830527425] = { "While your Passive Skill Tree connects to the Templar's starting location, you gain:", "Damage Penetrates 5% Elemental Resistances" }, } }, - ["StarterPassiveTreeJewelUnique__6"] = { affix = "", "While your Passive Skill Tree connects to the Scion's starting location, you gain:", "+25 to All Attributes", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel6", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3394862739] = { "While your Passive Skill Tree connects to the Scion's starting location, you gain:", "+25 to All Attributes" }, } }, - ["StarterPassiveTreeJewelUnique__7"] = { affix = "", "While your Passive Skill Tree connects to the Marauder's starting location, you gain:", "Melee Skills have 25% increased Area of Effect", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel7", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [376356306] = { "While your Passive Skill Tree connects to the Marauder's starting location, you gain:", "Melee Skills have 25% increased Area of Effect" }, } }, - ["StarterPassiveJewelUnique__8"] = { affix = "", "While your Passive Skill Tree connects to the Marauder's starting location, you gain:", "1% of Life Regenerated per second", statOrder = { 10497, 10497.1 }, level = 1, group = "StarterPassiveJewel8", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2014285677] = { "While your Passive Skill Tree connects to the Marauder's starting location, you gain:", "1% of Life Regenerated per second" }, } }, - ["StarterPassiveJewelUnique__9_"] = { affix = "", "While your Passive Skill Tree connects to the Duelist's starting location, you gain:", "+0.2 metres to Melee Strike Range", statOrder = { 10497, 10497.1 }, level = 1, group = "StarterPassiveJewel9", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2777732970] = { "While your Passive Skill Tree connects to the Duelist's starting location, you gain:", "+0.2 metres to Melee Strike Range" }, } }, - ["StarterPassiveJewelUnique__10__"] = { affix = "", "While your Passive Skill Tree connects to the Ranger's starting location, you gain:", "20% increased Flask Charges gained", statOrder = { 10497, 10497.1 }, level = 1, group = "StarterPassiveJewel10", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3521487028] = { "While your Passive Skill Tree connects to the Ranger's starting location, you gain:", "20% increased Flask Charges gained" }, } }, - ["StarterPassiveJewelUnique__11__"] = { affix = "", "While your Passive Skill Tree connects to the Shadow's starting location, you gain:", "12% increased Attack and Cast Speed", statOrder = { 10497, 10497.1 }, level = 1, group = "StarterPassiveJewel11", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [1907816858] = { "While your Passive Skill Tree connects to the Shadow's starting location, you gain:", "12% increased Attack and Cast Speed" }, } }, - ["StarterPassiveJewelUnique__12__"] = { affix = "", "While your Passive Skill Tree connects to the Witch's starting location, you gain:", "20% increased Skill Effect Duration", statOrder = { 10497, 10497.1 }, level = 1, group = "StarterPassiveJewel12", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1484654650] = { "While your Passive Skill Tree connects to the Witch's starting location, you gain:", "20% increased Skill Effect Duration" }, } }, - ["StarterPassiveJewelUnique__13"] = { affix = "", "While your Passive Skill Tree connects to the Templar's starting location, you gain:", "+4% Chance to Block Attack and Spell Damage", statOrder = { 10497, 10497.1 }, level = 1, group = "StarterPassiveJewel13", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3770896688] = { "While your Passive Skill Tree connects to the Templar's starting location, you gain:", "+4% Chance to Block Attack and Spell Damage" }, } }, - ["StarterPassiveJewelUnique__14_"] = { affix = "", "While your Passive Skill Tree connects to the Scion's starting location, you gain:", "30% increased Damage", statOrder = { 10497, 10497.1 }, level = 1, group = "StarterPassiveJewel14", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3153352487] = { "While your Passive Skill Tree connects to the Scion's starting location, you gain:", "30% increased Damage" }, } }, + ["StarterPassiveTreeJewelUnique__2"] = { affix = "", "While your Passive Skill Tree connects to the Ranger's starting location, you gain:", "7% increased Movement Speed", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel2", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [769192511] = { "While your Passive Skill Tree connects to the Ranger's starting location, you gain:", "7% increased Movement Speed" }, } }, + ["StarterPassiveTreeJewelUnique__3"] = { affix = "", "While your Passive Skill Tree connects to the Shadow's starting location, you gain:", "+0.5% to Critical Strike Chance", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel3", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [769192511] = { "While your Passive Skill Tree connects to the Shadow's starting location, you gain:", "+0.5% to Critical Strike Chance" }, } }, + ["StarterPassiveTreeJewelUnique__4"] = { affix = "", "While your Passive Skill Tree connects to the Witch's starting location, you gain:", "0.5% of Mana Regenerated per second", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel4", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [769192511] = { "While your Passive Skill Tree connects to the Witch's starting location, you gain:", "0.5% of Mana Regenerated per second" }, } }, + ["StarterPassiveTreeJewelUnique__5"] = { affix = "", "While your Passive Skill Tree connects to the Templar's starting location, you gain:", "Damage Penetrates 5% Elemental Resistances", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel5", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [769192511] = { "While your Passive Skill Tree connects to the Templar's starting location, you gain:", "Damage Penetrates 5% Elemental Resistances" }, } }, + ["StarterPassiveTreeJewelUnique__6"] = { affix = "", "While your Passive Skill Tree connects to the Scion's starting location, you gain:", "+25 to All Attributes", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel6", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [769192511] = { "While your Passive Skill Tree connects to the Scion's starting location, you gain:", "+25 to All Attributes" }, } }, + ["StarterPassiveTreeJewelUnique__7"] = { affix = "", "While your Passive Skill Tree connects to the Marauder's starting location, you gain:", "Melee Skills have 25% increased Area of Effect", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel7", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [769192511] = { "While your Passive Skill Tree connects to the Marauder's starting location, you gain:", "Melee Skills have 25% increased Area of Effect" }, } }, + ["StarterPassiveJewelUnique__8"] = { affix = "", "While your Passive Skill Tree connects to the Marauder's starting location, you gain:", "1% of Life Regenerated per second", statOrder = { 10497, 10497.1 }, level = 1, group = "StarterPassiveJewel8", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [76458612] = { "While your Passive Skill Tree connects to the Marauder's starting location, you gain:", "1% of Life Regenerated per second" }, } }, + ["StarterPassiveJewelUnique__9_"] = { affix = "", "While your Passive Skill Tree connects to the Duelist's starting location, you gain:", "+0.2 metres to Melee Strike Range", statOrder = { 10497, 10497.1 }, level = 1, group = "StarterPassiveJewel9", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [76458612] = { "While your Passive Skill Tree connects to the Duelist's starting location, you gain:", "+0.2 metres to Melee Strike Range" }, } }, + ["StarterPassiveJewelUnique__10__"] = { affix = "", "While your Passive Skill Tree connects to the Ranger's starting location, you gain:", "20% increased Flask Charges gained", statOrder = { 10497, 10497.1 }, level = 1, group = "StarterPassiveJewel10", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [76458612] = { "While your Passive Skill Tree connects to the Ranger's starting location, you gain:", "20% increased Flask Charges gained" }, } }, + ["StarterPassiveJewelUnique__11__"] = { affix = "", "While your Passive Skill Tree connects to the Shadow's starting location, you gain:", "12% increased Attack and Cast Speed", statOrder = { 10497, 10497.1 }, level = 1, group = "StarterPassiveJewel11", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [76458612] = { "While your Passive Skill Tree connects to the Shadow's starting location, you gain:", "12% increased Attack and Cast Speed" }, } }, + ["StarterPassiveJewelUnique__12__"] = { affix = "", "While your Passive Skill Tree connects to the Witch's starting location, you gain:", "20% increased Skill Effect Duration", statOrder = { 10497, 10497.1 }, level = 1, group = "StarterPassiveJewel12", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [76458612] = { "While your Passive Skill Tree connects to the Witch's starting location, you gain:", "20% increased Skill Effect Duration" }, } }, + ["StarterPassiveJewelUnique__13"] = { affix = "", "While your Passive Skill Tree connects to the Templar's starting location, you gain:", "+4% Chance to Block Attack and Spell Damage", statOrder = { 10497, 10497.1 }, level = 1, group = "StarterPassiveJewel13", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [76458612] = { "While your Passive Skill Tree connects to the Templar's starting location, you gain:", "+4% Chance to Block Attack and Spell Damage" }, } }, + ["StarterPassiveJewelUnique__14_"] = { affix = "", "While your Passive Skill Tree connects to the Scion's starting location, you gain:", "30% increased Damage", statOrder = { 10497, 10497.1 }, level = 1, group = "StarterPassiveJewel14", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [76458612] = { "While your Passive Skill Tree connects to the Scion's starting location, you gain:", "30% increased Damage" }, } }, ["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" }, } }, - ["PassiveEffectivenessJewelUnique__1_"] = { affix = "", "50% 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 = { }, tradeHashes = { [607548408] = { "50% increased Effect of non-Keystone Passive Skills in Radius" }, [2627243269] = { "Notable Passive Skills in Radius grant nothing" }, [3802517517] = { "" }, } }, + ["PassiveEffectivenessJewelUnique__1_"] = { affix = "", "50% 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 = { }, tradeHashes = { [607548408] = { "50% increased Effect of non-Keystone Passive Skills in Radius" }, [2627243269] = { "Notable Passive Skills in Radius grant nothing" }, } }, ["DegradingMovementSpeedDuringFlaskEffectUnique__1"] = { affix = "", "50% increased Attack, Cast and Movement Speed during Effect", "Reduce Attack, Cast and Movement Speed 10% every second during Effect", statOrder = { 1048, 1049 }, level = 1, group = "DegradingMovementSpeedDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "attack", "caster", "speed" }, tradeHashes = { [1878928358] = { "50% increased Attack, Cast and Movement Speed during Effect" }, [3625168971] = { "Reduce Attack, Cast and Movement Speed 10% every second during Effect" }, } }, ["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" }, } }, @@ -6184,8 +6184,8 @@ return { ["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] = { "" }, } }, + ["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" }, } }, + ["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" }, } }, ["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" }, } }, @@ -6276,13 +6276,13 @@ return { ["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" }, } }, ["CriticalStrikeMultiplierPerUnallocatedStrengthJewelUnique__1_"] = { affix = "", "+7% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius", statOrder = { 3159 }, level = 1, group = "CriticalStrikeMultiplierPerUnallocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1154827254] = { "+7% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius" }, } }, ["AdditionalPhysicalReductionPerAllocatedStrengthJewelUnique__1"] = { affix = "", "1% additional Physical Damage Reduction per 10 Strength on Allocated Passives in Radius", statOrder = { 3151 }, level = 1, group = "AdditionalPhysicalReductionPerAllocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2519848087] = { "1% additional Physical Damage Reduction per 10 Strength on Allocated Passives in Radius" }, } }, - ["AdditionalStrengthPerAllocatedStrengthJewelUnique__1_"] = { affix = "", "-1 Strength per 1 Strength on Allocated Passives in Radius", statOrder = { 3070 }, level = 1, group = "AdditionalStrengthPerAllocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [552705983] = { "-1 Strength per 1 Strength on Allocated Passives in Radius" }, [3802517517] = { "" }, } }, + ["AdditionalStrengthPerAllocatedStrengthJewelUnique__1_"] = { affix = "", "-1 Strength per 1 Strength on Allocated Passives in Radius", statOrder = { 3070 }, level = 1, group = "AdditionalStrengthPerAllocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [552705983] = { "-1 Strength per 1 Strength on Allocated Passives in Radius" }, } }, ["FlatManaPerUnallocatedDexterityJewelUnique__1"] = { affix = "", "+15 to Maximum Mana per 10 Dexterity on Unallocated Passives in Radius", statOrder = { 3160 }, level = 1, group = "FlatManaRegenPerUnallocatedDexterityJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1276712564] = { "+15 to Maximum Mana per 10 Dexterity on Unallocated Passives in Radius" }, } }, ["MovementSpeedPerAllocatedDexterityJewelUnique__1"] = { affix = "", "2% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius", statOrder = { 3153 }, level = 1, group = "MovementSpeedPerAllocatedDexterityJewel", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1795365307] = { "2% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius" }, } }, - ["AdditionalDexterityPerAllocatedDexterityJewelUnique__1"] = { affix = "", "-1 Dexterity per 1 Dexterity on Allocated Passives in Radius", statOrder = { 3068 }, level = 1, group = "AdditionalDexterityPerAllocatedDexterityJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [172076472] = { "-1 Dexterity per 1 Dexterity on Allocated Passives in Radius" }, } }, + ["AdditionalDexterityPerAllocatedDexterityJewelUnique__1"] = { affix = "", "-1 Dexterity per 1 Dexterity on Allocated Passives in Radius", statOrder = { 3068 }, level = 1, group = "AdditionalDexterityPerAllocatedDexterityJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [172076472] = { "-1 Dexterity per 1 Dexterity on Allocated Passives in Radius" }, } }, ["AccuracyRatingPerUnallocatedIntelligenceJewelUnique__1"] = { affix = "", "+125 to Accuracy Rating per 10 Intelligence on Unallocated Passives in Radius", statOrder = { 3158 }, level = 1, group = "AccuracyRatingPerUnallocatedIntelligenceJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3996149330] = { "+125 to Accuracy Rating per 10 Intelligence on Unallocated Passives in Radius" }, } }, ["EnergyShieldRegenPerAllocatedIntelligenceJewelUnique__1_"] = { affix = "", "Regenerate 0.4% of Energy Shield per Second for", "every 10 Intelligence on Allocated Passives in Radius", statOrder = { 3152, 3152.1 }, level = 1, group = "EnergyShieldRegenPerAllocatedIntelligenceJewel", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [615595418] = { "Regenerate 0.4% of Energy Shield per Second for", "every 10 Intelligence on Allocated Passives in Radius" }, } }, - ["AdditionalIntelligencePerAllocatedIntelligenceJewelUnique__1__"] = { affix = "", "-1 Intelligence per 1 Intelligence on Allocated Passives in Radius", statOrder = { 3069 }, level = 1, group = "AdditionalIntelligencePerAllocatedIntelligenceJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [1070347065] = { "-1 Intelligence per 1 Intelligence on Allocated Passives in Radius" }, } }, + ["AdditionalIntelligencePerAllocatedIntelligenceJewelUnique__1__"] = { affix = "", "-1 Intelligence per 1 Intelligence on Allocated Passives in Radius", statOrder = { 3069 }, level = 1, group = "AdditionalIntelligencePerAllocatedIntelligenceJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1070347065] = { "-1 Intelligence per 1 Intelligence on Allocated Passives in Radius" }, } }, ["LifeRecoveryRatePerAllocatedStrengthUnique__1_"] = { affix = "", "2% increased Life Recovery Rate per 10 Strength on Allocated Passives in Radius", statOrder = { 8086 }, level = 1, group = "LifeRecoveryRatePerAllocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [235105674] = { "2% increased Life Recovery Rate per 10 Strength on Allocated Passives in Radius" }, } }, ["LifeRecoveryRatePerAllocatedStrengthUnique__2"] = { affix = "", "3% increased Life Recovery Rate per 10 Strength on Allocated Passives in Radius", statOrder = { 8086 }, level = 1, group = "LifeRecoveryRatePerAllocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [235105674] = { "3% increased Life Recovery Rate per 10 Strength on Allocated Passives in Radius" }, } }, ["LifeRecoveryRatePerUnallocatedStrengthUnique__1_"] = { affix = "", "2% reduced Life Recovery Rate per 10 Strength on Unallocated Passives in Radius", statOrder = { 8087 }, level = 1, group = "LifeRecoveryRatePerUnallocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4144221848] = { "2% reduced Life Recovery Rate per 10 Strength on Unallocated Passives in Radius" }, } }, @@ -6309,9 +6309,9 @@ return { ["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" }, } }, ["ElementalDamageUniqueJewel_1"] = { affix = "", "(10-15)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(10-15)% increased Elemental Damage" }, } }, - ["ElementalHitDisableFireUniqueJewel_1"] = { affix = "", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire", statOrder = { 8064, 8067 }, level = 1, group = "ElementalHitDisableFireJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [63111803] = { "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire" }, [1813069390] = { "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage" }, [3802517517] = { "" }, } }, - ["ElementalHitDisableColdUniqueJewel_1"] = { affix = "", "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage", "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold", statOrder = { 8063, 8066 }, level = 1, group = "ElementalHitDisableColdJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [3802517517] = { "" }, [2864618930] = { "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold" }, [3286480398] = { "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage" }, } }, - ["ElementalHitDisableLightningUniqueJewel_1"] = { affix = "", "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage", "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning", statOrder = { 8065, 8068 }, level = 1, group = "ElementalHitDisableLightningJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3802517517] = { "" }, [637033100] = { "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning" }, [2053992416] = { "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage" }, } }, + ["ElementalHitDisableFireUniqueJewel_1"] = { affix = "", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire", statOrder = { 8064, 8067 }, level = 1, group = "ElementalHitDisableFireJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [63111803] = { "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire" }, [1813069390] = { "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage" }, } }, + ["ElementalHitDisableColdUniqueJewel_1"] = { affix = "", "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage", "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold", statOrder = { 8063, 8066 }, level = 1, group = "ElementalHitDisableColdJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [3286480398] = { "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage" }, [2864618930] = { "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold" }, } }, + ["ElementalHitDisableLightningUniqueJewel_1"] = { affix = "", "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage", "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning", statOrder = { 8065, 8068 }, level = 1, group = "ElementalHitDisableLightningJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2053992416] = { "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage" }, [637033100] = { "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning" }, } }, ["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" }, } }, @@ -6325,7 +6325,7 @@ return { ["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] = { "" }, } }, + ["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" }, } }, ["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" }, } }, @@ -6395,8 +6395,8 @@ return { ["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] = { "" }, } }, + ["NearbyEnemiesGrantIncreasedFlaskChargesUnique__1"] = { affix = "", "Nearby Enemies grant 25% increased Flask Charges", statOrder = { 3402 }, level = 1, group = "NearbyEnemiesGrantIncreasedFlaskCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [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" }, } }, ["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" }, } }, @@ -6445,8 +6445,8 @@ return { ["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] = { "" }, } }, + ["TriggerFeastOfFleshSkillUnique__1_"] = { affix = "", "Trigger Level 15 Feast of Flesh every 5 seconds", statOrder = { 801 }, level = 1, group = "TriggerFeastOfFleshSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [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" }, } }, ["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" }, } }, @@ -6457,7 +6457,7 @@ return { ["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] = { "" }, } }, + ["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" }, } }, ["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" }, } }, ["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" }, } }, @@ -6465,7 +6465,7 @@ return { ["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" }, } }, + ["GroundTarOnBlockUnique__1"] = { affix = "", "Spreads Tar when you Block", statOrder = { 6917 }, level = 79, group = "GroundTarOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [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" }, } }, ["EnemiesIgnitedTakeIncreasedDamageUnique__1"] = { affix = "", "Enemies Ignited by you during Effect take (7-10)% increased Damage", statOrder = { 1044 }, level = 1, group = "EnemiesIgnitedTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, tradeHashes = { [3477833022] = { "Enemies Ignited by you during Effect take (7-10)% increased Damage" }, } }, @@ -6500,7 +6500,7 @@ return { ["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" }, } }, + ["FlaskConsecratedGroundDurationUnique__1"] = { affix = "", "(15-30)% reduced Duration", statOrder = { 857 }, level = 1, group = "FlaskConsecratedGroundDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(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" }, } }, @@ -6593,7 +6593,7 @@ return { ["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] = { "" }, } }, + ["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" }, } }, ["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" }, } }, @@ -6608,11 +6608,11 @@ return { ["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" }, } }, - ["UniqueJewelAlternateTreeInRadiusVaal"] = { affix = "", "Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua", "Passives in radius are Conquered by the Vaal", "Historic", statOrder = { 10, 10.1, 10713 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3802517517] = { "" }, [2778427270] = { "" }, [366541484] = { "" }, [3004613329] = { "" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusKarui"] = { affix = "", "Commanded leadership over (10000-18000) warriors under Kaom", "Passives in radius are Conquered by the Karui", "Historic", statOrder = { 10, 10.1, 10713 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3802517517] = { "" }, [2778427270] = { "" }, [366541484] = { "" }, [3004613329] = { "" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusMaraketh"] = { affix = "", "Denoted service of (500-8000) dekhara in the akhara of Balbala", "Passives in radius are Conquered by the Maraketh", "Historic", statOrder = { 10, 10.1, 10713 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3802517517] = { "" }, [2778427270] = { "" }, [366541484] = { "" }, [3004613329] = { "" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusTemplar"] = { affix = "", "Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius", "Passives in radius are Conquered by the Templars", "Historic", statOrder = { 10, 10.1, 10713 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3802517517] = { "" }, [2778427270] = { "" }, [366541484] = { "" }, [3004613329] = { "" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusEternal"] = { affix = "", "Commissioned (2000-160000) coins to commemorate Cadiro", "Passives in radius are Conquered by the Eternal Empire", "Historic", statOrder = { 10, 10.1, 10713 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3802517517] = { "" }, [2778427270] = { "" }, [366541484] = { "" }, [3004613329] = { "" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusVaal"] = { affix = "", "Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua", "Passives in radius are Conquered by the Vaal", "Historic", statOrder = { 10, 10.1, 10713 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua", "Passives in radius are Conquered by the Vaal" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusKarui"] = { affix = "", "Commanded leadership over (10000-18000) warriors under Kaom", "Passives in radius are Conquered by the Karui", "Historic", statOrder = { 10, 10.1, 10713 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Commanded leadership over (10000-18000) warriors under Kaom", "Passives in radius are Conquered by the Karui" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusMaraketh"] = { affix = "", "Denoted service of (500-8000) dekhara in the akhara of Balbala", "Passives in radius are Conquered by the Maraketh", "Historic", statOrder = { 10, 10.1, 10713 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Denoted service of (500-8000) dekhara in the akhara of Balbala", "Passives in radius are Conquered by the Maraketh" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusTemplar"] = { affix = "", "Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius", "Passives in radius are Conquered by the Templars", "Historic", statOrder = { 10, 10.1, 10713 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius", "Passives in radius are Conquered by the Templars" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusEternal"] = { affix = "", "Commissioned (2000-160000) coins to commemorate Cadiro", "Passives in radius are Conquered by the Eternal Empire", "Historic", statOrder = { 10, 10.1, 10713 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Commissioned (2000-160000) coins to commemorate Cadiro", "Passives in radius are Conquered by the Eternal Empire" }, [3787436548] = { "Historic" }, } }, ["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" }, } }, @@ -6674,10 +6674,10 @@ return { ["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" }, } }, + ["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 = { [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 = { [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 = { [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 = { [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" }, } }, @@ -6728,10 +6728,10 @@ return { ["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" }, } }, + ["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 = { [3250070049] = { "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" }, } }, - ["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" }, } }, + ["SummonDoubleOnCritUnique__1"] = { affix = "", "Triggers Level 20 Reflection when Equipped", statOrder = { 814 }, level = 1, group = "SummonDoubleOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [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" }, } }, @@ -6743,13 +6743,14 @@ return { ["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" }, } }, + ["Allow2ActiveBannersUnique__1"] = { affix = "", "Having a placed Banner does not prevent you gaining Valour", statOrder = { 1137 }, level = 1, group = "Allow2ActiveBanners", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4068494864] = { "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 = { [1239233415] = { "+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" }, } }, + ["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" }, } }, @@ -6802,12 +6803,12 @@ return { ["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" }, } }, + ["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 = { [1964607303] = { "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" }, } }, + ["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 = { [1173537953] = { "Maximum 10 Fragile Regrowth" }, [3841984913] = { "Gain 1 Fragile Regrowth each second" }, [1306791873] = { "Lose all Fragile Regrowth when Hit" }, [3175722882] = { "0.7% of Life Regenerated per second per Fragile Regrowth" }, } }, + ["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 = { [1173537953] = { "Maximum 5 Fragile Regrowth" }, [2796308895] = { "Gain up to maximum Fragile Regrowth when Hit" }, [3841984913] = { "Lose 1 Fragile Regrowth each second" }, [3175722882] = { "0.7% of Life Regenerated per second per Fragile Regrowth" }, } }, ["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" }, } }, @@ -6827,11 +6828,11 @@ return { ["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" }, } }, + ["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 = { [2349941769] = { "Socketed Gems are Supported by Level (1-10) (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 = { [537678731] = { "Socketed Gems are Supported by Level (25-35) (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 = { [2349941769] = { "Socketed Gems are Supported by Level (1-10) (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 = { [537678731] = { "Socketed Gems are Supported by Level (25-35) (1-172)" }, } }, + ["RandomSkillUnique__1"] = { affix = "", "+3 to Level of all (1-286) Gems", statOrder = { 1618 }, level = 71, group = "RandomSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2317211476] = { "+3 to Level of all (1-286) 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" }, } }, @@ -6847,7 +6848,7 @@ return { ["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] = { "" }, } }, + ["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 = { [3430460307] = { "Notable Passive Skills in Radius are Transformed to", "instead grant: 10% increased Mana Cost of Skills and 20% increased Spell Damage" }, } }, ["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" }, } }, @@ -6861,7 +6862,7 @@ return { ["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" }, } }, + ["WarcryInfiniteEnemyPowerUnique__1__"] = { affix = "", "Warcries have infinite Power", statOrder = { 10570 }, level = 1, group = "WarcryInfiniteEnemyPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3168635562] = { "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" }, } }, @@ -6882,7 +6883,7 @@ return { ["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" }, } }, + ["FlaskDurationConsumedPerUse"] = { affix = "", "50% increased Duration. -1% to this value when used", statOrder = { 857 }, level = 1, group = "FlaskDurationConsumedPerUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "50% increased Duration. -1% to this value when used" }, } }, ["JewelImplicitLifeRegeneration"] = { affix = "", "Regenerate 0.1% of Life per second", statOrder = { 1944 }, level = 1, group = "JewelImplicitLifeRegeneration", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 0.1% of Life per second" }, } }, ["JewelImplicitEnergyShieldRechargeRate"] = { affix = "", "(3-6)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 1, group = "JewelImplicitEnergyShieldRechargeRate", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(3-6)% increased Energy Shield Recharge Rate" }, } }, ["JewelImplicitTotemPlacementSpeed"] = { affix = "", "(4-6)% increased Totem Placement speed", statOrder = { 2578 }, level = 1, group = "JewelImplicitTotemPlacementSpeed", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(4-6)% increased Totem Placement speed" }, } }, @@ -6913,10 +6914,10 @@ return { ["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" }, } }, - ["HarvestFlaskEnchantmentDurationLoweredOnUse1_"] = { affix = "Enchantment Decaying Duration", "100% increased Duration. -1% to this value when used", statOrder = { 857 }, level = 1, group = "HarvestFlaskEnchantmentDurationLoweredOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [798785332] = { "" }, [156096868] = { "100% increased Duration" }, } }, - ["HarvestFlaskEnchantmentEffectLoweredOnUse2"] = { affix = "Enchantment Decaying Effect", "50% increased effect. -1% to this value when used", statOrder = { 935 }, level = 1, group = "HarvestFlaskEnchantmentEffectLoweredOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2672061919] = { "" }, [553298121] = { "50% increased effect" }, } }, - ["HarvestFlaskEnchantmentMaximumChargesLoweredOnUse3_"] = { affix = "Enchantment Decaying Efficiency", "+100 to Maximum Charges. -1 to this value when used", statOrder = { 837 }, level = 1, group = "HarvestFlaskEnchantmentMaximumChargesLoweredOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [219051355] = { "+0 to Maximum Charges. -1 to this value when used" }, [3608809816] = { "+100 to Maximum Charges" }, } }, - ["HarvestFlaskEnchantmentChargesUsedLoweredOnUse4"] = { affix = "Enchantment Decaying Capacity", "50% reduced Charges per use. -1% to this value when used", statOrder = { 846 }, level = 1, group = "HarvestFlaskEnchantmentChargesUsedLoweredOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3406017438] = { "" }, [3139816101] = { "50% reduced Charges per use" }, } }, + ["HarvestFlaskEnchantmentDurationLoweredOnUse1_"] = { affix = "Enchantment Decaying Duration", "100% increased Duration. -1% to this value when used", statOrder = { 857 }, level = 1, group = "HarvestFlaskEnchantmentDurationLoweredOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "100% increased Duration. -1% to this value when used" }, } }, + ["HarvestFlaskEnchantmentEffectLoweredOnUse2"] = { affix = "Enchantment Decaying Effect", "50% increased effect. -1% to this value when used", statOrder = { 935 }, level = 1, group = "HarvestFlaskEnchantmentEffectLoweredOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2448920197] = { "50% increased effect. -1% to this value when used" }, } }, + ["HarvestFlaskEnchantmentMaximumChargesLoweredOnUse3_"] = { affix = "Enchantment Decaying Efficiency", "+100 to Maximum Charges. -1 to this value when used", statOrder = { 837 }, level = 1, group = "HarvestFlaskEnchantmentMaximumChargesLoweredOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1437957544] = { "+100 to Maximum Charges. -1 to this value when used" }, } }, + ["HarvestFlaskEnchantmentChargesUsedLoweredOnUse4"] = { affix = "Enchantment Decaying Capacity", "50% reduced Charges per use. -1% to this value when used", statOrder = { 846 }, level = 1, group = "HarvestFlaskEnchantmentChargesUsedLoweredOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "50% reduced Charges per use. -1% to this value when used" }, } }, ["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" }, } }, @@ -6933,7 +6934,7 @@ return { ["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" }, } }, + ["GrantsUnholyMightUnique__1"] = { affix = "", "Unholy Might", statOrder = { 2914 }, level = 1, group = "GrantsUnholyMight", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [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" }, } }, @@ -6974,7 +6975,7 @@ return { ["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" }, } }, + ["HexExpiresMaxDoomUnique__1"] = { affix = "", "Non-Aura Hexes expire upon reaching 200% of base Effect", statOrder = { 7139 }, level = 48, group = "HexExpiresMaxDoom", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [2417456003] = { "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" }, } }, @@ -7187,7 +7188,7 @@ return { ["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" }, } }, - ["DischargeThresholdJewel__1"] = { affix = "", "With at least 40 Intelligence in Radius, Discharge has 60% less Area of Effect", "With at least 40 Intelligence in Radius, Discharge Cooldown is 250 ms", "With at least 40 Intelligence in Radius, Discharge deals 60% less Damage", statOrder = { 8052, 8053, 8054 }, level = 1, group = "DischargeThresholdJewel1", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [1213084913] = { "With at least 40 Intelligence in Radius, Discharge Cooldown is 250 ms" }, [2818653316] = { "With at least 40 Intelligence in Radius, Discharge deals 60% less Damage" }, [2045330446] = { "With at least 40 Intelligence in Radius, Discharge has 60% less Area of Effect" }, } }, + ["DischargeThresholdJewel__1"] = { affix = "", "With at least 40 Intelligence in Radius, Discharge has 60% less Area of Effect", "With at least 40 Intelligence in Radius, Discharge Cooldown is 250 ms", "With at least 40 Intelligence in Radius, Discharge deals 60% less Damage", statOrder = { 8052, 8053, 8054 }, level = 1, group = "DischargeThresholdJewel1", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1213084913] = { "With at least 40 Intelligence in Radius, Discharge Cooldown is 250 ms" }, [2818653316] = { "With at least 40 Intelligence in Radius, Discharge deals 60% less Damage" }, [2045330446] = { "With at least 40 Intelligence in Radius, Discharge has 60% less Area of Effect" }, } }, ["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" }, } }, @@ -7303,9 +7304,9 @@ return { ["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" }, } }, + ["TriggerFlameDashOnSocketedSkillUseImplicitE1"] = { affix = "", "Trigger Level 10 Flame Dash when you use a Socketed Skill", statOrder = { 809 }, level = 1, group = "TriggerFlameDashOnSocketedSkillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2308278768] = { "" }, [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" }, [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" }, [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" }, } }, @@ -7355,9 +7356,9 @@ return { ["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] = { "" }, } }, + ["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" }, } }, + ["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" }, } }, + ["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" }, } }, ["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" }, } }, @@ -7405,7 +7406,7 @@ return { ["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] = { "" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [1609369521] = { "Socketed Gems are Supported by Level 20 Pinpoint" }, } }, ["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%" }, } }, @@ -7422,13 +7423,13 @@ return { ["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] = { "" }, } }, + ["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 = { [3221550523] = { "Has Consumed 1 Gem" }, [3111091501] = { "Socketed Gems are Supported by Level 20 Trinity" }, } }, ["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] = { "" }, } }, + ["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" }, } }, ["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" }, } }, @@ -7642,7 +7643,7 @@ return { ["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" }, } }, - ["InfernalCryThresholdJewel"] = { affix = "", "With at least 40 Strength in Radius, Combust is Disabled", "With at least 40 Strength in Radius, Attacks Exerted by Infernal Cry deal (40-60)% more Damage with Ignite", statOrder = { 7958, 7972 }, level = 1, group = "InfernalCryThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2298311736] = { "With at least 40 Strength in Radius, Attacks Exerted by Infernal Cry deal (40-60)% more Damage with Ignite" }, [3802517517] = { "" }, [2471517399] = { "With at least 40 Strength in Radius, Combust is Disabled" }, } }, + ["InfernalCryThresholdJewel"] = { affix = "", "With at least 40 Strength in Radius, Combust is Disabled", "With at least 40 Strength in Radius, Attacks Exerted by Infernal Cry deal (40-60)% more Damage with Ignite", statOrder = { 7958, 7972 }, level = 1, group = "InfernalCryThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2298311736] = { "With at least 40 Strength in Radius, Attacks Exerted by Infernal Cry deal (40-60)% more Damage with Ignite" }, [2471517399] = { "With at least 40 Strength in Radius, Combust is Disabled" }, } }, ["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" }, } }, @@ -7662,7 +7663,7 @@ return { ["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" }, } }, + ["NearbyEnemiesAreBlindedUnique__1"] = { affix = "", "Nearby Enemies are Blinded", statOrder = { 3396 }, level = 10, group = "NearbyEnemiesAreBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [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" }, } }, @@ -7713,7 +7714,7 @@ return { ["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" }, } }, + ["ReturningProjectilesUnique__1"] = { affix = "", "Projectiles Return to you", statOrder = { 2823 }, level = 1, group = "ReturningProjectilesNoHitObject", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2134307667] = { "Projectiles Return to you" }, } }, ["LifeLossToPreventDuringFlaskEffectToLoseOverTimeUnique__1"] = { affix = "", "When Hit during effect, 25% of Life loss from Damage taken occurs over 4 seconds instead", statOrder = { 10503 }, level = 75, group = "LifeLossToPreventDuringFlaskEffectToLoseOverTime", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [41860024] = { "When Hit during effect, 25% of Life loss from Damage taken occurs over 4 seconds instead" }, } }, ["EnemyExplosionRandomElementFlaskEffectUnique__1"] = { affix = "", "Enemies you Kill during Effect have a (20-30)% chance to Explode, dealing a tenth of their maximum Life as Damage of a Random Element", statOrder = { 1021 }, level = 71, group = "EnemyExplosionRandomElementFlaskEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2165415361] = { "Enemies you Kill during Effect have a (20-30)% chance to Explode, dealing a tenth of their maximum Life as Damage of a Random Element" }, } }, ["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" }, } }, @@ -7821,7 +7822,7 @@ return { ["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" }, } }, + ["SoulTattooEffectUnique__1"] = { affix = "", "100% increased effect of Tattoos in Radius", statOrder = { 8125 }, level = 1, group = "SoulTattooEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [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" }, } }, @@ -7868,34 +7869,34 @@ return { ["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" }, } }, - ["TinctureCriticalStrikeChanceImplicit1"] = { affix = "", "(100-150)% increased Critical Strike Chance with Melee Weapons", statOrder = { 10884 }, level = 1, group = "TinctureCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3678828098] = { "(100-150)% increased Critical Strike Chance with Melee Weapons" }, } }, - ["TinctureElementalDamageImplicit1"] = { affix = "", "(70-100)% increased Elemental Damage with Melee Weapons", statOrder = { 10886 }, level = 1, group = "TinctureElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [503138266] = { "(70-100)% increased Elemental Damage with Melee Weapons" }, } }, - ["TinctureStunThresholdImplicit1"] = { affix = "", "40% reduced Enemy Stun Threshold with Melee Weapons", "(15-25)% increased Stun Duration with Melee Weapons", statOrder = { 10861, 10920 }, level = 1, group = "TinctureStunThresholdDuration", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2791825817] = { "40% reduced Enemy Stun Threshold with Melee Weapons" }, [2912587137] = { "(15-25)% increased Stun Duration with Melee Weapons" }, } }, - ["TinctureChanceToIgniteImplicit1"] = { affix = "", "25% chance to Ignite with Melee Weapons", "(60-90)% increased Damage with Ignite from Melee Weapons", statOrder = { 10879, 10893 }, level = 1, group = "TinctureChanceToIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack", "ailment" }, tradeHashes = { [3935936274] = { "(60-90)% increased Damage with Ignite from Melee Weapons" }, [4206255461] = { "25% chance to Ignite with Melee Weapons" }, } }, - ["TinctureChanceToFreezeImplicit1"] = { affix = "", "25% chance to Freeze with Melee Weapons", "(25-35)% increased Effect of Chill from Melee Weapons", statOrder = { 10878, 10882 }, level = 1, group = "TinctureChanceToFreezeEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack", "ailment" }, tradeHashes = { [3296814491] = { "(25-35)% increased Effect of Chill from Melee Weapons" }, [1858426568] = { "25% chance to Freeze with Melee Weapons" }, } }, - ["TinctureChanceToShockImplicit1"] = { affix = "", "25% chance to Shock with Melee Weapons", "(25-35)% increased Effect of Shock from Melee Weapons", statOrder = { 10881, 10916 }, level = 1, group = "TinctureChanceToShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack", "ailment" }, tradeHashes = { [2313961828] = { "25% chance to Shock with Melee Weapons" }, [2245266924] = { "(25-35)% increased Effect of Shock from Melee Weapons" }, } }, - ["TinctureChanceToPoisonImplicit1"] = { affix = "", "20% chance to Poison with Melee Weapons", "(60-90)% increased Damage with Poison from Melee Weapons", statOrder = { 10880, 10903 }, level = 1, group = "TinctureChanceToPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [776174407] = { "(60-90)% increased Damage with Poison from Melee Weapons" }, [1168985596] = { "20% chance to Poison with Melee Weapons" }, } }, - ["TinctureChanceToBleedImplicit1"] = { affix = "", "20% chance to cause Bleeding with Melee Weapons", "(60-90)% increased Damage with Bleeding from Melee Weapons", statOrder = { 10862, 10874 }, level = 1, group = "TinctureChanceToBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1630041051] = { "20% chance to cause Bleeding with Melee Weapons" }, [3660450649] = { "(60-90)% increased Damage with Bleeding from Melee Weapons" }, } }, - ["TinctureRageOnHitImplicit1"] = { affix = "", "Gain 3 Rage on Melee Weapon Hit", statOrder = { 10891 }, level = 1, group = "TinctureRageOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2012294704] = { "Gain 3 Rage on Melee Weapon Hit" }, } }, - ["TinctureChanceToBlindImplicit1"] = { affix = "", "25% chance to Blind Enemies on Hit with Melee Weapons", "(25-35)% increased Effect of Blind from Melee Weapons", statOrder = { 10863, 10875 }, level = 1, group = "TinctureChanceToBlindEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1808507379] = { "(25-35)% increased Effect of Blind from Melee Weapons" }, [2795267150] = { "25% chance to Blind Enemies on Hit with Melee Weapons" }, } }, - ["TinctureToxicityRateUnique__1"] = { affix = "", "(15-25)% reduced Mana Burn rate", statOrder = { 10906 }, level = 1, group = "TinctureToxicityRate", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [116232170] = { "(15-25)% reduced Mana Burn rate" }, } }, - ["TinctureToxicityRateUnique__2"] = { affix = "", "(-35-35)% reduced Mana Burn rate", statOrder = { 10906 }, level = 1, group = "TinctureToxicityRate", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [116232170] = { "(-35-35)% reduced Mana Burn rate" }, } }, - ["TinctureCooldownRecoveryUnique__1"] = { affix = "", "(20-40)% increased Cooldown Recovery Rate", statOrder = { 10904 }, level = 1, group = "TinctureCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [239144] = { "(20-40)% increased Cooldown Recovery Rate" }, } }, - ["TinctureMeleeSplashOnWeaponHitUnique__1"] = { affix = "", "Melee Strike Skills deal Splash Damage to surrounding targets", statOrder = { 10897 }, level = 1, group = "MeleeSplashOnWeaponHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2929267123] = { "Melee Strike Skills deal Splash Damage to surrounding targets" }, [2100498273] = { "" }, } }, - ["TinctureGraspingVineOnWeaponHitUnique__1"] = { affix = "", "(20-30)% chance to inflict a Grasping Vine on Melee Weapon Hit", statOrder = { 10876 }, level = 1, group = "GraspingVineOnWeaponHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [19313391] = { "(20-30)% chance to inflict a Grasping Vine on Melee Weapon Hit" }, } }, - ["TinctureApplyWitherStacksOnHitUnique__1"] = { affix = "", "Melee Weapon Hits Inflict (2-3) Withered Debuffs for 2 seconds", statOrder = { 10872 }, level = 1, group = "WeaponApplyWitherStacksOnHit", weightKey = { }, weightVal = { }, modTags = { "chaos", "attack" }, tradeHashes = { [1103333624] = { "Melee Weapon Hits Inflict (2-3) Withered Debuffs for 2 seconds" }, } }, - ["TinctureToxicityOnHitUnique__1"] = { affix = "", "Does not inflict Mana Burn over time", "Inflicts Mana Burn on you when you Hit an Enemy with a Melee Weapon", statOrder = { 10864, 10865 }, level = 1, group = "TinctureToxicityOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1330482101] = { "Inflicts Mana Burn on you when you Hit an Enemy with a Melee Weapon" }, [1686969928] = { "Does not inflict Mana Burn over time" }, } }, - ["TinctureRarityPerToxicityUnique__1"] = { affix = "", "(1-5)% increased Rarity of Items found per Mana Burn, up to a maximum of 100%", statOrder = { 10866 }, level = 1, group = "TinctureRarityPerToxicity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3226452989] = { "(1-5)% increased Rarity of Items found per Mana Burn, up to a maximum of 100%" }, } }, - ["TincturePenetrationPerToxicityUnique__1"] = { affix = "", "Melee Weapon Damage Penetrates 1% Elemental Resistances per Mana Burn, up to a maximum of 200%", statOrder = { 10901 }, level = 1, group = "TincturePenetrationPerToxicity", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3685214225] = { "Melee Weapon Damage Penetrates 1% Elemental Resistances per Mana Burn, up to a maximum of 200%" }, } }, - ["TinctureCullingStrikeUnique__1"] = { affix = "", "Melee Weapon Attacks have Culling Strike", statOrder = { 10885 }, level = 1, group = "WeaponCullingStrike", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [802532569] = { "Melee Weapon Attacks have Culling Strike" }, } }, - ["TinctureCoverInAshOnFullLifeUnique__1"] = { affix = "", "Cover Full Life Enemies in Ash for (4-10) seconds on Melee Weapon Hit", statOrder = { 10937 }, level = 1, group = "WeaponCoverInAshVsFullLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [2428064388] = { "Cover Full Life Enemies in Ash for (4-10) seconds on Melee Weapon Hit" }, } }, - ["TinctureRefreshIgniteDurationUnique__1"] = { affix = "", "(15-25)% chance to refresh Ignite Duration on Melee Weapon Hit", statOrder = { 10914 }, level = 1, group = "RefreshIgniteDurationOnWeaponHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [93054948] = { "(15-25)% chance to refresh Ignite Duration on Melee Weapon Hit" }, } }, - ["TinctureFireDamageTakenPerToxicityUnique__1"] = { affix = "", "-1 Fire Damage taken from Hits per Mana Burn", statOrder = { 10888 }, level = 1, group = "TinctureFireDamageTakenPerToxicity", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [1483305963] = { "-1 Fire Damage taken from Hits per Mana Burn" }, } }, + ["TinctureCriticalStrikeChanceImplicit1"] = { affix = "", "(100-150)% increased Critical Strike Chance with Melee Weapons", statOrder = { 10884 }, level = 1, group = "TinctureCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { } }, + ["TinctureElementalDamageImplicit1"] = { affix = "", "(70-100)% increased Elemental Damage with Melee Weapons", statOrder = { 10886 }, level = 1, group = "TinctureElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { } }, + ["TinctureStunThresholdImplicit1"] = { affix = "", "40% reduced Enemy Stun Threshold with Melee Weapons", "(15-25)% increased Stun Duration with Melee Weapons", statOrder = { 10861, 10920 }, level = 1, group = "TinctureStunThresholdDuration", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { } }, + ["TinctureChanceToIgniteImplicit1"] = { affix = "", "25% chance to Ignite with Melee Weapons", "(60-90)% increased Damage with Ignite from Melee Weapons", statOrder = { 10879, 10893 }, level = 1, group = "TinctureChanceToIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack", "ailment" }, tradeHashes = { } }, + ["TinctureChanceToFreezeImplicit1"] = { affix = "", "25% chance to Freeze with Melee Weapons", "(25-35)% increased Effect of Chill from Melee Weapons", statOrder = { 10878, 10882 }, level = 1, group = "TinctureChanceToFreezeEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack", "ailment" }, tradeHashes = { } }, + ["TinctureChanceToShockImplicit1"] = { affix = "", "25% chance to Shock with Melee Weapons", "(25-35)% increased Effect of Shock from Melee Weapons", statOrder = { 10881, 10916 }, level = 1, group = "TinctureChanceToShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack", "ailment" }, tradeHashes = { } }, + ["TinctureChanceToPoisonImplicit1"] = { affix = "", "20% chance to Poison with Melee Weapons", "(60-90)% increased Damage with Poison from Melee Weapons", statOrder = { 10880, 10903 }, level = 1, group = "TinctureChanceToPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { } }, + ["TinctureChanceToBleedImplicit1"] = { affix = "", "20% chance to cause Bleeding with Melee Weapons", "(60-90)% increased Damage with Bleeding from Melee Weapons", statOrder = { 10862, 10874 }, level = 1, group = "TinctureChanceToBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { } }, + ["TinctureRageOnHitImplicit1"] = { affix = "", "Gain 3 Rage on Melee Weapon Hit", statOrder = { 10891 }, level = 1, group = "TinctureRageOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { } }, + ["TinctureChanceToBlindImplicit1"] = { affix = "", "25% chance to Blind Enemies on Hit with Melee Weapons", "(25-35)% increased Effect of Blind from Melee Weapons", statOrder = { 10863, 10875 }, level = 1, group = "TinctureChanceToBlindEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { } }, + ["TinctureToxicityRateUnique__1"] = { affix = "", "(15-25)% reduced Mana Burn rate", statOrder = { 10906 }, level = 1, group = "TinctureToxicityRate", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { } }, + ["TinctureToxicityRateUnique__2"] = { affix = "", "(-35-35)% reduced Mana Burn rate", statOrder = { 10906 }, level = 1, group = "TinctureToxicityRate", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { } }, + ["TinctureCooldownRecoveryUnique__1"] = { affix = "", "(20-40)% increased Cooldown Recovery Rate", statOrder = { 10904 }, level = 1, group = "TinctureCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { } }, + ["TinctureMeleeSplashOnWeaponHitUnique__1"] = { affix = "", "Melee Strike Skills deal Splash Damage to surrounding targets", statOrder = { 10897 }, level = 1, group = "MeleeSplashOnWeaponHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { } }, + ["TinctureGraspingVineOnWeaponHitUnique__1"] = { affix = "", "(20-30)% chance to inflict a Grasping Vine on Melee Weapon Hit", statOrder = { 10876 }, level = 1, group = "GraspingVineOnWeaponHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { } }, + ["TinctureApplyWitherStacksOnHitUnique__1"] = { affix = "", "Melee Weapon Hits Inflict (2-3) Withered Debuffs for 2 seconds", statOrder = { 10872 }, level = 1, group = "WeaponApplyWitherStacksOnHit", weightKey = { }, weightVal = { }, modTags = { "chaos", "attack" }, tradeHashes = { } }, + ["TinctureToxicityOnHitUnique__1"] = { affix = "", "Does not inflict Mana Burn over time", "Inflicts Mana Burn on you when you Hit an Enemy with a Melee Weapon", statOrder = { 10864, 10865 }, level = 1, group = "TinctureToxicityOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { } }, + ["TinctureRarityPerToxicityUnique__1"] = { affix = "", "(1-5)% increased Rarity of Items found per Mana Burn, up to a maximum of 100%", statOrder = { 10866 }, level = 1, group = "TinctureRarityPerToxicity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { } }, + ["TincturePenetrationPerToxicityUnique__1"] = { affix = "", "Melee Weapon Damage Penetrates 1% Elemental Resistances per Mana Burn, up to a maximum of 200%", statOrder = { 10901 }, level = 1, group = "TincturePenetrationPerToxicity", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { } }, + ["TinctureCullingStrikeUnique__1"] = { affix = "", "Melee Weapon Attacks have Culling Strike", statOrder = { 10885 }, level = 1, group = "WeaponCullingStrike", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { } }, + ["TinctureCoverInAshOnFullLifeUnique__1"] = { affix = "", "Cover Full Life Enemies in Ash for (4-10) seconds on Melee Weapon Hit", statOrder = { 10937 }, level = 1, group = "WeaponCoverInAshVsFullLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { } }, + ["TinctureRefreshIgniteDurationUnique__1"] = { affix = "", "(15-25)% chance to refresh Ignite Duration on Melee Weapon Hit", statOrder = { 10914 }, level = 1, group = "RefreshIgniteDurationOnWeaponHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { } }, + ["TinctureFireDamageTakenPerToxicityUnique__1"] = { affix = "", "-1 Fire Damage taken from Hits per Mana Burn", statOrder = { 10888 }, level = 1, group = "TinctureFireDamageTakenPerToxicity", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { } }, ["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] = { "" }, } }, + ["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" }, } }, ["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" }, } }, @@ -7944,9 +7945,9 @@ return { ["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" }, } }, + ["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 = { [1509134228] = { "(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 = { [1509134228] = { "(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 = { [1509134228] = { "(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" }, } }, @@ -7973,8 +7974,8 @@ return { ["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" }, } }, + ["VillageChanceToFreeze"] = { affix = "", "(10-15)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "(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 = { [2309614417] = { "(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" }, } }, @@ -8017,7 +8018,7 @@ return { ["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" }, } }, + ["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 = { [1509134228] = { "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" }, } }, @@ -8106,7 +8107,7 @@ return { ["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" }, } }, + ["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 = { [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" }, } }, @@ -8130,7 +8131,7 @@ return { ["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" }, } }, + ["GrantsSummonVoidSpawnUnique__1"] = { affix = "", "Trigger Level 20 Summon Void Spawn every 4 seconds", statOrder = { 731 }, level = 97, group = "GrantSummonVoidSpawnEvery4Seconds", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [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" }, } }, @@ -8178,7 +8179,7 @@ return { ["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" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe10"] = { affix = "", "(120-180)% increased Physical Damage", statOrder = { 1232 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(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" }, } }, @@ -8189,16 +8190,16 @@ return { ["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" }, } }, + ["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 = { [30342650] = { "(5-10) to (20-25) 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" }, } }, - ["FlaskChargesUsedUnique___12"] = { affix = "", "(20-100)% increased Charges per use", statOrder = { 846 }, level = 42, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(20-100)% increased Charges per use" }, } }, - ["FlaskExtraChargesUnique__4"] = { affix = "", "+60 to Maximum Charges", statOrder = { 837 }, level = 42, group = "FlaskExtraMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+60 to Maximum Charges" }, } }, + ["FlaskChargesUsedUnique___12"] = { affix = "", "(20-100)% increased Charges per use", statOrder = { 846 }, level = 42, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(20-100)% increased Charges per use" }, } }, + ["FlaskExtraChargesUnique__4"] = { affix = "", "+60 to Maximum Charges", statOrder = { 837 }, level = 42, group = "FlaskExtraMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1437957544] = { "+60 to Maximum Charges" }, } }, ["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" }, } }, + ["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 = { [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" }, } }, @@ -8257,7 +8258,7 @@ return { ["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" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__51"] = { affix = "", "(200-300)% increased Physical Damage", statOrder = { 1232 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(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" }, } }, @@ -8365,5 +8366,5 @@ return { ["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" }, } }, - ["UniqueJewelAlternateTreeInRadiusKalguur"] = { affix = "", "Remembrancing (100-8000) songworthy deeds by the line of Vorana", "Passives in radius are Conquered by the Kalguur", "Historic", statOrder = { 10, 10.1, 10713 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3802517517] = { "" }, [2778427270] = { "" }, [366541484] = { "" }, [3004613329] = { "" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusKalguur"] = { affix = "", "Remembrancing (100-8000) songworthy deeds by the line of Vorana", "Passives in radius are Conquered by the Kalguur", "Historic", statOrder = { 10, 10.1, 10713 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Remembrancing (100-8000) songworthy deeds by the line of Vorana", "Passives in radius are Conquered by the Kalguur" }, [3787436548] = { "Historic" }, } }, } \ No newline at end of file diff --git a/src/Data/ModJewel.lua b/src/Data/ModJewel.lua index 4adbd3ae2cf..52d1c73c8f1 100644 --- a/src/Data/ModJewel.lua +++ b/src/Data/ModJewel.lua @@ -206,7 +206,7 @@ return { ["AvoidFreezeJewel"] = { type = "Suffix", affix = "Thawing FIX ME", "(6-8)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "AvoidFreezeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(6-8)% chance to Avoid being Frozen" }, } }, ["AvoidChillJewel"] = { type = "Suffix", affix = "Heating FIX ME", "(6-8)% chance to Avoid being Chilled", statOrder = { 1844 }, level = 1, group = "AvoidChillForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(6-8)% chance to Avoid being Chilled" }, } }, ["AvoidStunJewel"] = { type = "Suffix", affix = "FIX ME", "(6-8)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStunForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(6-8)% chance to Avoid being Stunned" }, } }, - ["ChanceToFreezeJewel"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreezeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(2-3)% chance to Freeze" }, } }, + ["ChanceToFreezeJewel"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreezeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "(2-3)% chance to Freeze" }, } }, ["ChanceToIgniteJewel_"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgniteForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(2-3)% chance to Ignite" }, } }, ["ChanceToShockJewel"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShockForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(2-3)% chance to Shock" }, } }, ["EnduranceChargeDurationJewel"] = { type = "Suffix", affix = "of Endurance", "(10-14)% increased Endurance Charge Duration", statOrder = { 2125 }, level = 1, group = "EnduranceChargeDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "(10-14)% increased Endurance Charge Duration" }, } }, @@ -231,11 +231,11 @@ return { ["BleedDurationOnYouJewel"] = { type = "Suffix", affix = "of Stemming", "(30-35)% reduced Bleed Duration on you", statOrder = { 9970 }, level = 1, group = "ReducedBleedDuration", weightKey = { "default", }, weightVal = { 250 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(30-35)% reduced Bleed Duration on you" }, } }, ["ManaReservationEfficiencyJewel"] = { type = "Prefix", affix = "Cerebral", "(2-3)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 250 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(2-3)% increased Mana Reservation Efficiency of Skills" }, } }, ["FlaskDurationJewel"] = { type = "Prefix", affix = "Prolonging", "(6-10)% increased Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { "default", }, weightVal = { 250 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(6-10)% increased Flask Effect Duration" }, } }, - ["FreezeChanceAndDurationJewel"] = { type = "Suffix", affix = "of Freezing", "(12-16)% increased Freeze Duration on Enemies", "(3-5)% chance to Freeze", statOrder = { 1858, 2029 }, level = 1, group = "FreezeChanceAndDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1073942215] = { "(12-16)% increased Freeze Duration on Enemies" }, [44571480] = { "(3-5)% chance to Freeze" }, } }, + ["FreezeChanceAndDurationJewel"] = { type = "Suffix", affix = "of Freezing", "(12-16)% increased Freeze Duration on Enemies", "(3-5)% chance to Freeze", statOrder = { 1858, 2029 }, level = 1, group = "FreezeChanceAndDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1073942215] = { "(12-16)% increased Freeze Duration on Enemies" }, [2309614417] = { "(3-5)% chance to Freeze" }, } }, ["ShockChanceAndDurationJewel"] = { type = "Suffix", affix = "of Shocking", "(12-16)% increased Shock Duration on Enemies", "(3-5)% chance to Shock", statOrder = { 1857, 2033 }, level = 1, group = "ShockChanceAndDurationForJewel", weightKey = { "not_int", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(12-16)% increased Shock Duration on Enemies" }, [1538773178] = { "(3-5)% chance to Shock" }, } }, ["IgniteChanceAndDurationJewel"] = { type = "Suffix", affix = "of Burning", "(6-8)% increased Ignite Duration on Enemies", "(3-5)% chance to Ignite", statOrder = { 1859, 2026 }, level = 1, group = "IgniteChanceAndDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(3-5)% chance to Ignite" }, [1086147743] = { "(6-8)% increased Ignite Duration on Enemies" }, } }, ["PoisonChanceAndDurationForJewel"] = { type = "Suffix", affix = "of Poisoning", "(6-8)% increased Poison Duration", "(3-5)% chance to Poison on Hit", statOrder = { 3170, 3173 }, level = 1, group = "PoisonChanceAndDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 250, 350 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(6-8)% increased Poison Duration" }, [795138349] = { "(3-5)% chance to Poison on Hit" }, } }, - ["BleedChanceAndDurationForJewel__"] = { type = "Suffix", affix = "of Bleeding", "Attacks have (3-5)% chance to cause Bleeding", "(12-16)% increased Bleeding Duration", statOrder = { 2489, 4994 }, level = 1, group = "BleedChanceAndDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(12-16)% increased Bleeding Duration" }, [3204820200] = { "Attacks have (3-5)% chance to cause Bleeding" }, } }, + ["BleedChanceAndDurationForJewel__"] = { type = "Suffix", affix = "of Bleeding", "Attacks have (3-5)% chance to cause Bleeding", "(12-16)% increased Bleeding Duration", statOrder = { 2489, 4994 }, level = 1, group = "BleedChanceAndDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have (3-5)% chance to cause Bleeding" }, [1459321413] = { "(12-16)% increased Bleeding Duration" }, } }, ["ImpaleChanceForJewel_"] = { type = "Suffix", affix = "of Impaling", "(5-7)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 1, group = "ImpaleChanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(5-7)% chance to Impale Enemies on Hit with Attacks" }, } }, ["PoisonDamageForJewel"] = { type = "Suffix", affix = "of Venom", "(16-20)% increased Damage with Poison", statOrder = { 3181 }, level = 1, group = "PoisonDamageForJewel", weightKey = { "not_dex", "default", }, weightVal = { 250, 500 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(16-20)% increased Damage with Poison" }, } }, ["BleedDamageForJewel"] = { type = "Suffix", affix = "of Haemophilia", "(16-20)% increased Damage with Bleeding", statOrder = { 3169 }, level = 1, group = "BleedDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 500 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(16-20)% increased Damage with Bleeding" }, } }, @@ -325,7 +325,7 @@ return { ["DelveArmourEnergyShieldRegen"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second", statOrder = { 2646 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of Energy Shield per second" }, } }, ["DelveArmourEnergyShieldLeechSpells_"] = { type = "Suffix", affix = "of the Underground", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1722 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [11106713] = { "0.3% of Spell Damage Leeched as Energy Shield" }, } }, ["DelveArmourSpellBlock__"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "gloves", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(3-4)% Chance to Block Spell Damage" }, } }, - ["DelveArmourDodgeAndSpellDodge_"] = { type = "Suffix", affix = "of the Underground", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToDodgeAndSpellDodge", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(4-6)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } }, + ["DelveArmourDodgeAndSpellDodge_"] = { type = "Suffix", affix = "of the Underground", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToDodgeAndSpellDodge", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(4-6)% chance to Suppress Spell Damage" }, } }, ["DelveArmourBlindChance"] = { type = "Suffix", affix = "of the Underground", "(4-6)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2221570601] = { "(4-6)% Global chance to Blind Enemies on hit" }, } }, ["DelveArmourEvasionOnFullLife"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Global Evasion Rating when on Full Life", statOrder = { 6497 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [88817332] = { "(25-50)% increased Global Evasion Rating when on Full Life" }, } }, ["DelveArmourDoubleArmourEffectOnHit"] = { type = "Suffix", affix = "of the Underground", "(10-20)% chance to Defend with 200% of Armour", statOrder = { 5671 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [327253797] = { "(10-20)% chance to Defend with 200% of Armour" }, } }, @@ -381,8 +381,8 @@ return { ["DelveRingManaCostReduction1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% reduced Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(4-6)% reduced Mana Cost of Skills" }, } }, ["DelveQuiverIncreasedMana1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(20-30)% increased maximum Mana" }, } }, ["DelveJewelDamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of the Underground", "(2-3)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(2-3)% of Damage taken Recouped as Mana" }, } }, - ["DelveWeaponChanceToGainOnslaughtOnKill1h1_"] = { type = "Suffix", affix = "of the Underground", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "10% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["DelveWeaponChanceToGainOnslaughtOnKill2h1"] = { type = "Suffix", affix = "of the Underground", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "20% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["DelveWeaponChanceToGainOnslaughtOnKill1h1_"] = { type = "Suffix", affix = "of the Underground", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [3023957681] = { "10% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["DelveWeaponChanceToGainOnslaughtOnKill2h1"] = { type = "Suffix", affix = "of the Underground", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { }, tradeHashes = { [3023957681] = { "20% chance to gain Onslaught for 4 seconds on Kill" }, } }, ["DelveBodyFrenzyChargeWhenHit1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain a Frenzy Charge when Hit", statOrder = { 4530 }, level = 1, group = "FrenzyChargeWhenHit", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [881914531] = { "(15-20)% chance to gain a Frenzy Charge when Hit" }, } }, ["DelveBootsMovementSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9419 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, tradeHashes = { [3178542354] = { "(4-6)% increased Movement Speed if you've Hit an Enemy Recently" }, } }, ["DelveGlovesAttackAndCastSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently", statOrder = { 4815 }, level = 1, group = "AttackAndCastSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [1483753325] = { "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently" }, } }, diff --git a/src/Data/ModJewelAbyss.lua b/src/Data/ModJewelAbyss.lua index 31a1b2e7bfb..e2be47bc948 100644 --- a/src/Data/ModJewelAbyss.lua +++ b/src/Data/ModJewelAbyss.lua @@ -537,8 +537,8 @@ return { ["AbyssSpellDodgeAndDodgeChanceIfHitRecentlyJewel1"] = { type = "Suffix", affix = "of Readiness", "+2% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5651 }, level = 1, group = "SpellBlockChanceIfHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 500, 250, 250, 0 }, modTags = { "block" }, tradeHashes = { [1101206134] = { "+2% Chance to Block Spell Damage if you were Damaged by a Hit Recently" }, } }, ["AbyssMovementSpeedIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Raider", "(2-4)% increased Movement Speed if you've Killed Recently", statOrder = { 4261 }, level = 1, group = "MovementSpeedIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 500, 250, 0, 0 }, modTags = { "speed" }, tradeHashes = { [279227559] = { "(2-4)% increased Movement Speed if you've Killed Recently" }, } }, ["AbyssChanceToBlockIfDamagedRecentlyJewel1_"] = { type = "Suffix", affix = "of Guarding", "+(3-4)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrder = { 3216 }, level = 1, group = "ChanceToBlockIfDamagedRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 250, 0 }, modTags = { "block" }, tradeHashes = { [852195286] = { "+(3-4)% Chance to Block Attack Damage if you were Damaged by a Hit Recently" }, } }, - ["AbyssChanceToGainOnslaughtOnKillJewel1"] = { type = "Suffix", affix = "of Onslaught", "(3-5)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 50, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "(3-5)% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["AbyssChanceToGainOnslaughtOnKillJewel2"] = { type = "Suffix", affix = "of Onslaught", "(6-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 80, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "(6-8)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["AbyssChanceToGainOnslaughtOnKillJewel1"] = { type = "Suffix", affix = "of Onslaught", "(3-5)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 50, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3023957681] = { "(3-5)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["AbyssChanceToGainOnslaughtOnKillJewel2"] = { type = "Suffix", affix = "of Onslaught", "(6-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 80, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3023957681] = { "(6-8)% chance to gain Onslaught for 4 seconds on Kill" }, } }, ["AbyssChancetoGainPhasingOnKillJewel1"] = { type = "Suffix", affix = "of Phasing", "(3-5)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 50, group = "ChancetoGainPhasingOnKill", weightKey = { "abyss_jewel_ranged", "abyss_jewel_caster", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2918708827] = { "(3-5)% chance to gain Phasing for 4 seconds on Kill" }, } }, ["AbyssChancetoGainPhasingOnKillJewel2"] = { type = "Suffix", affix = "of Phasing", "(6-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 80, group = "ChancetoGainPhasingOnKill", weightKey = { "abyss_jewel_ranged", "abyss_jewel_caster", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2918708827] = { "(6-8)% chance to gain Phasing for 4 seconds on Kill" }, } }, ["AbyssChanceToGainUnholyMightOnKillAbyssJewel1"] = { type = "Suffix", affix = "of Unholy Might", "(2-3)% chance to Gain Unholy Might for 4 seconds on Melee Kill", statOrder = { 3083 }, level = 60, group = "ChanceToGainUnholyMightOnKillAbyss", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3166317791] = { "(2-3)% chance to Gain Unholy Might for 4 seconds on Melee Kill" }, } }, @@ -626,7 +626,7 @@ return { ["DelveArmourEnergyShieldRegen"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second", statOrder = { 2646 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of Energy Shield per second" }, } }, ["DelveArmourEnergyShieldLeechSpells_"] = { type = "Suffix", affix = "of the Underground", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1722 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [11106713] = { "0.3% of Spell Damage Leeched as Energy Shield" }, } }, ["DelveArmourSpellBlock__"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "gloves", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(3-4)% Chance to Block Spell Damage" }, } }, - ["DelveArmourDodgeAndSpellDodge_"] = { type = "Suffix", affix = "of the Underground", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToDodgeAndSpellDodge", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(4-6)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } }, + ["DelveArmourDodgeAndSpellDodge_"] = { type = "Suffix", affix = "of the Underground", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToDodgeAndSpellDodge", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(4-6)% chance to Suppress Spell Damage" }, } }, ["DelveArmourBlindChance"] = { type = "Suffix", affix = "of the Underground", "(4-6)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2221570601] = { "(4-6)% Global chance to Blind Enemies on hit" }, } }, ["DelveArmourEvasionOnFullLife"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Global Evasion Rating when on Full Life", statOrder = { 6497 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [88817332] = { "(25-50)% increased Global Evasion Rating when on Full Life" }, } }, ["DelveArmourDoubleArmourEffectOnHit"] = { type = "Suffix", affix = "of the Underground", "(10-20)% chance to Defend with 200% of Armour", statOrder = { 5671 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [327253797] = { "(10-20)% chance to Defend with 200% of Armour" }, } }, @@ -682,8 +682,8 @@ return { ["DelveRingManaCostReduction1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% reduced Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(4-6)% reduced Mana Cost of Skills" }, } }, ["DelveQuiverIncreasedMana1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(20-30)% increased maximum Mana" }, } }, ["DelveJewelDamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of the Underground", "(2-3)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(2-3)% of Damage taken Recouped as Mana" }, } }, - ["DelveWeaponChanceToGainOnslaughtOnKill1h1_"] = { type = "Suffix", affix = "of the Underground", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "10% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["DelveWeaponChanceToGainOnslaughtOnKill2h1"] = { type = "Suffix", affix = "of the Underground", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "20% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["DelveWeaponChanceToGainOnslaughtOnKill1h1_"] = { type = "Suffix", affix = "of the Underground", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [3023957681] = { "10% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["DelveWeaponChanceToGainOnslaughtOnKill2h1"] = { type = "Suffix", affix = "of the Underground", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { }, tradeHashes = { [3023957681] = { "20% chance to gain Onslaught for 4 seconds on Kill" }, } }, ["DelveBodyFrenzyChargeWhenHit1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain a Frenzy Charge when Hit", statOrder = { 4530 }, level = 1, group = "FrenzyChargeWhenHit", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [881914531] = { "(15-20)% chance to gain a Frenzy Charge when Hit" }, } }, ["DelveBootsMovementSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9419 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, tradeHashes = { [3178542354] = { "(4-6)% increased Movement Speed if you've Hit an Enemy Recently" }, } }, ["DelveGlovesAttackAndCastSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently", statOrder = { 4815 }, level = 1, group = "AttackAndCastSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [1483753325] = { "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently" }, } }, diff --git a/src/Data/ModNecropolis.lua b/src/Data/ModNecropolis.lua index f644f1d8f11..9e76f7465d8 100644 --- a/src/Data/ModNecropolis.lua +++ b/src/Data/ModNecropolis.lua @@ -45,7 +45,7 @@ return { ["NecropolisCraftingCriticalStrikeMultiplier"] = { type = "Suffix", affix = "of Haunting", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 24, group = "CriticalStrikeMultiplier", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-25)% to Global Critical Strike Multiplier" }, } }, ["NecropolisCraftingPoisonOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Poison on Hit", statOrder = { 3173 }, level = 16, group = "PoisonOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, tradeHashes = { [795138349] = { "(15-25)% chance to Poison on Hit" }, } }, ["NecropolisCraftingPoisonDuration"] = { type = "Suffix", affix = "of Haunting", "(12-20)% increased Poison Duration", statOrder = { 3170 }, level = 38, group = "PoisonDuration", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(12-20)% increased Poison Duration" }, } }, - ["NecropolisCraftingChanceToBleed"] = { type = "Suffix", affix = "of Haunting", "Attacks have (15-25)% chance to cause Bleeding", statOrder = { 2489 }, level = 16, group = "ChanceToBleed", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have (15-25)% chance to cause Bleeding" }, } }, + ["NecropolisCraftingChanceToBleed"] = { type = "Suffix", affix = "of Haunting", "Attacks have (15-25)% chance to cause Bleeding", statOrder = { 2489 }, level = 16, group = "ChanceToBleed", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have (15-25)% chance to cause Bleeding" }, } }, ["NecropolisCraftingFasterBleedDamage"] = { type = "Suffix", affix = "of Haunting", "Bleeding you inflict deals Damage (12-20)% faster", statOrder = { 6545 }, level = 38, group = "FasterBleedDamage", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "physical_damage", "bleed", "necropolis_exclusive_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (12-20)% faster" }, } }, ["NecropolisCraftingGlobalChanceToBlindOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 16, group = "GlobalChanceToBlindOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, tradeHashes = { [2221570601] = { "(15-25)% Global chance to Blind Enemies on hit" }, } }, ["NecropolisCraftingGlobalMaimOnHit"] = { type = "Suffix", affix = "of Haunting", "Attacks have (15-25)% chance to Maim on Hit", statOrder = { 8155 }, level = 34, group = "GlobalMaimOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have (15-25)% chance to Maim on Hit" }, } }, diff --git a/src/Data/ModScourge.lua b/src/Data/ModScourge.lua index e7e0f5e5229..bd1388c8032 100644 --- a/src/Data/ModScourge.lua +++ b/src/Data/ModScourge.lua @@ -208,10 +208,10 @@ return { ["HellscapeUpsideChanceToSuppressSpells2"] = { type = "ScourgeUpside", affix = "", "+(5-6)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(5-6)% chance to Suppress Spell Damage" }, } }, ["HellscapeUpsideChanceToSuppressSpells3_"] = { type = "ScourgeUpside", affix = "", "+(7-8)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(7-8)% chance to Suppress Spell Damage" }, } }, ["HellscapeUpsideChanceToSuppressSpells4_"] = { type = "ScourgeUpside", affix = "", "+(9-10)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(9-10)% chance to Suppress Spell Damage" }, } }, - ["HellscapeUpsideAttackerTakesDamageNoRange1_"] = { type = "ScourgeUpside", affix = "", "Reflects (20-40) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (20-40) Physical Damage to Melee Attackers" }, } }, - ["HellscapeUpsideAttackerTakesDamageNoRange2_"] = { type = "ScourgeUpside", affix = "", "Reflects (41-60) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 45, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (41-60) Physical Damage to Melee Attackers" }, } }, - ["HellscapeUpsideAttackerTakesDamageNoRange3"] = { type = "ScourgeUpside", affix = "", "Reflects (61-80) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 68, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (61-80) Physical Damage to Melee Attackers" }, } }, - ["HellscapeUpsideAttackerTakesDamageNoRange4"] = { type = "ScourgeUpside", affix = "", "Reflects (81-100) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 68, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (81-100) Physical Damage to Melee Attackers" }, } }, + ["HellscapeUpsideAttackerTakesDamageNoRange1_"] = { type = "ScourgeUpside", affix = "", "Reflects (20-40) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (20-40) Physical Damage to Melee Attackers" }, } }, + ["HellscapeUpsideAttackerTakesDamageNoRange2_"] = { type = "ScourgeUpside", affix = "", "Reflects (41-60) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 45, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (41-60) Physical Damage to Melee Attackers" }, } }, + ["HellscapeUpsideAttackerTakesDamageNoRange3"] = { type = "ScourgeUpside", affix = "", "Reflects (61-80) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 68, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (61-80) Physical Damage to Melee Attackers" }, } }, + ["HellscapeUpsideAttackerTakesDamageNoRange4"] = { type = "ScourgeUpside", affix = "", "Reflects (81-100) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 68, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (81-100) Physical Damage to Melee Attackers" }, } }, ["HellscapeUpsideLocalColdDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (10-13) to (18-23) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (10-13) to (18-23) Cold Damage" }, } }, ["HellscapeUpsideLocalColdDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (19-24) to (28-33) Cold Damage", statOrder = { 1371 }, level = 45, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (19-24) to (28-33) Cold Damage" }, } }, ["HellscapeUpsideLocalColdDamage1h3__"] = { type = "ScourgeUpside", affix = "", "Adds (27-33) to (38-43) Cold Damage", statOrder = { 1371 }, level = 68, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (27-33) to (38-43) Cold Damage" }, } }, @@ -473,8 +473,8 @@ return { ["HellscapeUpsideGlobalIncreaseColdSpellSkillGemLevel2h"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Cold Spell Skill Gems", statOrder = { 1611 }, level = 68, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skill Gems" }, } }, ["HellscapeUpsideGlobalIncreasePhysicalSpellSkillGemLevel1h__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Physical Spell Skill Gems", statOrder = { 1609 }, level = 68, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skill Gems" }, } }, ["HellscapeUpsideGlobalIncreasePhysicalSpellSkillGemLevel2h"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Physical Spell Skill Gems", statOrder = { 1609 }, level = 68, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+2 to Level of all Physical Spell Skill Gems" }, } }, - ["HellscapeUpsideAdditionalRaisedZombie1_"] = { type = "ScourgeUpside", affix = "", "+1 to maximum number of Raised Zombies", statOrder = { 2160 }, level = 45, group = "MaximumZombieCount", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, } }, - ["HellscapeUpsideAdditionalSkeleton1__"] = { type = "ScourgeUpside", affix = "", "+1 to maximum number of Skeletons", statOrder = { 2162 }, level = 45, group = "MaximumSkeletonCount", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "+1 to maximum number of Skeletons" }, } }, + ["HellscapeUpsideAdditionalRaisedZombie1_"] = { type = "ScourgeUpside", affix = "", "+1 to maximum number of Raised Zombies", statOrder = { 2160 }, level = 45, group = "MaximumZombieCount", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [966747987] = { "+1 to maximum number of Raised Zombies" }, } }, + ["HellscapeUpsideAdditionalSkeleton1__"] = { type = "ScourgeUpside", affix = "", "+1 to maximum number of Skeletons", statOrder = { 2162 }, level = 45, group = "MaximumSkeletonCount", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [1225383362] = { "+1 to maximum number of Skeletons" }, } }, ["HellscapeUpsideWeaponRange1"] = { type = "ScourgeUpside", affix = "", "+0.1 metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.1 metres to Weapon Range" }, } }, ["HellscapeUpsideWeaponRange2"] = { type = "ScourgeUpside", affix = "", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 45, group = "LocalMeleeWeaponRange", weightKey = { "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, ["HellscapeUpsideWeaponRange3"] = { type = "ScourgeUpside", affix = "", "+0.3 metres to Weapon Range", statOrder = { 2745 }, level = 68, group = "LocalMeleeWeaponRange", weightKey = { "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.3 metres to Weapon Range" }, } }, @@ -568,12 +568,12 @@ return { ["HellscapeUpsideAdditionalStrength2"] = { type = "ScourgeUpside", affix = "", "+(24-27) to Strength", statOrder = { 1177 }, level = 45, group = "StrengthImplicit", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(24-27) to Strength" }, } }, ["HellscapeUpsideAdditionalStrength3"] = { type = "ScourgeUpside", affix = "", "+(28-31) to Strength", statOrder = { 1177 }, level = 68, group = "StrengthImplicit", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(28-31) to Strength" }, } }, ["HellscapeUpsideAdditionalStrength4"] = { type = "ScourgeUpside", affix = "", "+(32-35) to Strength", statOrder = { 1177 }, level = 68, group = "StrengthImplicit", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(32-35) to Strength" }, } }, - ["HellscapeUpsideChanceToFreeze1h2"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to Freeze", statOrder = { 2029 }, level = 45, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(5-6)% chance to Freeze" }, } }, - ["HellscapeUpsideChanceToFreeze1h3"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Freeze", statOrder = { 2029 }, level = 68, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(7-8)% chance to Freeze" }, } }, - ["HellscapeUpsideChanceToFreeze1h4_"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Freeze", statOrder = { 2029 }, level = 68, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(9-10)% chance to Freeze" }, } }, - ["HellscapeUpsideChanceToFreeze2h2"] = { type = "ScourgeUpside", affix = "", "(7-9)% chance to Freeze", statOrder = { 2029 }, level = 45, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(7-9)% chance to Freeze" }, } }, - ["HellscapeUpsideChanceToFreeze2h3__"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to Freeze", statOrder = { 2029 }, level = 68, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(10-12)% chance to Freeze" }, } }, - ["HellscapeUpsideChanceToFreeze2h4"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to Freeze", statOrder = { 2029 }, level = 68, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(13-15)% chance to Freeze" }, } }, + ["HellscapeUpsideChanceToFreeze1h2"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to Freeze", statOrder = { 2029 }, level = 45, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "(5-6)% chance to Freeze" }, } }, + ["HellscapeUpsideChanceToFreeze1h3"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Freeze", statOrder = { 2029 }, level = 68, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "(7-8)% chance to Freeze" }, } }, + ["HellscapeUpsideChanceToFreeze1h4_"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Freeze", statOrder = { 2029 }, level = 68, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "(9-10)% chance to Freeze" }, } }, + ["HellscapeUpsideChanceToFreeze2h2"] = { type = "ScourgeUpside", affix = "", "(7-9)% chance to Freeze", statOrder = { 2029 }, level = 45, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "(7-9)% chance to Freeze" }, } }, + ["HellscapeUpsideChanceToFreeze2h3__"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to Freeze", statOrder = { 2029 }, level = 68, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "(10-12)% chance to Freeze" }, } }, + ["HellscapeUpsideChanceToFreeze2h4"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to Freeze", statOrder = { 2029 }, level = 68, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "(13-15)% chance to Freeze" }, } }, ["HellscapeUpsideChanceToIgnite1h2"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to Ignite", statOrder = { 2026 }, level = 45, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(5-6)% chance to Ignite" }, } }, ["HellscapeUpsideChanceToIgnite1h3_"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Ignite", statOrder = { 2026 }, level = 68, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(7-8)% chance to Ignite" }, } }, ["HellscapeUpsideChanceToIgnite1h4___"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Ignite", statOrder = { 2026 }, level = 68, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(9-10)% chance to Ignite" }, } }, @@ -586,9 +586,9 @@ return { ["HellscapeUpsideChanceToShock2h2"] = { type = "ScourgeUpside", affix = "", "(7-9)% chance to Shock", statOrder = { 2033 }, level = 45, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(7-9)% chance to Shock" }, } }, ["HellscapeUpsideChanceToShock2h3"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to Shock", statOrder = { 2033 }, level = 68, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(10-12)% chance to Shock" }, } }, ["HellscapeUpsideChanceToShock2h4"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to Shock", statOrder = { 2033 }, level = 68, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(13-15)% chance to Shock" }, } }, - ["HellscapeUpsideChanceToBleed2__"] = { type = "ScourgeUpside", affix = "", "Attacks have (12-14)% chance to cause Bleeding", statOrder = { 2489 }, level = 45, group = "ChanceToBleed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have (12-14)% chance to cause Bleeding" }, } }, - ["HellscapeUpsideChanceToBleed3_"] = { type = "ScourgeUpside", affix = "", "Attacks have (15-17)% chance to cause Bleeding", statOrder = { 2489 }, level = 68, group = "ChanceToBleed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have (15-17)% chance to cause Bleeding" }, } }, - ["HellscapeUpsideChanceToBleed4"] = { type = "ScourgeUpside", affix = "", "Attacks have (18-20)% chance to cause Bleeding", statOrder = { 2489 }, level = 68, group = "ChanceToBleed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have (18-20)% chance to cause Bleeding" }, } }, + ["HellscapeUpsideChanceToBleed2__"] = { type = "ScourgeUpside", affix = "", "Attacks have (12-14)% chance to cause Bleeding", statOrder = { 2489 }, level = 45, group = "ChanceToBleed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have (12-14)% chance to cause Bleeding" }, } }, + ["HellscapeUpsideChanceToBleed3_"] = { type = "ScourgeUpside", affix = "", "Attacks have (15-17)% chance to cause Bleeding", statOrder = { 2489 }, level = 68, group = "ChanceToBleed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have (15-17)% chance to cause Bleeding" }, } }, + ["HellscapeUpsideChanceToBleed4"] = { type = "ScourgeUpside", affix = "", "Attacks have (18-20)% chance to cause Bleeding", statOrder = { 2489 }, level = 68, group = "ChanceToBleed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have (18-20)% chance to cause Bleeding" }, } }, ["HellscapeUpsideChanceToPoison2"] = { type = "ScourgeUpside", affix = "", "(12-14)% chance to Poison on Hit", statOrder = { 3173 }, level = 45, group = "PoisonOnHit", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "(12-14)% chance to Poison on Hit" }, } }, ["HellscapeUpsideChanceToPoison3"] = { type = "ScourgeUpside", affix = "", "(15-17)% chance to Poison on Hit", statOrder = { 3173 }, level = 68, group = "PoisonOnHit", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "(15-17)% chance to Poison on Hit" }, } }, ["HellscapeUpsideChanceToPoison4"] = { type = "ScourgeUpside", affix = "", "(18-20)% chance to Poison on Hit", statOrder = { 3173 }, level = 68, group = "PoisonOnHit", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "(18-20)% chance to Poison on Hit" }, } }, @@ -608,9 +608,9 @@ return { ["HellscapeUpsideReducedReflectedPhysicalDamage4_"] = { type = "ScourgeUpside", affix = "", "You and your Minions take (51-60)% reduced Reflected Physical Damage", statOrder = { 9671 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, tradeHashes = { [129035625] = { "You and your Minions take (51-60)% reduced Reflected Physical Damage" }, } }, ["HellscapeUpsideReducedReflectedElementalDamage3_____"] = { type = "ScourgeUpside", affix = "", "You and your Minions take (41-50)% reduced Reflected Elemental Damage", statOrder = { 6335 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take (41-50)% reduced Reflected Elemental Damage" }, } }, ["HellscapeUpsideReducedReflectedElementalDamage4"] = { type = "ScourgeUpside", affix = "", "You and your Minions take (51-60)% reduced Reflected Elemental Damage", statOrder = { 6335 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take (51-60)% reduced Reflected Elemental Damage" }, } }, - ["HellscapeUpsideChanceToGainOnslaughtOnKill2__"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 45, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots", "quiver", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "(5-6)% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["HellscapeUpsideChanceToGainOnslaughtOnKill3"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 68, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots", "quiver", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "(7-8)% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["HellscapeUpsideChanceToGainOnslaughtOnKill4_"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 68, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots", "quiver", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "(9-10)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["HellscapeUpsideChanceToGainOnslaughtOnKill2__"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 45, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots", "quiver", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHashes = { [3023957681] = { "(5-6)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["HellscapeUpsideChanceToGainOnslaughtOnKill3"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 68, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots", "quiver", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHashes = { [3023957681] = { "(7-8)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["HellscapeUpsideChanceToGainOnslaughtOnKill4_"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 68, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots", "quiver", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHashes = { [3023957681] = { "(9-10)% chance to gain Onslaught for 4 seconds on Kill" }, } }, ["HellscapeUpsideChanceToGainPhasingOnKill2"] = { type = "ScourgeUpside", affix = "", "(11-15)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 45, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2918708827] = { "(11-15)% chance to gain Phasing for 4 seconds on Kill" }, } }, ["HellscapeUpsideChanceToGainPhasingOnKill3"] = { type = "ScourgeUpside", affix = "", "(16-20)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2918708827] = { "(16-20)% chance to gain Phasing for 4 seconds on Kill" }, } }, ["HellscapeUpsideChanceToGainPhasingOnKill4"] = { type = "ScourgeUpside", affix = "", "(21-25)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2918708827] = { "(21-25)% chance to gain Phasing for 4 seconds on Kill" }, } }, @@ -828,12 +828,12 @@ return { ["HellscapeUpsidePhysicalDamageLeechedAsLife4____"] = { type = "ScourgeUpside", affix = "", "(0.41-0.5)% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "(0.41-0.5)% of Physical Damage Leeched as Life" }, } }, ["HellscapeUpsideKeystoneMinionInstability"] = { type = "ScourgeUpside", affix = "", "Minion Instability", statOrder = { 10799 }, level = 68, group = "MinionInstability", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [433293234] = { "Minion Instability" }, } }, ["HellscapeUpsideKeystoneResoluteTechnique"] = { type = "ScourgeUpside", affix = "", "Resolute Technique", statOrder = { 10829 }, level = 68, group = "ResoluteTechnique", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } }, - ["HellscapeUpsideKeystoneBloodMagic"] = { type = "ScourgeUpside", affix = "", "Blood Magic", statOrder = { 10773 }, level = 68, group = "BloodMagic", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, + ["HellscapeUpsideKeystoneBloodMagic"] = { type = "ScourgeUpside", affix = "", "Blood Magic", statOrder = { 10773 }, level = 68, group = "BloodMagic", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, } }, ["HellscapeUpsideKeystonePainAttunement"] = { type = "ScourgeUpside", affix = "", "Pain Attunement", statOrder = { 10801 }, level = 68, group = "PainAttunement", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, ["HellscapeUpsideKeystoneElementalEquilibrium_"] = { type = "ScourgeUpside", affix = "", "Elemental Equilibrium", statOrder = { 10782 }, level = 68, group = "ElementalEquilibrium", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1263158408] = { "Elemental Equilibrium" }, } }, ["HellscapeUpsideKeystoneIronGrip"] = { type = "ScourgeUpside", affix = "", "Iron Grip", statOrder = { 10817 }, level = 68, group = "IronGrip", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [573347393] = { "Iron Grip" }, } }, ["HellscapeUpsideKeystonePointBlank"] = { type = "ScourgeUpside", affix = "", "Point Blank", statOrder = { 10802 }, level = 68, group = "PointBlank", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2896346114] = { "Point Blank" }, } }, - ["HellscapeUpsideKeystoneAcrobatics___"] = { type = "ScourgeUpside", affix = "", "Acrobatics", statOrder = { 10768 }, level = 68, group = "Acrobatics", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { }, tradeHashes = { [223497523] = { "" }, [383557755] = { "Acrobatics" }, } }, + ["HellscapeUpsideKeystoneAcrobatics___"] = { type = "ScourgeUpside", affix = "", "Acrobatics", statOrder = { 10768 }, level = 68, group = "Acrobatics", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { }, tradeHashes = { [383557755] = { "Acrobatics" }, } }, ["HellscapeUpsideKeystoneGhostReaver"] = { type = "ScourgeUpside", affix = "", "Ghost Reaver", statOrder = { 10788 }, level = 68, group = "KeystoneGhostReaver", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [4272248216] = { "Ghost Reaver" }, } }, ["HellscapeUpsideKeystoneVaalPact"] = { type = "ScourgeUpside", affix = "", "Vaal Pact", statOrder = { 10822 }, level = 68, group = "VaalPact", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2257118425] = { "Vaal Pact" }, } }, ["HellscapeUpsideKeystoneElementalOverload"] = { type = "ScourgeUpside", affix = "", "Elemental Overload", statOrder = { 10783 }, level = 68, group = "ElementalOverload", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [3574189159] = { "Elemental Overload" }, } }, @@ -843,7 +843,7 @@ return { ["HellscapeUpsideKeystoneCrimsonDance_"] = { type = "ScourgeUpside", affix = "", "Crimson Dance", statOrder = { 10778 }, level = 68, group = "CrimsonDance", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [300702212] = { "Crimson Dance" }, } }, ["HellscapeUpsideKeystonePerfectAgony_"] = { type = "ScourgeUpside", affix = "", "Perfect Agony", statOrder = { 10769 }, level = 68, group = "PerfectAgony", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [3884934810] = { "Perfect Agony" }, } }, ["HellscapeUpsideKeystoneRunebinder___"] = { type = "ScourgeUpside", affix = "", "Runebinder", statOrder = { 10809 }, level = 68, group = "Runebinder", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "caster" }, tradeHashes = { [4080245957] = { "Runebinder" }, } }, - ["HellscapeUpsideKeystoneMortalConviction_"] = { type = "ScourgeUpside", affix = "", "Blood Magic", statOrder = { 10773 }, level = 68, group = "BloodMagic", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, + ["HellscapeUpsideKeystoneMortalConviction_"] = { type = "ScourgeUpside", affix = "", "Blood Magic", statOrder = { 10773 }, level = 68, group = "BloodMagic", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, } }, ["HellscapeUpsideKeystoneCallToArms"] = { type = "ScourgeUpside", affix = "", "Call to Arms", statOrder = { 10774 }, level = 68, group = "CallToArms", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { }, tradeHashes = { [3292262540] = { "Call to Arms" }, } }, ["HellscapeUpsideKeystoneTheAgnostic_"] = { type = "ScourgeUpside", affix = "", "The Agnostic", statOrder = { 10800 }, level = 68, group = "TheAgnostic", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [462691314] = { "The Agnostic" }, } }, ["HellscapeUpsideKeystoneSupremeEgo_"] = { type = "ScourgeUpside", affix = "", "Supreme Ego", statOrder = { 10818 }, level = 68, group = "SupremeEgo", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1421267186] = { "Supreme Ego" }, } }, @@ -1119,8 +1119,8 @@ return { ["HellscapeDownsideLocalIncreaseSocketedGemLevel"] = { type = "ScourgeDownside", affix = "", "-2 to Level of Socketed Gems", statOrder = { 162 }, level = 68, group = "LocalIncreaseSocketedGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "-2 to Level of Socketed Gems" }, } }, ["HellscapeDownsideGlobalIncreaseSpellSpellSkillGemLevel1h"] = { type = "ScourgeDownside", affix = "", "-2 to Level of all Spell Skill Gems", statOrder = { 1608 }, level = 68, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "dagger", "focus", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "-2 to Level of all Spell Skill Gems" }, } }, ["HellscapeDownsideGlobalIncreaseSpellSpellSkillGemLevel2h"] = { type = "ScourgeDownside", affix = "", "-4 to Level of all Spell Skill Gems", statOrder = { 1608 }, level = 68, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "-4 to Level of all Spell Skill Gems" }, } }, - ["HellscapeDownsideAdditionalRaisedZombie1"] = { type = "ScourgeDownside", affix = "", "-2 to maximum number of Raised Zombies", statOrder = { 2160 }, level = 45, group = "MaximumZombieCount", weightKey = { "boots", "default", }, weightVal = { 200, 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "-2 to maximum number of Raised Zombies" }, } }, - ["HellscapeDownsideAdditionalSkeleton1"] = { type = "ScourgeDownside", affix = "", "-2 to maximum number of Skeletons", statOrder = { 2162 }, level = 45, group = "MaximumSkeletonCount", weightKey = { "boots", "default", }, weightVal = { 200, 0 }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "-2 to maximum number of Skeletons" }, } }, + ["HellscapeDownsideAdditionalRaisedZombie1"] = { type = "ScourgeDownside", affix = "", "-2 to maximum number of Raised Zombies", statOrder = { 2160 }, level = 45, group = "MaximumZombieCount", weightKey = { "boots", "default", }, weightVal = { 200, 0 }, modTags = { "minion" }, tradeHashes = { [966747987] = { "-2 to maximum number of Raised Zombies" }, } }, + ["HellscapeDownsideAdditionalSkeleton1"] = { type = "ScourgeDownside", affix = "", "-2 to maximum number of Skeletons", statOrder = { 2162 }, level = 45, group = "MaximumSkeletonCount", weightKey = { "boots", "default", }, weightVal = { 200, 0 }, modTags = { "minion" }, tradeHashes = { [1225383362] = { "-2 to maximum number of Skeletons" }, } }, ["HellscapeDownsideAreaDamage0___"] = { type = "ScourgeDownside", affix = "", "(24-30)% reduced Area Damage", statOrder = { 2035 }, level = 1, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(24-30)% reduced Area Damage" }, } }, ["HellscapeDownsideAreaDamage1"] = { type = "ScourgeDownside", affix = "", "(33-45)% reduced Area Damage", statOrder = { 2035 }, level = 1, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(33-45)% reduced Area Damage" }, } }, ["HellscapeDownsideAreaDamage2_"] = { type = "ScourgeDownside", affix = "", "(48-60)% reduced Area Damage", statOrder = { 2035 }, level = 45, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(48-60)% reduced Area Damage" }, } }, @@ -1161,7 +1161,7 @@ return { ["HellscapeDownsideFlaskLifeRecoveryRate3_"] = { type = "ScourgeDownside", affix = "", "(30-34)% reduced Life Recovery from Flasks", statOrder = { 2059 }, level = 68, group = "BeltFlaskLifeRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(30-34)% reduced Life Recovery from Flasks" }, } }, ["HellscapeDownsideFlaskManaRecoveryRate2_"] = { type = "ScourgeDownside", affix = "", "(24-28)% reduced Mana Recovery from Flasks", statOrder = { 2060 }, level = 45, group = "BeltFlaskManaRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(24-28)% reduced Mana Recovery from Flasks" }, } }, ["HellscapeDownsideFlaskManaRecoveryRate3___"] = { type = "ScourgeDownside", affix = "", "(30-34)% reduced Mana Recovery from Flasks", statOrder = { 2060 }, level = 68, group = "BeltFlaskManaRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(30-34)% reduced Mana Recovery from Flasks" }, } }, - ["HellscapeDownsideCannotApplyBleed1"] = { type = "ScourgeDownside", affix = "", "Attacks cannot cause Bleeding", statOrder = { 2489 }, level = 68, group = "CannotCauseBleeding", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [129138230] = { "Attacks cannot cause Bleeding" }, } }, + ["HellscapeDownsideCannotApplyBleed1"] = { type = "ScourgeDownside", affix = "", "Attacks cannot cause Bleeding", statOrder = { 2489 }, level = 68, group = "CannotCauseBleeding", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1923879260] = { "Attacks cannot cause Bleeding" }, } }, ["HellscapeDownsideCannotApplyPoison1_"] = { type = "ScourgeDownside", affix = "", "Your Chaos Damage cannot Poison", "Your Physical Damage cannot Poison", statOrder = { 2888, 2890 }, level = 68, group = "CannotCausePoison", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [733138911] = { "Your Physical Damage cannot Poison" }, [2578701544] = { "Your Chaos Damage cannot Poison" }, } }, ["HellscapeDownsideCannotApplyStun1"] = { type = "ScourgeDownside", affix = "", "Your Hits cannot Stun Enemies", statOrder = { 1855 }, level = 68, group = "CannotStun", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [373932729] = { "Your Hits cannot Stun Enemies" }, } }, ["HellscapeDownsideCooldownRecoveryRate3"] = { type = "ScourgeDownside", affix = "", "(12-16)% reduced Cooldown Recovery Rate", statOrder = { 5005 }, level = 68, group = "GlobalCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(12-16)% reduced Cooldown Recovery Rate" }, } }, diff --git a/src/Data/ModSynthesis.lua b/src/Data/ModSynthesis.lua index ae336457cb3..a4e8da316f4 100644 --- a/src/Data/ModSynthesis.lua +++ b/src/Data/ModSynthesis.lua @@ -303,14 +303,14 @@ return { ["SynthesisImplicitAvoidIgnite2"] = { type = "Synthesis", affix = "", "(15-17)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 24, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(15-17)% chance to Avoid being Ignited" }, } }, ["SynthesisImplicitAvoidIgnite3"] = { type = "Synthesis", affix = "", "(18-20)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 36, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(18-20)% chance to Avoid being Ignited" }, } }, ["SynthesisImplicitAvoidIgniteJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 1, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(8-10)% chance to Avoid being Ignited" }, } }, - ["SynthesisImplicitChanceToFreeze1"] = { type = "Synthesis", affix = "", "6% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "6% chance to Freeze" }, } }, - ["SynthesisImplicitChanceToFreeze2"] = { type = "Synthesis", affix = "", "7% chance to Freeze", statOrder = { 2029 }, level = 15, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "7% chance to Freeze" }, } }, - ["SynthesisImplicitChanceToFreeze3"] = { type = "Synthesis", affix = "", "8% chance to Freeze", statOrder = { 2029 }, level = 24, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "8% chance to Freeze" }, } }, - ["SynthesisImplicitChanceToFreezeTwoHand1"] = { type = "Synthesis", affix = "", "(9-10)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(9-10)% chance to Freeze" }, } }, - ["SynthesisImplicitChanceToFreezeTwoHand2"] = { type = "Synthesis", affix = "", "(11-12)% chance to Freeze", statOrder = { 2029 }, level = 15, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(11-12)% chance to Freeze" }, } }, - ["SynthesisImplicitChanceToFreezeTwoHand3"] = { type = "Synthesis", affix = "", "(13-15)% chance to Freeze", statOrder = { 2029 }, level = 24, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(13-15)% chance to Freeze" }, } }, - ["SynthesisImplicitChanceToFreezeJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(1-2)% chance to Freeze" }, } }, - ["SynthesisImplicitChanceToFreezeJewel2"] = { type = "Synthesis", affix = "", "3% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "3% chance to Freeze" }, } }, + ["SynthesisImplicitChanceToFreeze1"] = { type = "Synthesis", affix = "", "6% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "6% chance to Freeze" }, } }, + ["SynthesisImplicitChanceToFreeze2"] = { type = "Synthesis", affix = "", "7% chance to Freeze", statOrder = { 2029 }, level = 15, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "7% chance to Freeze" }, } }, + ["SynthesisImplicitChanceToFreeze3"] = { type = "Synthesis", affix = "", "8% chance to Freeze", statOrder = { 2029 }, level = 24, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "8% chance to Freeze" }, } }, + ["SynthesisImplicitChanceToFreezeTwoHand1"] = { type = "Synthesis", affix = "", "(9-10)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "(9-10)% chance to Freeze" }, } }, + ["SynthesisImplicitChanceToFreezeTwoHand2"] = { type = "Synthesis", affix = "", "(11-12)% chance to Freeze", statOrder = { 2029 }, level = 15, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "(11-12)% chance to Freeze" }, } }, + ["SynthesisImplicitChanceToFreezeTwoHand3"] = { type = "Synthesis", affix = "", "(13-15)% chance to Freeze", statOrder = { 2029 }, level = 24, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "(13-15)% chance to Freeze" }, } }, + ["SynthesisImplicitChanceToFreezeJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "(1-2)% chance to Freeze" }, } }, + ["SynthesisImplicitChanceToFreezeJewel2"] = { type = "Synthesis", affix = "", "3% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "3% chance to Freeze" }, } }, ["SynthesisImplicitFreezeDuration1"] = { type = "Synthesis", affix = "", "(8-10)% increased Freeze Duration on Enemies", statOrder = { 1858 }, level = 36, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "" }, [1073942215] = { "(8-10)% increased Freeze Duration on Enemies" }, } }, ["SynthesisImplicitFreezeDuration2"] = { type = "Synthesis", affix = "", "(12-15)% increased Freeze Duration on Enemies", statOrder = { 1858 }, level = 48, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "" }, [1073942215] = { "(12-15)% increased Freeze Duration on Enemies" }, } }, ["SynthesisImplicitAvoidChill1"] = { type = "Synthesis", affix = "", "(14-16)% chance to Avoid being Chilled", statOrder = { 1844 }, level = 15, group = "AvoidChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(14-16)% chance to Avoid being Chilled" }, } }, @@ -383,8 +383,8 @@ return { ["SynthesisImplicitBleedDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Damage with Bleeding", statOrder = { 3169 }, level = 1, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(2-3)% increased Damage with Bleeding" }, } }, ["SynthesisImplicitBleedDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage with Bleeding", statOrder = { 3169 }, level = 1, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(4-5)% increased Damage with Bleeding" }, } }, ["SynthesisImplicitLocalBleedOnHit1"] = { type = "Synthesis", affix = "", "(15-20)% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 50, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(15-20)% chance to cause Bleeding on Hit" }, } }, - ["SynthesisImplicitChanceToBleedJewel1"] = { type = "Synthesis", affix = "", "Attacks have (1-2)% chance to cause Bleeding", statOrder = { 2489 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have (1-2)% chance to cause Bleeding" }, } }, - ["SynthesisImplicitChanceToBleedJewel2__"] = { type = "Synthesis", affix = "", "Attacks have 3% chance to cause Bleeding", statOrder = { 2489 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 3% chance to cause Bleeding" }, } }, + ["SynthesisImplicitChanceToBleedJewel1"] = { type = "Synthesis", affix = "", "Attacks have (1-2)% chance to cause Bleeding", statOrder = { 2489 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have (1-2)% chance to cause Bleeding" }, } }, + ["SynthesisImplicitChanceToBleedJewel2__"] = { type = "Synthesis", affix = "", "Attacks have 3% chance to cause Bleeding", statOrder = { 2489 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1923879260] = { "Attacks have 3% chance to cause Bleeding" }, } }, ["SynthesisImplicitFasterBleed1_"] = { type = "Synthesis", affix = "", "Bleeding you inflict deals Damage (7-10)% faster", statOrder = { 6545 }, level = 56, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (7-10)% faster" }, } }, ["SynthesisImplicitFasterBleedWeapon1"] = { type = "Synthesis", affix = "", "Bleeding you inflict deals Damage (15-20)% faster", statOrder = { 6545 }, level = 36, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (15-20)% faster" }, } }, ["SynthesisImplicitFasterBleedWeapon2_"] = { type = "Synthesis", affix = "", "Bleeding you inflict deals Damage (30-35)% faster", statOrder = { 6545 }, level = 48, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (30-35)% faster" }, } }, @@ -589,11 +589,11 @@ return { ["SynthesisImplicitWeaponPhysicalDamageTwoHand1"] = { type = "Synthesis", affix = "", "(27-32)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(27-32)% increased Global Physical Damage" }, } }, ["SynthesisImplicitWeaponPhysicalDamageTwoHand2_"] = { type = "Synthesis", affix = "", "(33-38)% increased Global Physical Damage", statOrder = { 1231 }, level = 15, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(33-38)% increased Global Physical Damage" }, } }, ["SynthesisImplicitWeaponPhysicalDamageTwoHand3"] = { type = "Synthesis", affix = "", "(39-44)% increased Global Physical Damage", statOrder = { 1231 }, level = 24, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(39-44)% increased Global Physical Damage" }, } }, - ["SynthesisImplicitLocalPhysicalDamage1"] = { type = "Synthesis", affix = "", "(13-14)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(13-14)% increased Physical Damage" }, } }, - ["SynthesisImplicitLocalPhysicalDamage2"] = { type = "Synthesis", affix = "", "(15-16)% increased Physical Damage", statOrder = { 1232 }, level = 15, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(15-16)% increased Physical Damage" }, } }, - ["SynthesisImplicitLocalPhysicalDamage3"] = { type = "Synthesis", affix = "", "(17-19)% increased Physical Damage", statOrder = { 1232 }, level = 24, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(17-19)% increased Physical Damage" }, } }, - ["SynthesisImplicitLocalPhysicalDamage4"] = { type = "Synthesis", affix = "", "(20-22)% increased Physical Damage", statOrder = { 1232 }, level = 36, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(20-22)% increased Physical Damage" }, } }, - ["SynthesisImplicitLocalPhysicalDamage5"] = { type = "Synthesis", affix = "", "(23-25)% increased Physical Damage", statOrder = { 1232 }, level = 48, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(23-25)% increased Physical Damage" }, } }, + ["SynthesisImplicitLocalPhysicalDamage1"] = { type = "Synthesis", affix = "", "(13-14)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(13-14)% increased Physical Damage" }, } }, + ["SynthesisImplicitLocalPhysicalDamage2"] = { type = "Synthesis", affix = "", "(15-16)% increased Physical Damage", statOrder = { 1232 }, level = 15, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(15-16)% increased Physical Damage" }, } }, + ["SynthesisImplicitLocalPhysicalDamage3"] = { type = "Synthesis", affix = "", "(17-19)% increased Physical Damage", statOrder = { 1232 }, level = 24, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(17-19)% increased Physical Damage" }, } }, + ["SynthesisImplicitLocalPhysicalDamage4"] = { type = "Synthesis", affix = "", "(20-22)% increased Physical Damage", statOrder = { 1232 }, level = 36, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(20-22)% increased Physical Damage" }, } }, + ["SynthesisImplicitLocalPhysicalDamage5"] = { type = "Synthesis", affix = "", "(23-25)% increased Physical Damage", statOrder = { 1232 }, level = 48, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(23-25)% increased Physical Damage" }, } }, ["SynthesisImplicitLocalAddedPhysicalDamage1"] = { type = "Synthesis", affix = "", "Adds 1 to 2 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 1 to 2 Physical Damage" }, } }, ["SynthesisImplicitLocalAddedPhysicalDamage2"] = { type = "Synthesis", affix = "", "Adds (2-3) to (3-4) Physical Damage", statOrder = { 1276 }, level = 15, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (2-3) to (3-4) Physical Damage" }, } }, ["SynthesisImplicitLocalAddedPhysicalDamage3"] = { type = "Synthesis", affix = "", "Adds (3-4) to (5-6) Physical Damage", statOrder = { 1276 }, level = 24, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (3-4) to (5-6) Physical Damage" }, } }, @@ -1209,7 +1209,7 @@ return { ["SynthesisImplicitLocalWeaponRange1_"] = { type = "Synthesis", affix = "", "+0.1 metres to Weapon Range", statOrder = { 2745 }, level = 36, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.1 metres to Weapon Range" }, } }, ["SynthesisImplicitLocalWeaponRange2"] = { type = "Synthesis", affix = "", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 48, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, ["SynthesisImplicitWeaponRange1"] = { type = "Synthesis", affix = "", "+0.1 metres to Melee Strike Range", statOrder = { 2534 }, level = 56, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2264295449] = { "+0.1 metres to Melee Strike Range" }, } }, - ["SynthesisImplicitOnslaughtOnKill1"] = { type = "Synthesis", affix = "", "(5-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 55, group = "ChanceToGainOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2988593550] = { "(5-8)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["SynthesisImplicitOnslaughtOnKill1"] = { type = "Synthesis", affix = "", "(5-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 55, group = "ChanceToGainOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3023957681] = { "(5-8)% chance to gain Onslaught for 4 seconds on Kill" }, } }, ["SynthesisImplicitPhasingOnKill1__"] = { type = "Synthesis", affix = "", "(5-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 55, group = "ChancetoGainPhasingOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2918708827] = { "(5-8)% chance to gain Phasing for 4 seconds on Kill" }, } }, ["SynthesisImplicitUnholyMightOnKill1"] = { type = "Synthesis", affix = "", "(5-8)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 55, group = "UnholyMightOnKillPercentChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3562211447] = { "(5-8)% chance to gain Unholy Might for 3 seconds on Kill" }, } }, ["SynthesisImplicitIntimidateOnHit1"] = { type = "Synthesis", affix = "", "Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 4920 }, level = 65, group = "IntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3438201750] = { "Intimidate Enemies for 4 seconds on Hit with Attacks" }, } }, @@ -1301,9 +1301,9 @@ return { ["SynthesisDamageCannotBeReflectedPercent1"] = { type = "Synthesis", affix = "", "(10-16)% of Damage from your Hits cannot be Reflected", statOrder = { 4 }, level = 36, group = "DamageCannotBeReflectedPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1571797746] = { "(10-16)% of Damage from your Hits cannot be Reflected" }, } }, ["SynthesisDamageCannotBeReflectedPercent2"] = { type = "Synthesis", affix = "", "(17-23)% of Damage from your Hits cannot be Reflected", statOrder = { 4 }, level = 48, group = "DamageCannotBeReflectedPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1571797746] = { "(17-23)% of Damage from your Hits cannot be Reflected" }, } }, ["SynthesisDamageCannotBeReflectedPercent3"] = { type = "Synthesis", affix = "", "(24-30)% of Damage from your Hits cannot be Reflected", statOrder = { 4 }, level = 56, group = "DamageCannotBeReflectedPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1571797746] = { "(24-30)% of Damage from your Hits cannot be Reflected" }, } }, - ["SynthesisImplicitAttackerTakesDamageNoRange1_"] = { type = "Synthesis", affix = "", "Reflects (10-15) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (10-15) Physical Damage to Melee Attackers" }, } }, - ["SynthesisImplicitAttackerTakesDamageNoRange2"] = { type = "Synthesis", affix = "", "Reflects (16-40) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 15, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (16-40) Physical Damage to Melee Attackers" }, } }, - ["SynthesisImplicitAttackerTakesDamageNoRange3"] = { type = "Synthesis", affix = "", "Reflects (41-80) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 24, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (41-80) Physical Damage to Melee Attackers" }, } }, + ["SynthesisImplicitAttackerTakesDamageNoRange1_"] = { type = "Synthesis", affix = "", "Reflects (10-15) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (10-15) Physical Damage to Melee Attackers" }, } }, + ["SynthesisImplicitAttackerTakesDamageNoRange2"] = { type = "Synthesis", affix = "", "Reflects (16-40) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 15, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (16-40) Physical Damage to Melee Attackers" }, } }, + ["SynthesisImplicitAttackerTakesDamageNoRange3"] = { type = "Synthesis", affix = "", "Reflects (41-80) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 24, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (41-80) Physical Damage to Melee Attackers" }, } }, ["SynthesisImplicitLightRadius1"] = { type = "Synthesis", affix = "", "10% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, } }, ["SynthesisImplicitLightRadius2"] = { type = "Synthesis", affix = "", "12% increased Light Radius", statOrder = { 2500 }, level = 15, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "12% increased Light Radius" }, } }, ["SynthesisImplicitLightRadius3"] = { type = "Synthesis", affix = "", "15% increased Light Radius", statOrder = { 2500 }, level = 24, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, } }, diff --git a/src/Data/ModVeiled.lua b/src/Data/ModVeiled.lua index d3d130e2aa1..b0dae51aa7d 100644 --- a/src/Data/ModVeiled.lua +++ b/src/Data/ModVeiled.lua @@ -3,10 +3,10 @@ return { ["JunMasterAvoidStunAndElementalStatusAilments1"] = { type = "Prefix", affix = "Chosen", "(20-25)% chance to Avoid Elemental Ailments", "(20-25)% chance to Avoid being Stunned", statOrder = { 1843, 1851 }, level = 1, group = "AvoidStunAndElementalStatusAilments", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(20-25)% chance to Avoid Elemental Ailments" }, [4262448838] = { "(20-25)% chance to Avoid being Stunned" }, } }, - ["JunMasterVeiledLocalIncreasedPhysicalDamageAndImpaleCrafted"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to Impale Enemies on Hit with Attacks", statOrder = { 1232, 7861 }, level = 60, group = "LocalIncreasedPhysicalDamageAndImpaleChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-139)% increased Physical Damage" }, [725880290] = { "(21-25)% chance to Impale Enemies on Hit with Attacks" }, } }, - ["JunMasterVeiledLocalIncreasedPhysicalDamageAndBleedChanceCrafted_"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to cause Bleeding on Hit", statOrder = { 1232, 2483 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBleedChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1805374733] = { "(120-139)% increased Physical Damage" }, [1519615863] = { "(21-25)% chance to cause Bleeding on Hit" }, } }, - ["JunMasterVeiledLocalIncreasedPhysicalDamageAndBlindChanceCrafted_"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to Blind Enemies on hit", statOrder = { 1232, 2263 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBlindChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-139)% increased Physical Damage" }, [2301191210] = { "(21-25)% chance to Blind Enemies on hit" }, } }, - ["JunMasterVeiledLocalIncreasedPhysicalDamageAndPoisonChanceCrafted_"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to Poison on Hit", statOrder = { 1232, 8003 }, level = 60, group = "LocalIncreasedPhysicalDamageAndPoisonChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "unveiled_mod", "damage", "physical", "chaos", "attack", "ailment" }, tradeHashes = { [1805374733] = { "(120-139)% increased Physical Damage" }, [3885634897] = { "(21-25)% chance to Poison on Hit" }, } }, + ["JunMasterVeiledLocalIncreasedPhysicalDamageAndImpaleCrafted"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to Impale Enemies on Hit with Attacks", statOrder = { 1232, 7861 }, level = 60, group = "LocalIncreasedPhysicalDamageAndImpaleChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, tradeHashes = { [725880290] = { "(21-25)% chance to Impale Enemies on Hit with Attacks" }, [1509134228] = { "(120-139)% increased Physical Damage" }, } }, + ["JunMasterVeiledLocalIncreasedPhysicalDamageAndBleedChanceCrafted_"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to cause Bleeding on Hit", statOrder = { 1232, 2483 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBleedChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(21-25)% chance to cause Bleeding on Hit" }, [1509134228] = { "(120-139)% increased Physical Damage" }, } }, + ["JunMasterVeiledLocalIncreasedPhysicalDamageAndBlindChanceCrafted_"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to Blind Enemies on hit", statOrder = { 1232, 2263 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBlindChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, tradeHashes = { [2301191210] = { "(21-25)% chance to Blind Enemies on hit" }, [1509134228] = { "(120-139)% increased Physical Damage" }, } }, + ["JunMasterVeiledLocalIncreasedPhysicalDamageAndPoisonChanceCrafted_"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to Poison on Hit", statOrder = { 1232, 8003 }, level = 60, group = "LocalIncreasedPhysicalDamageAndPoisonChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "unveiled_mod", "damage", "physical", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "(21-25)% chance to Poison on Hit" }, [1509134228] = { "(120-139)% increased Physical Damage" }, } }, ["JunMasterVeiledElementalPenetrationWithAttacks_"] = { type = "Prefix", affix = "Chosen", "Attacks with this Weapon Penetrate (14-16)% Elemental Resistances", statOrder = { 3761 }, level = 60, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { "wand", "dagger", "weapon", "default", }, weightVal = { 500, 500, 1000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate (14-16)% Elemental Resistances" }, } }, ["JunMasterVeiledChaosPenetrationWithAttacks__"] = { type = "Prefix", affix = "Chosen", "Attacks with this Weapon Penetrate (14-16)% Chaos Resistance", statOrder = { 7876 }, level = 60, group = "LocalChaosPenetration", weightKey = { "wand", "dagger", "weapon", "default", }, weightVal = { 500, 500, 1000, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (14-16)% Chaos Resistance" }, } }, ["JunMasterVeiledDoubleDamageChance2h_"] = { type = "Suffix", affix = "of the Order", "(12-14)% chance to deal Double Damage", statOrder = { 5659 }, level = 60, group = "DoubleDamageChance", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [1172810729] = { "(12-14)% chance to deal Double Damage" }, } }, @@ -16,8 +16,8 @@ return { ["JunMasterVeiledMeleeDamageAndMeleeRange"] = { type = "Prefix", affix = "Chosen", "(17-20)% increased Melee Damage", "+0.2 metres to Melee Strike Range", statOrder = { 1234, 2534 }, level = 60, group = "MeleeDamageAndMeleeRange", weightKey = { "gloves", "default", }, weightVal = { 750, 0 }, modTags = { "unveiled_mod", "damage", "attack" }, tradeHashes = { [2264295449] = { "+0.2 metres to Melee Strike Range" }, [1002362373] = { "(17-20)% increased Melee Damage" }, } }, ["JunMasterVeiledFireDamageAndChanceToIgnite1h"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Fire Damage", "(21-23)% chance to Ignite", statOrder = { 1357, 2026 }, level = 60, group = "FireDamageAndChanceToIgnite", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3962278098] = { "(70-79)% increased Fire Damage" }, [1335054179] = { "(21-23)% chance to Ignite" }, } }, ["JunMasterVeiledFireDamageAndChanceToIgnite2h"] = { type = "Prefix", affix = "Chosen", "(100-109)% increased Fire Damage", "(35-40)% chance to Ignite", statOrder = { 1357, 2026 }, level = 60, group = "FireDamageAndChanceToIgnite", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3962278098] = { "(100-109)% increased Fire Damage" }, [1335054179] = { "(35-40)% chance to Ignite" }, } }, - ["JunMasterVeiledColdDamageAndBaseChanceToFreeze1h"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Cold Damage", "(21-23)% chance to Freeze", statOrder = { 1366, 2029 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [3291658075] = { "(70-79)% increased Cold Damage" }, [44571480] = { "(21-23)% chance to Freeze" }, } }, - ["JunMasterVeiledColdDamageAndBaseChanceToFreeze2h__"] = { type = "Prefix", affix = "Chosen", "(100-109)% increased Cold Damage", "(35-40)% chance to Freeze", statOrder = { 1366, 2029 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [3291658075] = { "(100-109)% increased Cold Damage" }, [44571480] = { "(35-40)% chance to Freeze" }, } }, + ["JunMasterVeiledColdDamageAndBaseChanceToFreeze1h"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Cold Damage", "(21-23)% chance to Freeze", statOrder = { 1366, 2029 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [3291658075] = { "(70-79)% increased Cold Damage" }, [2309614417] = { "(21-23)% chance to Freeze" }, } }, + ["JunMasterVeiledColdDamageAndBaseChanceToFreeze2h__"] = { type = "Prefix", affix = "Chosen", "(100-109)% increased Cold Damage", "(35-40)% chance to Freeze", statOrder = { 1366, 2029 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [3291658075] = { "(100-109)% increased Cold Damage" }, [2309614417] = { "(35-40)% chance to Freeze" }, } }, ["JunMasterVeiledLightningDamageAndChanceToShock1h_"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Lightning Damage", "(21-23)% chance to Shock", statOrder = { 1377, 2033 }, level = 60, group = "LightningDamageAndChanceToShock", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(21-23)% chance to Shock" }, [2231156303] = { "(70-79)% increased Lightning Damage" }, } }, ["JunMasterVeiledLightningDamageAndChanceToShock2h"] = { type = "Prefix", affix = "Chosen", "(100-109)% increased Lightning Damage", "(35-40)% chance to Shock", statOrder = { 1377, 2033 }, level = 60, group = "LightningDamageAndChanceToShock", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(35-40)% chance to Shock" }, [2231156303] = { "(100-109)% increased Lightning Damage" }, } }, ["JunMasterVeiledChaosDamageAndChaosSkillDuration1h"] = { type = "Prefix", affix = "Chosen", "(60-69)% increased Chaos Damage", "Chaos Skills have (13-15)% increased Skill Effect Duration", statOrder = { 1385, 1896 }, level = 60, group = "ChaosDamageAndChaosSkillDuration", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, tradeHashes = { [736967255] = { "(60-69)% increased Chaos Damage" }, [289885185] = { "Chaos Skills have (13-15)% increased Skill Effect Duration" }, } }, @@ -78,7 +78,7 @@ return { ["JunMasterVeiledManaAndDamageTakenGoesToManaPercent"] = { type = "Prefix", affix = "Chosen", "+(51-55) to maximum Mana", "(7-8)% of Damage taken Recouped as Mana", statOrder = { 1579, 2455 }, level = 60, group = "ManaAndDamageTakenGoesToManaPercent", weightKey = { "ring", "amulet", "default", }, weightVal = { 600, 600, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, tradeHashes = { [1050105434] = { "+(51-55) to maximum Mana" }, [472520716] = { "(7-8)% of Damage taken Recouped as Mana" }, } }, ["JunMasterVeiledAttackAndCastSpeed_"] = { type = "Suffix", affix = "of the Order", "(7-8)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 60, group = "AttackAndCastSpeed", weightKey = { "amulet", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(7-8)% increased Attack and Cast Speed" }, } }, ["JunMasterVeiledMovementVelocityAndMovementVelocityIfNotHitRecently"] = { type = "Prefix", affix = "Chosen", "(25-30)% increased Movement Speed", "(10-12)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1798, 3223 }, level = 60, group = "MovementVelocityAndMovementVelocityIfNotHitRecently", weightKey = { "boots", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "speed" }, tradeHashes = { [1177358866] = { "(10-12)% increased Movement Speed if you haven't been Hit Recently" }, [2250533757] = { "(25-30)% increased Movement Speed" }, } }, - ["JunMasterVeiledMovementVelocityAndOnslaughtOnKill"] = { type = "Prefix", affix = "Chosen", "(25-30)% increased Movement Speed", "(13-16)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1798, 2993 }, level = 60, group = "MovementVelocityAndOnslaughtOnKill", weightKey = { "boots", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "speed" }, tradeHashes = { [2988593550] = { "(13-16)% chance to gain Onslaught for 4 seconds on Kill" }, [2250533757] = { "(25-30)% increased Movement Speed" }, } }, + ["JunMasterVeiledMovementVelocityAndOnslaughtOnKill"] = { type = "Prefix", affix = "Chosen", "(25-30)% increased Movement Speed", "(13-16)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1798, 2993 }, level = 60, group = "MovementVelocityAndOnslaughtOnKill", weightKey = { "boots", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "speed" }, tradeHashes = { [3023957681] = { "(13-16)% chance to gain Onslaught for 4 seconds on Kill" }, [2250533757] = { "(25-30)% increased Movement Speed" }, } }, ["JunMasterVeiledMovementVelocityAndCannotBeChilled__"] = { type = "Prefix", affix = "Chosen", "(25-30)% increased Movement Speed", "100% chance to Avoid being Chilled", statOrder = { 1798, 1844 }, level = 60, group = "MovementVelocityAndCannotBeChilled", weightKey = { "boots", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "elemental", "cold", "speed", "ailment" }, tradeHashes = { [3483999943] = { "100% chance to Avoid being Chilled" }, [2250533757] = { "(25-30)% increased Movement Speed" }, } }, ["JunMasterVeiledArmourAndEvasionRating"] = { type = "Prefix", affix = "Chosen", "+(365-400) to Armour and Evasion Rating", statOrder = { 4266 }, level = 60, group = "ArmourAndEvasionRating", weightKey = { "belt", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "defences", "armour", "evasion" }, tradeHashes = { [2316658489] = { "+(365-400) to Armour and Evasion Rating" }, } }, ["JunMasterVeiledArmourAndEnergyShield"] = { type = "Prefix", affix = "Chosen", "+(365-400) to Armour", "+(31-35) to maximum Energy Shield", statOrder = { 1539, 1558 }, level = 60, group = "ArmourAndEnergyShield", weightKey = { "belt", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "defences", "armour", "energy_shield" }, tradeHashes = { [809229260] = { "+(365-400) to Armour" }, [3489782002] = { "+(31-35) to maximum Energy Shield" }, } }, @@ -97,7 +97,7 @@ return { ["JunMasterVeiledPhysicalDamageConvertedToFire_"] = { type = "Prefix", affix = "Chosen", "(30-35)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 60, group = "ConvertPhysicalToFire", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(30-35)% of Physical Damage Converted to Fire Damage" }, } }, ["JunMasterVeiledPhysicalDamageConvertedToCold"] = { type = "Prefix", affix = "Chosen", "(30-35)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 60, group = "ConvertPhysicalToCold", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(30-35)% of Physical Damage Converted to Cold Damage" }, } }, ["JunMasterVeiledPhysicalDamageConvertedToLightning"] = { type = "Prefix", affix = "Chosen", "(30-35)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 60, group = "ConvertPhysicalToLightning", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(30-35)% of Physical Damage Converted to Lightning Damage" }, } }, - ["JunMasterVeiledMaximumZombieAndSkeleton"] = { type = "Prefix", affix = "Chosen", "Minions have (8-10)% increased maximum Life", "+1 to maximum number of Raised Zombies", "+1 to maximum number of Skeletons", statOrder = { 1766, 2160, 2162 }, level = 60, group = "MaximumMinionCountAndMinionLife", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 2000, 0, 0 }, modTags = { "unveiled_mod", "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [770672621] = { "Minions have (8-10)% increased maximum Life" }, } }, + ["JunMasterVeiledMaximumZombieAndSkeleton"] = { type = "Prefix", affix = "Chosen", "Minions have (8-10)% increased maximum Life", "+1 to maximum number of Raised Zombies", "+1 to maximum number of Skeletons", statOrder = { 1766, 2160, 2162 }, level = 60, group = "MaximumMinionCountAndMinionLife", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 2000, 0, 0 }, modTags = { "unveiled_mod", "minion" }, tradeHashes = { [1225383362] = { "+1 to maximum number of Skeletons" }, [966747987] = { "+1 to maximum number of Raised Zombies" }, [770672621] = { "Minions have (8-10)% increased maximum Life" }, } }, ["JunMasterVeiledEffectOfAilments__"] = { type = "Suffix", affix = "of the Order", "(33-40)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 60, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "amulet", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "ailment" }, tradeHashes = { [782230869] = { "(33-40)% increased Effect of Non-Damaging Ailments" }, } }, ["JunMasterVeiledMaximumCurse"] = { type = "Prefix", affix = "Chosen", "You can apply an additional Curse", statOrder = { 2168 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, ["JunMasterVeiledCurseEffect"] = { type = "Suffix", affix = "of the Order", "(8-10)% increased Effect of your Curses", statOrder = { 2596 }, level = 60, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 3000, 0 }, modTags = { "unveiled_mod", "caster", "curse" }, tradeHashes = { [2353576063] = { "(8-10)% increased Effect of your Curses" }, } }, @@ -130,25 +130,25 @@ return { ["JunMasterVeiledAddedFireAndLightningDamageQuiver_"] = { type = "Prefix", affix = "Chosen", "Adds (9-10) to (13-14) Fire Damage", "Adds (9-10) to (13-14) Lightning Damage", statOrder = { 1359, 1379 }, level = 60, group = "AddedFireAndLightningDamage", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, tradeHashes = { [1334060246] = { "Adds (9-10) to (13-14) Lightning Damage" }, [321077055] = { "Adds (9-10) to (13-14) Fire Damage" }, } }, ["JunMasterVeiledAddedColdAndLightningDamage"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Cold Damage", "Adds (14-16) to (20-22) Lightning Damage", statOrder = { 1368, 1379 }, level = 60, group = "AddedColdAndLightningDamage", weightKey = { "shield", "ring", "quiver", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, tradeHashes = { [2387423236] = { "Adds (14-16) to (20-22) Cold Damage" }, [1334060246] = { "Adds (14-16) to (20-22) Lightning Damage" }, } }, ["JunMasterVeiledAddedColdAndLightningDamageQuiver"] = { type = "Prefix", affix = "Chosen", "Adds (9-10) to (13-14) Cold Damage", "Adds (9-10) to (13-14) Lightning Damage", statOrder = { 1368, 1379 }, level = 60, group = "AddedColdAndLightningDamage", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, tradeHashes = { [2387423236] = { "Adds (9-10) to (13-14) Cold Damage" }, [1334060246] = { "Adds (9-10) to (13-14) Lightning Damage" }, } }, - ["JunMasterVeiledLuckyCriticalsDuringFocus"] = { type = "Suffix", affix = "of the Order", "Your Critical Strike Chance is Lucky while Focused", "Focus has (5-8)% increased Cooldown Recovery Rate", statOrder = { 6531, 6654 }, level = 60, group = "LuckyCriticalsDuringFocusCDR", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "critical" }, tradeHashes = { [3610263531] = { "Focus has (5-8)% increased Cooldown Recovery Rate" }, [1349659520] = { "Your Critical Strike Chance is Lucky while Focused" }, [1533152070] = { "" }, } }, - ["JunMasterVeiledDodgeChanceDuringFocus_"] = { type = "Prefix", affix = "Chosen", "(30-32)% increased Evasion Rating while Focused", statOrder = { 6478 }, level = 60, group = "DodgeChanceDuringFocus", weightKey = { "helmet", "boots", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "defences", "evasion" }, tradeHashes = { [3839620417] = { "(30-32)% increased Evasion Rating while Focused" }, [1533152070] = { "" }, } }, - ["JunMasterVeiledPhysicalDamageReductionDuringFocus_"] = { type = "Prefix", affix = "Chosen", "(13-15)% additional Physical Damage Reduction while Focused", statOrder = { 4572 }, level = 60, group = "PhysicalDamageReductionDuringFocus", weightKey = { "helmet", "gloves", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "physical" }, tradeHashes = { [3753650187] = { "(13-15)% additional Physical Damage Reduction while Focused" }, [1533152070] = { "" }, } }, - ["JunMasterVeiledShockNearbyEnemiesOnFocus"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "Shock nearby Enemies for 4 Seconds when you Focus", statOrder = { 6654, 10014 }, level = 60, group = "ShockNearbyEnemiesOnFocusCDR", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3031766858] = { "Shock nearby Enemies for 4 Seconds when you Focus" }, [3610263531] = { "Focus has (5-8)% increased Cooldown Recovery Rate" }, [1533152070] = { "" }, } }, - ["JunMasterVeiledLifeRegenerationPerEvasionDuringFocus"] = { type = "Suffix", affix = "of the Order", "1.5% of Evasion Rating is Regenerated as Life per second while Focused", statOrder = { 6488 }, level = 60, group = "LifeRegenerationPerEvasionDuringFocus", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "unveiled_mod", "life" }, tradeHashes = { [1533152070] = { "" }, [3244118730] = { "1.5% of Evasion Rating is Regenerated as Life per second while Focused" }, } }, - ["JunMasterVeiledRestoreManaAndEnergyShieldOnFocus"] = { type = "Suffix", affix = "of the Order", "Recover (37-40)% of Mana and Energy Shield when you Focus", statOrder = { 9925 }, level = 60, group = "RestoreManaAndEnergyShieldOnFocus", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "unveiled_mod", "mana", "defences", "energy_shield" }, tradeHashes = { [1533152070] = { "" }, [2992263716] = { "Recover (37-40)% of Mana and Energy Shield when you Focus" }, } }, - ["JunMasterVeiledChanceToDealDoubleDamageWhileFocused2h_"] = { type = "Suffix", affix = "of the Order", "(36-40)% chance to deal Double Damage while Focused", statOrder = { 5666 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [1533152070] = { "" }, [2908886986] = { "(36-40)% chance to deal Double Damage while Focused" }, } }, - ["JunMasterVeiledChanceToDealDoubleDamageWhileFocused1h"] = { type = "Suffix", affix = "of the Order", "(18-20)% chance to deal Double Damage while Focused", statOrder = { 5666 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [1533152070] = { "" }, [2908886986] = { "(18-20)% chance to deal Double Damage while Focused" }, } }, - ["JunMasterVeiledAttackAndCastSpeedWhileFocused_"] = { type = "Suffix", affix = "of the Order", "(45-50)% increased Attack and Cast Speed while Focused", statOrder = { 4822 }, level = 60, group = "AttackAndCastSpeedWhileFocused", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "attack", "caster", "speed" }, tradeHashes = { [1533152070] = { "" }, [2628163981] = { "(45-50)% increased Attack and Cast Speed while Focused" }, } }, - ["JunMasterVeiledStatusAilmentsYouInflictDurationWhileFocused_"] = { type = "Suffix", affix = "of the Order", "(36-40)% increased Duration of Ailments you inflict while Focused", statOrder = { 10225 }, level = 60, group = "StatusAilmentsYouInflictDurationWhileFocused", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "ailment" }, tradeHashes = { [1533152070] = { "" }, [1840751341] = { "(36-40)% increased Duration of Ailments you inflict while Focused" }, } }, - ["JunMasterVeiledImmuneToStatusAilmentsWhileFocused"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "You are Immune to Ailments while Focused", statOrder = { 6654, 7240 }, level = 60, group = "ImmuneToStatusAilmentsWhileFocusedCDR", weightKey = { "boots", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "ailment" }, tradeHashes = { [1766730250] = { "You are Immune to Ailments while Focused" }, [3610263531] = { "Focus has (5-8)% increased Cooldown Recovery Rate" }, [1533152070] = { "" }, } }, + ["JunMasterVeiledLuckyCriticalsDuringFocus"] = { type = "Suffix", affix = "of the Order", "Your Critical Strike Chance is Lucky while Focused", "Focus has (5-8)% increased Cooldown Recovery Rate", statOrder = { 6531, 6654 }, level = 60, group = "LuckyCriticalsDuringFocusCDR", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "critical" }, tradeHashes = { [3610263531] = { "Focus has (5-8)% increased Cooldown Recovery Rate" }, [1349659520] = { "Your Critical Strike Chance is Lucky while Focused" }, } }, + ["JunMasterVeiledDodgeChanceDuringFocus_"] = { type = "Prefix", affix = "Chosen", "(30-32)% increased Evasion Rating while Focused", statOrder = { 6478 }, level = 60, group = "DodgeChanceDuringFocus", weightKey = { "helmet", "boots", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "defences", "evasion" }, tradeHashes = { [3839620417] = { "(30-32)% increased Evasion Rating while Focused" }, } }, + ["JunMasterVeiledPhysicalDamageReductionDuringFocus_"] = { type = "Prefix", affix = "Chosen", "(13-15)% additional Physical Damage Reduction while Focused", statOrder = { 4572 }, level = 60, group = "PhysicalDamageReductionDuringFocus", weightKey = { "helmet", "gloves", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "physical" }, tradeHashes = { [3753650187] = { "(13-15)% additional Physical Damage Reduction while Focused" }, } }, + ["JunMasterVeiledShockNearbyEnemiesOnFocus"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "Shock nearby Enemies for 4 Seconds when you Focus", statOrder = { 6654, 10014 }, level = 60, group = "ShockNearbyEnemiesOnFocusCDR", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3610263531] = { "Focus has (5-8)% increased Cooldown Recovery Rate" }, [3031766858] = { "Shock nearby Enemies for 4 Seconds when you Focus" }, } }, + ["JunMasterVeiledLifeRegenerationPerEvasionDuringFocus"] = { type = "Suffix", affix = "of the Order", "1.5% of Evasion Rating is Regenerated as Life per second while Focused", statOrder = { 6488 }, level = 60, group = "LifeRegenerationPerEvasionDuringFocus", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "unveiled_mod", "life" }, tradeHashes = { [3244118730] = { "1.5% of Evasion Rating is Regenerated as Life per second while Focused" }, } }, + ["JunMasterVeiledRestoreManaAndEnergyShieldOnFocus"] = { type = "Suffix", affix = "of the Order", "Recover (37-40)% of Mana and Energy Shield when you Focus", statOrder = { 9925 }, level = 60, group = "RestoreManaAndEnergyShieldOnFocus", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "unveiled_mod", "mana", "defences", "energy_shield" }, tradeHashes = { [2992263716] = { "Recover (37-40)% of Mana and Energy Shield when you Focus" }, } }, + ["JunMasterVeiledChanceToDealDoubleDamageWhileFocused2h_"] = { type = "Suffix", affix = "of the Order", "(36-40)% chance to deal Double Damage while Focused", statOrder = { 5666 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [2908886986] = { "(36-40)% chance to deal Double Damage while Focused" }, } }, + ["JunMasterVeiledChanceToDealDoubleDamageWhileFocused1h"] = { type = "Suffix", affix = "of the Order", "(18-20)% chance to deal Double Damage while Focused", statOrder = { 5666 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [2908886986] = { "(18-20)% chance to deal Double Damage while Focused" }, } }, + ["JunMasterVeiledAttackAndCastSpeedWhileFocused_"] = { type = "Suffix", affix = "of the Order", "(45-50)% increased Attack and Cast Speed while Focused", statOrder = { 4822 }, level = 60, group = "AttackAndCastSpeedWhileFocused", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "attack", "caster", "speed" }, tradeHashes = { [2628163981] = { "(45-50)% increased Attack and Cast Speed while Focused" }, } }, + ["JunMasterVeiledStatusAilmentsYouInflictDurationWhileFocused_"] = { type = "Suffix", affix = "of the Order", "(36-40)% increased Duration of Ailments you inflict while Focused", statOrder = { 10225 }, level = 60, group = "StatusAilmentsYouInflictDurationWhileFocused", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "ailment" }, tradeHashes = { [1840751341] = { "(36-40)% increased Duration of Ailments you inflict while Focused" }, } }, + ["JunMasterVeiledImmuneToStatusAilmentsWhileFocused"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "You are Immune to Ailments while Focused", statOrder = { 6654, 7240 }, level = 60, group = "ImmuneToStatusAilmentsWhileFocusedCDR", weightKey = { "boots", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "ailment" }, tradeHashes = { [3610263531] = { "Focus has (5-8)% increased Cooldown Recovery Rate" }, [1766730250] = { "You are Immune to Ailments while Focused" }, } }, ["JunMasterVeiledFocusCooldownRecovery_"] = { type = "Suffix", affix = "of the Order", "Focus has (31-35)% increased Cooldown Recovery Rate", statOrder = { 6654 }, level = 60, group = "FocusCooldownRecovery", weightKey = { "boots", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [3610263531] = { "Focus has (31-35)% increased Cooldown Recovery Rate" }, } }, - ["JunMasterVeiledLifeLeechFromAnyDamageAndVaalPactWhileFocused"] = { type = "Suffix", affix = "of the Order", "You have Vaal Pact while Focused", "15% of Damage Leeched as Life while Focused", statOrder = { 6829, 7363 }, level = 60, group = "LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact", weightKey = { "amulet", "default", }, weightVal = { 3000, 0 }, modTags = { "resource", "unveiled_mod", "life" }, tradeHashes = { [3324747104] = { "15% of Damage Leeched as Life while Focused" }, [2022851697] = { "You have Vaal Pact while Focused" }, [1533152070] = { "" }, } }, - ["JunMasterVeiledFortifyEffectWhileFocused_"] = { type = "Suffix", affix = "of the Order", "+10 to maximum Fortification while Focused", statOrder = { 9119 }, level = 60, group = "FortifyEffectWhileFocused", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [922014346] = { "+10 to maximum Fortification while Focused" }, [1533152070] = { "" }, } }, - ["JunMasterVeiledTriggerSocketedSpellWhenYouFocus"] = { type = "Suffix", affix = "of the Order", "Trigger Socketed Spells when you Focus, with a 0.25 second Cooldown", "Focus has (5-8)% increased Cooldown Recovery Rate", statOrder = { 834, 6654 }, level = 60, group = "TriggerSocketedSpellWhenYouFocusCDR", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill", "unveiled_mod", "caster", "gem" }, tradeHashes = { [2062792091] = { "Trigger Socketed Spells when you Focus, with a 0.25 second Cooldown" }, [3610263531] = { "Focus has (5-8)% increased Cooldown Recovery Rate" }, [1533152070] = { "" }, } }, - ["JunMasterVeiledDamageRemovedFromManaBeforeLifeWhileFocused"] = { type = "Suffix", affix = "of the Order", "(18-22)% of Damage is taken from Mana before Life while Focused", statOrder = { 6089 }, level = 60, group = "DamageRemovedFromManaBeforeLifeWhileFocused", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, tradeHashes = { [1588539856] = { "(18-22)% of Damage is taken from Mana before Life while Focused" }, [1533152070] = { "" }, } }, - ["JunMasterVeiledMinionsRecoverMaximumLifeWhenYouFocus_"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "Minions Recover 100% of their Life when you Focus", statOrder = { 6654, 9367 }, level = 60, group = "MinionsRecoverMaximumLifeWhenYouFocusCDR", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "resource", "unveiled_mod", "life", "minion" }, tradeHashes = { [3500359417] = { "Minions Recover 100% of their Life when you Focus" }, [3610263531] = { "Focus has (5-8)% increased Cooldown Recovery Rate" }, [1533152070] = { "" }, } }, - ["JunMasterVeiledGainVaalPactWhileFocused"] = { type = "Suffix", affix = "of the Order", "You have Vaal Pact while Focused", statOrder = { 6829 }, level = 60, group = "GainVaalPactWhileFocused", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "unveiled_mod", "life" }, tradeHashes = { [1533152070] = { "" }, [2022851697] = { "You have Vaal Pact while Focused" }, } }, - ["JunMasterVeiledSkillsCostNoManaWhileFocused"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "Non-Aura Skills Cost no Mana or Life while Focused", statOrder = { 6654, 10066 }, level = 60, group = "SkillsCostNoManaWhileFocusedCDR", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, tradeHashes = { [849152640] = { "Non-Aura Skills Cost no Mana or Life while Focused" }, [3610263531] = { "Focus has (5-8)% increased Cooldown Recovery Rate" }, [1533152070] = { "" }, } }, + ["JunMasterVeiledLifeLeechFromAnyDamageAndVaalPactWhileFocused"] = { type = "Suffix", affix = "of the Order", "You have Vaal Pact while Focused", "15% of Damage Leeched as Life while Focused", statOrder = { 6829, 7363 }, level = 60, group = "LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact", weightKey = { "amulet", "default", }, weightVal = { 3000, 0 }, modTags = { "resource", "unveiled_mod", "life" }, tradeHashes = { [3324747104] = { "15% of Damage Leeched as Life while Focused" }, [2022851697] = { "You have Vaal Pact while Focused" }, } }, + ["JunMasterVeiledFortifyEffectWhileFocused_"] = { type = "Suffix", affix = "of the Order", "+10 to maximum Fortification while Focused", statOrder = { 9119 }, level = 60, group = "FortifyEffectWhileFocused", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [922014346] = { "+10 to maximum Fortification while Focused" }, } }, + ["JunMasterVeiledTriggerSocketedSpellWhenYouFocus"] = { type = "Suffix", affix = "of the Order", "Trigger Socketed Spells when you Focus, with a 0.25 second Cooldown", "Focus has (5-8)% increased Cooldown Recovery Rate", statOrder = { 834, 6654 }, level = 60, group = "TriggerSocketedSpellWhenYouFocusCDR", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill", "unveiled_mod", "caster", "gem" }, tradeHashes = { [2062792091] = { "Trigger Socketed Spells when you Focus, with a 0.25 second Cooldown" }, [3610263531] = { "Focus has (5-8)% increased Cooldown Recovery Rate" }, } }, + ["JunMasterVeiledDamageRemovedFromManaBeforeLifeWhileFocused"] = { type = "Suffix", affix = "of the Order", "(18-22)% of Damage is taken from Mana before Life while Focused", statOrder = { 6089 }, level = 60, group = "DamageRemovedFromManaBeforeLifeWhileFocused", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, tradeHashes = { [1588539856] = { "(18-22)% of Damage is taken from Mana before Life while Focused" }, } }, + ["JunMasterVeiledMinionsRecoverMaximumLifeWhenYouFocus_"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "Minions Recover 100% of their Life when you Focus", statOrder = { 6654, 9367 }, level = 60, group = "MinionsRecoverMaximumLifeWhenYouFocusCDR", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "resource", "unveiled_mod", "life", "minion" }, tradeHashes = { [3500359417] = { "Minions Recover 100% of their Life when you Focus" }, [3610263531] = { "Focus has (5-8)% increased Cooldown Recovery Rate" }, } }, + ["JunMasterVeiledGainVaalPactWhileFocused"] = { type = "Suffix", affix = "of the Order", "You have Vaal Pact while Focused", statOrder = { 6829 }, level = 60, group = "GainVaalPactWhileFocused", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "unveiled_mod", "life" }, tradeHashes = { [2022851697] = { "You have Vaal Pact while Focused" }, } }, + ["JunMasterVeiledSkillsCostNoManaWhileFocused"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "Non-Aura Skills Cost no Mana or Life while Focused", statOrder = { 6654, 10066 }, level = 60, group = "SkillsCostNoManaWhileFocusedCDR", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, tradeHashes = { [3610263531] = { "Focus has (5-8)% increased Cooldown Recovery Rate" }, [849152640] = { "Non-Aura Skills Cost no Mana or Life while Focused" }, } }, ["JunMasterVeiledAllDamage"] = { type = "Prefix", affix = "Leo's", "(20-23)% increased Damage", statOrder = { 1191 }, level = 60, group = "AllDamage", weightKey = { "leo_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [2154246560] = { "(20-23)% increased Damage" }, } }, ["JunMasterVeiledLocalIncreaseSocketedSupportGemLevel"] = { type = "Prefix", affix = "Catarina's", "+2 to Level of Socketed Support Gems", "+(5-8)% to Quality of Socketed Support Gems", statOrder = { 189, 205 }, level = 60, group = "LocalIncreaseSocketedSupportGemLevelAndQuality", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "gem" }, tradeHashes = { [1328548975] = { "+(5-8)% to Quality of Socketed Support Gems" }, [4154259475] = { "+2 to Level of Socketed Support Gems" }, } }, ["JunMasterVeiledChaosExplosionOnKill"] = { type = "Prefix", affix = "Catarina's", "Enemies you Kill have a (15-25)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 3305 }, level = 60, group = "ObliterationExplodeOnKillChaos", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, tradeHashes = { [1776945532] = { "Enemies you Kill have a (15-25)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage" }, } }, @@ -226,13 +226,13 @@ return { ["JunMasterVeiledAddedFireAndColdDamageInverted"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Fire Damage to Hits against you", "Adds (14-16) to (20-22) Cold Damage to Hits against you", statOrder = { 1358, 1367 }, level = 60, group = "SelfFireAndColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, tradeHashes = { [3482587079] = { "Adds (14-16) to (20-22) Cold Damage to Hits against you" }, [1905034712] = { "Adds (14-16) to (20-22) Fire Damage to Hits against you" }, } }, ["JunMasterVeiledAddedFireAndLightningDamageInverted"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Fire Damage to Hits against you", "Adds (14-16) to (20-22) Lightning Damage to Hits against you", statOrder = { 1358, 1378 }, level = 60, group = "SelfFireAndLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "lightning" }, tradeHashes = { [2923069345] = { "Adds (14-16) to (20-22) Lightning Damage to Hits against you" }, [1905034712] = { "Adds (14-16) to (20-22) Fire Damage to Hits against you" }, } }, ["JunMasterVeiledAddedColdAndLightningDamageInverted"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Cold Damage to Hits against you", "Adds (14-16) to (20-22) Lightning Damage to Hits against you", statOrder = { 1367, 1378 }, level = 60, group = "SelfColdAndLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, tradeHashes = { [2923069345] = { "Adds (14-16) to (20-22) Lightning Damage to Hits against you" }, [3482587079] = { "Adds (14-16) to (20-22) Cold Damage to Hits against you" }, } }, - ["JunMasterVeiledLifeLeechFromAnyDamageAndVaalPactWhileFocusedInverted"] = { type = "Suffix", affix = "of the Order", "You have Vaal Pact while Focused", "15% of Damage Leeched by Enemy as Life while Focused", statOrder = { 6829, 7364 }, level = 60, group = "EnemyLifeLeechPermyriadWhileFocusedAndVaalPact", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "life" }, tradeHashes = { [2022851697] = { "You have Vaal Pact while Focused" }, [497196601] = { "15% of Damage Leeched by Enemy as Life while Focused" }, [1533152070] = { "" }, } }, + ["JunMasterVeiledLifeLeechFromAnyDamageAndVaalPactWhileFocusedInverted"] = { type = "Suffix", affix = "of the Order", "You have Vaal Pact while Focused", "15% of Damage Leeched by Enemy as Life while Focused", statOrder = { 6829, 7364 }, level = 60, group = "EnemyLifeLeechPermyriadWhileFocusedAndVaalPact", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "life" }, tradeHashes = { [2022851697] = { "You have Vaal Pact while Focused" }, [497196601] = { "15% of Damage Leeched by Enemy as Life while Focused" }, } }, ["JunMasterVeiledIncreasedManaAndRegenInverted"] = { type = "Prefix", affix = "Chosen", "+(51-55) to maximum Mana", "Lose 5.3 Mana per second", statOrder = { 1579, 1583 }, level = 60, group = "IncreasedManaAndDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "mana" }, tradeHashes = { [1050105434] = { "+(51-55) to maximum Mana" }, [838272676] = { "Lose 5.3 Mana per second" }, } }, ["JunMasterVeiledBaseLifeAndManaRegenInverted"] = { type = "Prefix", affix = "Chosen", "+(55-60) to maximum Life", "Lose 5.3 Mana per second", statOrder = { 1569, 1583 }, level = 60, group = "BaseLifeAndManaDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, tradeHashes = { [838272676] = { "Lose 5.3 Mana per second" }, [3299347043] = { "+(55-60) to maximum Life" }, } }, ["JunMasterVeiledBaseManaAndLifeRegenInverted"] = { type = "Prefix", affix = "Chosen", "Lose 33.3 Life per second", "+(55-60) to maximum Mana", statOrder = { 1575, 1579 }, level = 60, group = "BaseManaAndLifeDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, tradeHashes = { [1050105434] = { "+(55-60) to maximum Mana" }, [771127912] = { "Lose 33.3 Life per second" }, } }, ["JunMasterVeiledReduceGlobalFlatManaCostChannellingInverted"] = { type = "Prefix", affix = "Elreon's", "Channelling Skills Cost -4 Mana", statOrder = { 10062 }, level = 60, group = "ManaCostBaseChannelled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "mana" }, tradeHashes = { [1178188780] = { "Channelling Skills Cost -4 Mana" }, } }, ["JunMasterVeiledReduceGlobalFlatManaCostNonChannellingInverted"] = { type = "Prefix", affix = "Elreon's", "Non-Channelling Skills Cost -(10-9) Mana", statOrder = { 10064 }, level = 60, group = "ManaCostBaseNonChannelled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "mana" }, tradeHashes = { [407482587] = { "Non-Channelling Skills Cost -(10-9) Mana" }, } }, - ["JunMasterVeiledShockNearbyEnemiesOnFocusInverted"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% reduced Cooldown Recovery Rate", "Shock yourself for 4 Seconds when you Focus", statOrder = { 6654, 10013 }, level = 60, group = "ShockYourselfOnFocusCDR", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3181879507] = { "Shock yourself for 4 Seconds when you Focus" }, [3610263531] = { "Focus has (5-8)% reduced Cooldown Recovery Rate" }, [1533152070] = { "" }, } }, + ["JunMasterVeiledShockNearbyEnemiesOnFocusInverted"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% reduced Cooldown Recovery Rate", "Shock yourself for 4 Seconds when you Focus", statOrder = { 6654, 10013 }, level = 60, group = "ShockYourselfOnFocusCDR", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3181879507] = { "Shock yourself for 4 Seconds when you Focus" }, [3610263531] = { "Focus has (5-8)% reduced Cooldown Recovery Rate" }, } }, ["JunMasterVeiledMinionLargerAggroRadius"] = { type = "Prefix", affix = "Catarina's", "Minions are Aggressive", statOrder = { 10761 }, level = 60, group = "MinionLargerAggroRadius", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "minion" }, tradeHashes = { [128585622] = { "Minions are Aggressive" }, } }, ["JunMasterVeiledMinionDamageAlsoAffectsYou"] = { type = "Prefix", affix = "Catarina's", "Increases and Reductions to Minion Damage also affect you", statOrder = { 3750 }, level = 60, group = "MinionDamageAlsoAffectsYou", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [1631928082] = { "Increases and Reductions to Minion Damage also affect you" }, } }, ["JunMasterVeiledMinionAttackSpeedAlsoAffectsYou"] = { type = "Prefix", affix = "Catarina's", "Increases and Reductions to Minion Attack Speed also affect you", statOrder = { 3752 }, level = 60, group = "MinionAttackSpeedAlsoAffectsYou", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [2293111154] = { "Increases and Reductions to Minion Attack Speed also affect you" }, } }, diff --git a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua index 98a746568d2..f7061521f20 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -3,73885 +3,82040 @@ return { ["Corrupted"] = { - ["10008_ShockEffect"] = { + ["10007_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", + }, + }, + ["10018_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"] = { - ["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"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3801067695", + ["text"] = "#% reduced Effect of Shock on you", + ["type"] = "implicit", + }, + }, + ["10124_AdditionalCriticalStrikeChanceWithSpells"] = { + ["Gloves"] = { + ["max"] = 0.8, + ["min"] = 0.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_791835907", + ["text"] = "+#% to Spell Critical Strike Chance", + ["type"] = "implicit", + }, + }, + ["10177_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", + }, + }, + ["10655_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", + }, + }, + ["10720_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", + }, + }, + ["10800_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", + }, + }, + ["10827_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, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3943945975", - ["text"] = "Resolute Technique", - ["type"] = "implicit", - }, - }, - ["1138_BlockPercent"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3943945975", + ["text"] = "Resolute Technique", + ["type"] = "implicit", + }, + }, + ["1143_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", - }, - }, - ["1138_MonsterBlock"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "implicit", + }, + }, + ["1143_MonsterBlock"] = { ["Amulet"] = { - ["max"] = 5, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", - ["type"] = "implicit", - }, - }, - ["1142_ChanceToSuppressSpellsOld"] = { + ["max"] = 5, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "implicit", + }, + }, + ["1147_ChanceToSuppressSpellsOld"] = { ["Boots"] = { - ["max"] = 6, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3680664274", - ["text"] = "+#% chance to Suppress Spell Damage", - ["type"] = "implicit", - }, - }, - ["1143_ChanceToSuppressSpells"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", + ["type"] = "implicit", + }, + }, + ["1148_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", - }, - }, - ["1155_BlockingBlocksSpells"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", + ["type"] = "implicit", + }, + }, + ["1160_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", - }, - }, - ["1160_SpellBlockPercentage"] = { + ["max"] = 7, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "implicit", + }, + }, + ["1165_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", - }, - }, - ["1162_BlockWhileDualWielding"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "implicit", + }, + }, + ["1167_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", - }, - }, - ["1184_IncreasedDexterityStrengthCorrupted"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2166444903", + ["text"] = "+#% Chance to Block Attack Damage while Dual Wielding", + ["type"] = "implicit", + }, + }, + ["1189_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", - }, - }, - ["1184_IncreasedStrengthIntelligenceCorrupted"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "implicit", + }, + }, + ["1189_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", - }, - }, - ["1185_IncreasedDexterityStrengthCorrupted"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "implicit", + }, + }, + ["1190_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", - }, - }, - ["1185_IncreasedIntelligenceDexterityCorrupted"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "implicit", + }, + }, + ["1190_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", - }, - }, - ["1186_IncreasedIntelligenceDexterityCorrupted"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "implicit", + }, + }, + ["1191_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", - }, - }, - ["1186_IncreasedStrengthIntelligenceCorrupted"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "implicit", + }, + }, + ["1191_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", - }, - }, - ["1191_IncreasedDamage"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "implicit", + }, + }, + ["1196_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", - }, - }, - ["1210_DamageOverTime"] = { - ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "implicit", + }, + }, + ["1215_DamageOverTime"] = { + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 50, + }, ["Dagger"] = { - ["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, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_967627487", + ["text"] = "#% increased Damage over Time", + ["type"] = "implicit", + }, + }, + ["1228_SpellDamage"] = { + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 50, + }, ["Dagger"] = { - ["max"] = 60, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "implicit", - }, - }, - ["1231_PhysicalDamagePercent"] = { + ["max"] = 60, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "implicit", + }, + }, + ["1236_PhysicalDamagePercent"] = { ["Ring"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", - ["type"] = "implicit", - }, - }, - ["1232_LocalPhysicalDamagePercent"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "implicit", + }, + }, + ["1237_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", - }, - }, - ["1276_LocalPhysicalDamage"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "implicit", + }, + }, + ["1281_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", - }, - }, - ["1362_LocalFireDamage"] = { + ["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", + }, + }, + ["1367_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", - }, - }, - ["1371_LocalColdDamage"] = { + ["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", + }, + }, + ["1376_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", - }, - }, - ["1373_AddedFireDamageSpellsAndAttacks"] = { + ["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", + }, + }, + ["1378_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", - }, - }, - ["1374_AddedColdDamageToSpellsAndAttacks"] = { + ["max"] = 25.5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3964634628", + ["text"] = "Adds # to # Fire Damage to Spells and Attacks", + ["type"] = "implicit", + }, + }, + ["1379_AddedColdDamageToSpellsAndAttacks"] = { ["Ring"] = { - ["max"] = 22, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1662717006", - ["text"] = "Adds # to # Cold Damage to Spells and Attacks", - ["type"] = "implicit", - }, - }, - ["1382_LocalLightningDamage"] = { + ["max"] = 22, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1662717006", + ["text"] = "Adds # to # Cold Damage to Spells and Attacks", + ["type"] = "implicit", + }, + }, + ["1387_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", - }, - }, - ["1387_ChaosDamage"] = { + ["max"] = 41, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "implicit", + }, + }, + ["1392_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", - }, - }, - ["1390_LocalChaosDamage"] = { + ["max"] = 11, + ["min"] = 1.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", + ["type"] = "implicit", + }, + }, + ["1395_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", - }, - }, - ["1409_AddedLightningDamageSpellsAndAttacks"] = { + ["max"] = 17, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", + ["type"] = "implicit", + }, + }, + ["1414_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", - }, - }, - ["1410_IncreasedAttackSpeed"] = { + ["max"] = 28.5, + ["min"] = 7.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2885144362", + ["text"] = "Adds # to # Lightning Damage to Spells and Attacks", + ["type"] = "implicit", + }, + }, + ["1415_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", - }, - }, - ["1413_LocalIncreasedAttackSpeed"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "implicit", + }, + }, + ["1418_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", - }, - }, - ["1446_IncreasedCastSpeed"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "implicit", + }, + }, + ["1451_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", - }, - }, - ["1446_IncreasedCastSpeedFishing"] = { + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "implicit", + }, + }, + ["1451_IncreasedCastSpeedFishing"] = { ["FishingRod"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "implicit", - }, - }, - ["1459_CriticalStrikeChance"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "implicit", + }, + }, + ["1464_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", - }, - }, - ["1464_LocalCriticalStrikeChance"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "implicit", + }, + }, + ["1469_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", - }, - }, - ["1488_CriticalStrikeMultiplier"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "implicit", + }, + }, + ["1493_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", - }, - }, - ["1512_ReducedExtraDamageFromCrits"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", + ["type"] = "implicit", + }, + }, + ["1517_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", - }, - }, - ["1521_ImmuneToKnockback"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3855016469", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + ["type"] = "implicit", + }, + }, + ["1526_ImmuneToKnockback"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4212255859", - ["text"] = "Cannot be Knocked Back", - ["type"] = "implicit", - }, - }, - ["1561_GlobalEnergyShieldPercent"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4212255859", + ["text"] = "Cannot be Knocked Back", + ["type"] = "implicit", + }, + }, + ["1566_GlobalEnergyShieldPercent"] = { ["Belt"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "implicit", - }, - }, - ["1561_MaximumEnergyShieldPercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "implicit", - }, - }, - ["1571_MaximumLifeIncreasePercent"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "implicit", + }, + }, + ["1566_MaximumEnergyShieldPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "implicit", + }, + }, + ["1576_MaximumLifeIncreasePercent"] = { ["Belt"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_983749596", - ["text"] = "#% increased maximum Life", - ["type"] = "implicit", - }, - }, - ["1592_IncreasedItemQuantity"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "implicit", + }, + }, + ["1597_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", - }, - }, - ["1596_IncreasedItemRarity"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_884586851", + ["text"] = "#% increased Quantity of Items found", + ["type"] = "implicit", + }, + }, + ["1601_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", - }, - }, - ["1619_AllResistancesCorrupted"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "implicit", + }, + }, + ["1624_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", - }, - }, - ["162_LocalIncreaseSocketedGemLevel"] = { - ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2843100721", - ["text"] = "+# to Level of Socketed Gems", - ["type"] = "implicit", - }, - }, - ["1641_ChaosResistance"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2901986750", + ["text"] = "+#% to all Elemental Resistances", + ["type"] = "implicit", + }, + }, + ["1646_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", - }, - }, - ["1642_MaximumResistances"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2923486259", + ["text"] = "+#% to Chaos Resistance", + ["type"] = "implicit", + }, + }, + ["1647_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", - }, - }, - ["1645_ChillEffectivenessOnSelf"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_569299859", + ["text"] = "+#% to all maximum Resistances", + ["type"] = "implicit", + }, + }, + ["1650_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", - }, - }, - ["1670_FireDamageLifeLeechPermyriad"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1478653032", + ["text"] = "#% reduced Effect of Chill on you", + ["type"] = "implicit", + }, + }, + ["1675_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", - }, - }, - ["1675_ColdDamageLifeLeechPermyriad"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1743742391", + ["text"] = "#% of Fire Damage Leeched as Life", + ["type"] = "implicit", + }, + }, + ["167_LocalIncreaseSocketedGemLevel"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2843100721", + ["text"] = "+# to Level of Socketed Gems", + ["type"] = "implicit", + }, + }, + ["1680_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", - }, - }, - ["1679_LightningDamageLifeLeechPermyriad"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2459451600", + ["text"] = "#% of Cold Damage Leeched as Life", + ["type"] = "implicit", + }, + }, + ["1684_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", - }, - }, - ["167_LocalIncreaseSocketedFireGemLevelCorrupted"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2696663331", + ["text"] = "#% of Lightning Damage Leeched as Life", + ["type"] = "implicit", + }, + }, + ["172_LocalIncreaseSocketedFireGemLevelCorrupted"] = { ["Helmet"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_339179093", - ["text"] = "+# to Level of Socketed Fire Gems", - ["type"] = "implicit", - }, - }, - ["168_LocalIncreaseSocketedColdGemLevelCorrupted"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_339179093", + ["text"] = "+# to Level of Socketed Fire Gems", + ["type"] = "implicit", + }, + }, + ["173_LocalIncreaseSocketedColdGemLevelCorrupted"] = { ["Helmet"] = { - ["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", - }, - }, - ["1744_ManaGainPerTarget"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1645459191", + ["text"] = "+# to Level of Socketed Cold Gems", + ["type"] = "implicit", + }, + }, + ["1749_ManaGainPerTarget"] = { ["Ring"] = { - ["max"] = 6, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_820939409", - ["text"] = "Gain # Mana per Enemy Hit with Attacks", - ["type"] = "implicit", - }, - }, - ["175_IncreaseSocketedDurationGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2115168758", - ["text"] = "+# to Level of Socketed Duration Gems", - ["type"] = "implicit", - }, - }, - ["176_IncreasedSocketedAoEGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2551600084", - ["text"] = "+# to Level of Socketed AoE Gems", - ["type"] = "implicit", - }, - }, - ["177_LocalIncreaseSocketedProjectileLevelCorrupted"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2176571093", - ["text"] = "+# to Level of Socketed Projectile Gems", - ["type"] = "implicit", - }, - }, - ["1788_AdditionalArrowChain"] = { + ["max"] = 6, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["type"] = "implicit", + }, + }, + ["174_LocalIncreaseSocketedLightningGemLevelCorrupted"] = { + ["Helmet"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4043416969", + ["text"] = "+# to Level of Socketed Lightning Gems", + ["type"] = "implicit", + }, + }, + ["1793_AdditionalArrowChain"] = { ["Quiver"] = { - ["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, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1001077145", + ["text"] = "Arrows Chain +# times", + ["type"] = "implicit", + }, + }, + ["1796_AdditionalArrowPierce"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3423006863", - ["text"] = "Arrows Pierce an additional Target", - ["type"] = "implicit", - }, - }, - ["1792_AdditionalProjectilesCorrupted"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3423006863", + ["text"] = "Arrows Pierce an additional Target", + ["type"] = "implicit", + }, + }, + ["1797_AdditionalProjectilesCorrupted"] = { ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_74338099", - ["text"] = "Skills fire an additional Projectile", - ["type"] = "implicit", - }, - }, - ["1794_AdditionalArrows"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_74338099", + ["text"] = "Skills fire an additional Projectile", + ["type"] = "implicit", + }, + }, + ["1799_AdditionalArrows"] = { + ["2HWeapon"] = { + ["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", - }, - }, - ["1796_ProjectileSpeed"] = { - ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 4, - }, + ["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", + }, + }, + ["1801_ProjectileSpeed"] = { + ["1HWeapon"] = { + ["max"] = 8, + ["min"] = 4, + }, ["Wand"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - ["type"] = "implicit", - }, - }, - ["1798_MovementVelocity"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "implicit", + }, + }, + ["1803_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", - }, - }, - ["1804_MaximumEnduranceCharges"] = { + ["max"] = 10, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "implicit", + }, + }, + ["1809_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", - }, - }, - ["1809_MaximumFrenzyCharges"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1515657623", + ["text"] = "+# to Maximum Endurance Charges", + ["type"] = "implicit", + }, + }, + ["180_IncreaseSocketedDurationGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2115168758", + ["text"] = "+# to Level of Socketed Duration Gems", + ["type"] = "implicit", + }, + }, + ["1814_MaximumFrenzyCharges"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4078695", - ["text"] = "+# to Maximum Frenzy Charges", - ["type"] = "implicit", - }, - }, - ["180_LocalIncreaseSocketedMinionGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3604946673", - ["text"] = "+# to Level of Socketed Minion Gems", - ["type"] = "implicit", - }, - }, - ["1814_IncreasedMaximumPowerCharges"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4078695", + ["text"] = "+# to Maximum Frenzy Charges", + ["type"] = "implicit", + }, + }, + ["1819_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", - }, - }, - ["181_LocalIncreaseSocketedAuraLevelCorrupted"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2452998583", - ["text"] = "+# to Level of Socketed Aura Gems", - ["type"] = "implicit", - }, - }, - ["1830_PowerChargeOnCriticalStrikeChance"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_227523295", + ["text"] = "+# to Maximum Power Charges", + ["type"] = "implicit", + }, + }, + ["181_IncreasedSocketedAoEGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2551600084", + ["text"] = "+# to Level of Socketed AoE Gems", + ["type"] = "implicit", + }, + }, + ["182_LocalIncreaseSocketedProjectileLevelCorrupted"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2176571093", + ["text"] = "+# to Level of Socketed Projectile Gems", + ["type"] = "implicit", + }, + }, + ["1835_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", - }, - }, - ["1839_CannotBeIgnited"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Strike", + ["type"] = "implicit", + }, + }, + ["1844_CannotBeIgnited"] = { ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_331731406", - ["text"] = "Cannot be Ignited", - ["type"] = "implicit", - }, - }, - ["1844_ChanceToAvoidFreezeAndChill"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_331731406", + ["text"] = "Cannot be Ignited", + ["type"] = "implicit", + }, + }, + ["1849_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", - }, - }, - ["1845_ChanceToAvoidFreezeAndChill"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", + ["type"] = "implicit", + }, + }, + ["1850_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", - }, - }, - ["1846_AvoidIgnite"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "implicit", + }, + }, + ["1851_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", - }, - }, - ["1848_AvoidShock"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", + ["type"] = "implicit", + }, + }, + ["1853_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", - }, - }, - ["1848_ReducedShockChance"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "implicit", + }, + }, + ["1853_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", - }, - }, - ["1849_ChanceToAvoidPoison"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "implicit", + }, + }, + ["1854_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", - }, - }, - ["184_LocalIncreaseSocketedCurseLevelCorrupted"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3691695237", - ["text"] = "+# to Level of Socketed Curse Gems", - ["type"] = "implicit", - }, - }, - ["1851_AvoidStun"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", + ["type"] = "implicit", + }, + }, + ["1856_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", - }, - }, - ["1872_ReducedChillDuration"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "implicit", + }, + }, + ["185_LocalIncreaseSocketedMinionGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3604946673", + ["text"] = "+# to Level of Socketed Minion Gems", + ["type"] = "implicit", + }, + }, + ["186_LocalIncreaseSocketedAuraLevelCorrupted"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2452998583", + ["text"] = "+# to Level of Socketed Aura Gems", + ["type"] = "implicit", + }, + }, + ["1877_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", - }, - }, - ["1873_ReducedShockDuration"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1874553720", + ["text"] = "#% reduced Chill Duration on you", + ["type"] = "implicit", + }, + }, + ["1878_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", - }, - }, - ["1874_ReducedFreezeDuration"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_99927264", + ["text"] = "#% reduced Shock Duration on you", + ["type"] = "implicit", + }, + }, + ["1879_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", - }, - }, - ["1875_ReducedBurnDuration"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "implicit", + }, + }, + ["1880_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", - }, - }, - ["1875_ReducedIgniteDurationOnSelf"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "implicit", + }, + }, + ["1880_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", - }, - }, - ["1877_BurnDamage"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "implicit", + }, + }, + ["1882_BurnDamage"] = { ["Helmet"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1175385867", - ["text"] = "#% increased Burning Damage", - ["type"] = "implicit", - }, - }, - ["187_IncreasedSocketedTrapOrMineGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_150668988", - ["text"] = "+# to Level of Socketed Trap or Mine Gems", - ["type"] = "implicit", - }, - }, - ["1880_AreaOfEffect"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", + ["type"] = "implicit", + }, + }, + ["1885_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", - }, - }, - ["188_LocalIncreaseSocketedVaalGemLevel"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "implicit", + }, + }, + ["189_LocalIncreaseSocketedCurseLevelCorrupted"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3691695237", + ["text"] = "+# to Level of Socketed Curse Gems", + ["type"] = "implicit", + }, + }, + ["1900_SkillEffectDuration"] = { + ["Belt"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "implicit", + }, + }, + ["192_IncreasedSocketedTrapOrMineGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_150668988", + ["text"] = "+# to Level of Socketed Trap or Mine Gems", + ["type"] = "implicit", + }, + }, + ["1937_FireDamageAsPortionOfDamage"] = { + ["Quiver"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_369494213", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", + ["type"] = "implicit", + }, + }, + ["1938_ColdDamageAsPortionOfDamage"] = { + ["Quiver"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_979246511", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "implicit", + }, + }, + ["1939_LightningDamageAsPortionOfDamage"] = { + ["Quiver"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_219391121", + ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", + ["type"] = "implicit", + }, + }, + ["193_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", - }, - }, - ["1895_SkillEffectDuration"] = { - ["Belt"] = { - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["193_LocalSocketedWarcryGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1672793731", - ["text"] = "+# to Level of Socketed Warcry Gems", - ["type"] = "implicit", - }, - }, - ["1944_LifeRegenerationRatePercentage"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1170386874", + ["text"] = "+# to Level of Socketed Vaal Gems", + ["type"] = "implicit", + }, + }, + ["1949_LifeRegenerationRatePercentage"] = { ["Helmet"] = { - ["max"] = 2, - ["min"] = 1.6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_836936635", - ["text"] = "Regenerate #% of Life per second", - ["type"] = "implicit", - }, - }, - ["1955_ConvertPhysicalToFire"] = { + ["max"] = 2, + ["min"] = 1.6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_836936635", + ["text"] = "Regenerate #% of Life per second", + ["type"] = "implicit", + }, + }, + ["1960_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", - }, - }, - ["1957_ConvertPhysicalToCold"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["type"] = "implicit", + }, + }, + ["1962_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", - }, - }, - ["1959_MonsterConvertPhysicalDamageToLightning"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["type"] = "implicit", + }, + }, + ["1964_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", - }, - }, - ["1973_MinionDamage"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["type"] = "implicit", + }, + }, + ["1978_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", - }, - }, - ["1988_MaximumBlockChance"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "implicit", + }, + }, + ["198_LocalSocketedWarcryGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1672793731", + ["text"] = "+# to Level of Socketed Warcry Gems", + ["type"] = "implicit", + }, + }, + ["1993_MaximumBlockChance"] = { ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4124805414", - ["text"] = "+#% to maximum Chance to Block Attack Damage", - ["type"] = "implicit", - }, - }, - ["2039_CullingStrike"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4124805414", + ["text"] = "+#% to maximum Chance to Block Attack Damage", + ["type"] = "implicit", + }, + }, + ["2044_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, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2524254339", - ["text"] = "Culling Strike", - ["type"] = "implicit", - }, - }, - ["2042_HitsCauseMonsterFlee"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2524254339", + ["text"] = "Culling Strike", + ["type"] = "implicit", + }, + }, + ["2047_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", - }, - }, - ["2057_ActorSize"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3181974858", + ["text"] = "#% chance to Cause Monsters to Flee", + ["type"] = "implicit", + }, + }, + ["2062_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", - }, - }, - ["2070_AddedPhysicalDamageToBowAttacksCorrupted"] = { + ["max"] = -1, + ["min"] = -1, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1408638732", + ["text"] = "#% increased Character Size", + ["type"] = "implicit", + }, + }, + ["2075_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", - }, - }, - ["2080_AddedFireDamageToBowAttacksCorrupted"] = { + ["max"] = 15.5, + ["min"] = 4.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1760576992", + ["text"] = "# to # Added Physical Damage with Bow Attacks", + ["type"] = "implicit", + }, + }, + ["2085_AddedFireDamageToBowAttacksCorrupted"] = { ["Quiver"] = { - ["max"] = 54, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3120164895", - ["text"] = "# to # Added Fire Damage with Bow Attacks", - ["type"] = "implicit", - }, - }, - ["2088_AddedColdDamageToBowAttacksCorrupted"] = { + ["max"] = 54, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3120164895", + ["text"] = "# to # Added Fire Damage with Bow Attacks", + ["type"] = "implicit", + }, + }, + ["2093_AddedColdDamageToBowAttacksCorrupted"] = { ["Quiver"] = { - ["max"] = 48.5, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_215124030", - ["text"] = "# to # Added Cold Damage with Bow Attacks", - ["type"] = "implicit", - }, - }, - ["2096_AddedLightningDamageToBowAttacksCorrupted"] = { + ["max"] = 48.5, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_215124030", + ["text"] = "# to # Added Cold Damage with Bow Attacks", + ["type"] = "implicit", + }, + }, + ["2101_AddedLightningDamageToBowAttacksCorrupted"] = { ["Quiver"] = { - ["max"] = 57, - ["min"] = 19.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1040269876", - ["text"] = "# to # Added Lightning Damage with Bow Attacks", - ["type"] = "implicit", - }, - }, - ["2103_AddedChaosDamageToBowAttacksCorrupted"] = { + ["max"] = 57, + ["min"] = 19.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1040269876", + ["text"] = "# to # Added Lightning Damage with Bow Attacks", + ["type"] = "implicit", + }, + }, + ["2108_AddedChaosDamageToBowAttacksCorrupted"] = { ["Quiver"] = { - ["max"] = 36, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3478075311", - ["text"] = "# to # Added Chaos Damage with Bow Attacks", - ["type"] = "implicit", - }, - }, - ["2168_AdditionalCurseOnEnemies"] = { + ["max"] = 36, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3478075311", + ["text"] = "# to # Added Chaos Damage with Bow Attacks", + ["type"] = "implicit", + }, + }, + ["2173_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", - }, - }, - ["2170_CurseEffectOnYouJewel"] = { + ["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", + }, + }, + ["2175_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", - }, - }, - ["2230_ReservationEfficiencyForJewel"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3407849389", + ["text"] = "#% reduced Effect of Curses on you", + ["type"] = "implicit", + }, + }, + ["2235_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", - }, - }, - ["2233_ReducedReservationForJewel"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2587176568", + ["text"] = "#% increased Reservation Efficiency of Skills", + ["type"] = "implicit", + }, + }, + ["2238_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", - }, - }, - ["2234_PhysicalAttackDamageTaken"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2587176568", + ["text"] = "#% increased Reservation Efficiency of Skills", + ["type"] = "implicit", + }, + }, + ["2239_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", - }, - }, - ["2239_AreaOfEffectDamageTaken"] = { + ["max"] = 17, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3441651621", + ["text"] = "+# Physical Damage taken from Attack Hits", + ["type"] = "implicit", + }, + }, + ["2244_AreaOfEffectDamageTaken"] = { ["Shield"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3001376862", - ["text"] = "#% reduced Area Damage taken from Hits", - ["type"] = "implicit", - }, - }, - ["2242_FireDamageTaken"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3001376862", + ["text"] = "#% reduced Area Damage taken from Hits", + ["type"] = "implicit", + }, + }, + ["2247_FireDamageTaken"] = { ["Chest"] = { - ["max"] = -4, - ["min"] = -6, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3743301799", - ["text"] = "#% increased Fire Damage taken", - ["type"] = "implicit", - }, - }, - ["2243_ChaosDamageTakenPercentage"] = { + ["max"] = -4, + ["min"] = -6, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3743301799", + ["text"] = "#% increased Fire Damage taken", + ["type"] = "implicit", + }, + }, + ["2248_ChaosDamageTakenPercentage"] = { ["Chest"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2960683632", - ["text"] = "#% reduced Chaos Damage taken", - ["type"] = "implicit", - }, - }, - ["2249_IncreasedShieldBlockPercentage"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2960683632", + ["text"] = "#% reduced Chaos Damage taken", + ["type"] = "implicit", + }, + }, + ["2254_IncreasedShieldBlockPercentage"] = { ["Shield"] = { - ["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, - }, - ["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", - }, - }, - ["2255_TrapsAllowed"] = { + ["max"] = 5, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+#% Chance to Block", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4253454700", + ["text"] = "+#% Chance to Block (Shields)", + ["type"] = "implicit", + }, + }, + ["2260_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", - }, - }, - ["2440_EnemiesCantLifeLeech"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2224292784", + ["text"] = "Can have up to # additional Trap placed at a time", + ["type"] = "implicit", + }, + }, + ["229_DisplaySocketedGemGetsIncreasedAreaOfEffectLevel"] = { + ["2HWeapon"] = { + ["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", + }, + }, + ["2445_EnemiesCantLifeLeech"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4293455942", - ["text"] = "Enemies Cannot Leech Life From you", - ["type"] = "implicit", - }, - }, - ["2447_PhysicalDamageTakenAsFirePercent"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4293455942", + ["text"] = "Enemies Cannot Leech Life From you", + ["type"] = "implicit", + }, + }, + ["2452_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", - }, - }, - ["2448_PhysicalDamageTakenAsCold"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "implicit", + }, + }, + ["2453_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", - }, - }, - ["2449_PhysicalDamageTakenAsLightningPercent"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "implicit", + }, + }, + ["2454_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", - }, - }, - ["2451_PhysicalDamageTakenAsChaos"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", + }, + }, + ["2456_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", - }, - }, - ["2455_PercentDamageGoesToMana"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "implicit", + }, + }, + ["2460_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", - }, - }, - ["2483_ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "implicit", + }, + }, + ["2488_ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["2HAxe"] = { - ["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", - }, - }, - ["2491_ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets"] = { + ["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", + }, + }, + ["2496_ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets"] = { ["1HAxe"] = { - ["max"] = 40, - ["min"] = 30, - }, + ["max"] = 40, + ["min"] = 30, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 30, - }, + ["max"] = 40, + ["min"] = 30, + }, ["2HAxe"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3944782785", - ["text"] = "#% increased Attack Damage against Bleeding Enemies", - ["type"] = "implicit", - }, - }, - ["2522_CurseOnHitLevelTemporalChains"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3433724931", - ["text"] = "Curse Enemies with Temporal Chains on Hit", - ["type"] = "implicit", - }, - }, - ["2523_CurseOnHitLevelVulnerability"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3967845372", - ["text"] = "Curse Enemies with Vulnerability on Hit", - ["type"] = "implicit", - }, - }, - ["2525_CurseOnHitLevelElementalWeakness"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2028847114", - ["text"] = "Curse Enemies with Elemental Weakness on Hit", - ["type"] = "implicit", - }, - }, - ["2528_CurseOnHitDespair"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2764915899", - ["text"] = "Curse Enemies with Despair on Hit", - ["type"] = "implicit", - }, - }, - ["2529_CurseOnHitEnfeeble"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1625819882", - ["text"] = "Curse Enemies with Enfeeble on Hit", - ["type"] = "implicit", - }, - }, - ["2631_FrenzyChargeOnKillChance"] = { - ["1HWeapon"] = { - ["max"] = 11, - ["min"] = 9, - }, - ["2HWeapon"] = { - ["max"] = 11, - ["min"] = 9, - }, + ["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", + }, + }, + ["2527_CurseOnHitLevelTemporalChains"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3433724931", + ["text"] = "Curse Enemies with Temporal Chains on Hit", + ["type"] = "implicit", + }, + }, + ["2528_CurseOnHitLevelVulnerability"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3967845372", + ["text"] = "Curse Enemies with Vulnerability on Hit", + ["type"] = "implicit", + }, + }, + ["2530_CurseOnHitLevelElementalWeakness"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2028847114", + ["text"] = "Curse Enemies with Elemental Weakness on Hit", + ["type"] = "implicit", + }, + }, + ["2533_CurseOnHitDespair"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2764915899", + ["text"] = "Curse Enemies with Despair on Hit", + ["type"] = "implicit", + }, + }, + ["2534_CurseOnHitEnfeeble"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1625819882", + ["text"] = "Curse Enemies with Enfeeble on Hit", + ["type"] = "implicit", + }, + }, + ["2636_FrenzyChargeOnKillChance"] = { + ["1HWeapon"] = { + ["max"] = 11, + ["min"] = 9, + }, + ["2HWeapon"] = { + ["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", - }, - }, - ["2699_DamageRemovedFromManaBeforeLife"] = { + ["max"] = 11, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["type"] = "implicit", + }, + }, + ["2704_DamageRemovedFromManaBeforeLife"] = { ["Helmet"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", - ["type"] = "implicit", - }, - }, - ["2745_LocalMeleeWeaponRange"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "implicit", + }, + }, + ["2750_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", - }, - }, - ["2749_ProjectileDamageTaken"] = { + ["max"] = 0.2, + ["min"] = 0.1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_350598685", + ["text"] = "+# metres to Weapon Range", + ["type"] = "implicit", + }, + }, + ["2754_ProjectileDamageTaken"] = { ["Shield"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1425651005", - ["text"] = "#% reduced Damage taken from Projectile Hits", - ["type"] = "implicit", - }, - }, - ["2849_FishingQuantity"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1425651005", + ["text"] = "#% reduced Damage taken from Projectile Hits", + ["type"] = "implicit", + }, + }, + ["2854_FishingQuantity"] = { ["FishingRod"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3802667447", - ["text"] = "#% increased Quantity of Fish Caught", - ["type"] = "implicit", - }, - }, - ["2850_FishingRarity"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3802667447", + ["text"] = "#% increased Quantity of Fish Caught", + ["type"] = "implicit", + }, + }, + ["2855_FishingRarity"] = { ["FishingRod"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3310914132", - ["text"] = "#% increased Rarity of Fish Caught", - ["type"] = "implicit", - }, - }, - ["2855_CorruptFish"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3310914132", + ["text"] = "#% increased Rarity of Fish Caught", + ["type"] = "implicit", + }, + }, + ["2860_CorruptFish"] = { ["FishingRod"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2451060005", - ["text"] = "You can catch Corrupted Fish", - ["type"] = "implicit", - }, - }, - ["2974_ImmunityToBlind"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2451060005", + ["text"] = "You can catch Corrupted Fish", + ["type"] = "implicit", + }, + }, + ["2979_ImmunityToBlind"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1436284579", - ["text"] = "Cannot be Blinded", - ["type"] = "implicit", - }, - }, - ["2980_ElementalPenetration"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1436284579", + ["text"] = "Cannot be Blinded", + ["type"] = "implicit", + }, + }, + ["2985_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", - }, - }, - ["2981_FireResistancePenetration"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2101383955", + ["text"] = "Damage Penetrates #% Elemental Resistances", + ["type"] = "implicit", + }, + }, + ["2986_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", - }, - }, - ["2983_ColdResistancePenetration"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "implicit", + }, + }, + ["2988_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", - }, - }, - ["2984_LightningResistancePenetration"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "implicit", + }, + }, + ["2989_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", - }, - }, - ["2993_ChanceToGainOnslaughtOnKill"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "implicit", + }, + }, + ["2998_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", - }, - }, - ["3026_ChargeDuration"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3023957681", + ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + ["type"] = "implicit", + }, + }, + ["3031_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", - }, - }, - ["3094_ImmuneToSilence"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2839036860", + ["text"] = "#% increased Endurance, Frenzy and Power Charge Duration", + ["type"] = "implicit", + }, + }, + ["3099_ImmuneToSilence"] = { ["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_1654414582", - ["text"] = "You cannot be Cursed with Silence", - ["type"] = "implicit", - }, - }, - ["3095_VaalSkillDamage"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1654414582", + ["text"] = "You cannot be Cursed with Silence", + ["type"] = "implicit", + }, + }, + ["3100_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", - }, - }, - ["3096_DamageWhileDead"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2257141320", + ["text"] = "#% increased Damage with Vaal Skills", + ["type"] = "implicit", + }, + }, + ["3101_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", - }, - }, - ["3099_ChaosDamagePerCorruptedItem"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3582580206", + ["text"] = "#% increased Damage while Dead", + ["type"] = "implicit", + }, + }, + ["3104_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", - }, - }, - ["3100_LifeLeechRatePerCorruptedItem"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4004011170", + ["text"] = "#% increased Chaos Damage for each Corrupted Item Equipped", + ["type"] = "implicit", + }, + }, + ["3105_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", - }, - }, - ["3102_ManaLeechRatePerCorrupteditem"] = { + ["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", + }, + }, + ["3107_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", - }, - }, - ["3132_ChanceToTakeCriticalStrike"] = { + ["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", + }, + }, + ["3137_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", - }, - }, - ["3186_MovementSpeedDuringFlaskEffect"] = { + ["max"] = 100, + ["min"] = 60, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_165218607", + ["text"] = "Hits have #% increased Critical Strike Chance against you", + ["type"] = "implicit", + }, + }, + ["3191_MovementSpeedDuringFlaskEffect"] = { ["Belt"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_304970526", - ["text"] = "#% increased Movement Speed during any Flask Effect", - ["type"] = "implicit", - }, - }, - ["324_SupportedByLifeGainOnHit"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_304970526", + ["text"] = "#% increased Movement Speed during any Flask Effect", + ["type"] = "implicit", + }, + }, + ["329_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", - }, - }, - ["325_SocketedGemsSupportedByLifetap"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2032386732", + ["text"] = "Socketed Gems are Supported by Level # Life Gain On Hit", + ["type"] = "implicit", + }, + }, + ["3305_AttackSpeedDuringFlaskEffect"] = { + ["Belt"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1365052901", + ["text"] = "#% increased Attack Speed during any Flask Effect", + ["type"] = "implicit", + }, + }, + ["330_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", - }, - }, - ["3300_AttackSpeedDuringFlaskEffect"] = { - ["Belt"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1365052901", - ["text"] = "#% increased Attack Speed during any Flask Effect", - ["type"] = "implicit", - }, - }, - ["3356_IncreasedAuraEffectAngerCorrupted"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1079239905", + ["text"] = "Socketed Gems are Supported by Level # Lifetap", + ["type"] = "implicit", + }, + }, + ["3361_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", - }, - }, - ["3361_IncreasedAuraEffectWrathCorrupted"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1592278124", + ["text"] = "Anger has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["3366_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", - }, - }, - ["3363_IncreasedAuraEffectGraceCorrupted"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2181791238", + ["text"] = "Wrath has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["3368_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", - }, - }, - ["3366_IncreasedAuraEffectHatredCorrupted"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_397427740", + ["text"] = "Grace has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["3371_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", - }, - }, - ["3367_IncreasedAuraEffectDeterminationCorrupted"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3742945352", + ["text"] = "Hatred has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["3372_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", - }, - }, - ["3368_IncreasedAuraEffectDisciplineCorrupted"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3653400807", + ["text"] = "Determination has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["3373_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", - }, - }, - ["3369_CannotBePoisoned"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_788317702", + ["text"] = "Discipline has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["3374_CannotBePoisoned"] = { ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3835551335", - ["text"] = "Cannot be Poisoned", - ["type"] = "implicit", - }, - }, - ["3377_UnholyMightOnKillPercentChance"] = { - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3835551335", + ["text"] = "Cannot be Poisoned", + ["type"] = "implicit", + }, + }, + ["3382_UnholyMightOnKillPercentChance"] = { + ["1HWeapon"] = { + ["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", - }, - }, - ["3388_LightningDamageTaken"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3562211447", + ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", + ["type"] = "implicit", + }, + }, + ["3393_LightningDamageTaken"] = { ["Chest"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1276918229", - ["text"] = "#% reduced Lightning Damage taken", - ["type"] = "implicit", - }, - }, - ["3389_ColdDamageTakenPercentage"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1276918229", + ["text"] = "#% reduced Lightning Damage taken", + ["type"] = "implicit", + }, + }, + ["3394_ColdDamageTakenPercentage"] = { ["Chest"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3303114033", - ["text"] = "#% reduced Cold Damage taken", - ["type"] = "implicit", - }, - }, - ["344_SupportedByOnslaught"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3303114033", + ["text"] = "#% reduced Cold Damage taken", + ["type"] = "implicit", + }, + }, + ["349_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", - }, - }, - ["4215_BleedingImmunity"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3237923082", + ["text"] = "Socketed Gems are Supported by Level # Momentum", + ["type"] = "implicit", + }, + }, + ["4220_BleedingImmunity"] = { ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1901158930", - ["text"] = "Bleeding cannot be inflicted on you", - ["type"] = "implicit", - }, - }, - ["4216_ChanceToAvoidBleeding"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1901158930", + ["text"] = "Bleeding cannot be inflicted on you", + ["type"] = "implicit", + }, + }, + ["4221_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", - }, - }, - ["4313_PhysicalDamageReductionWhileNotMoving"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", + ["type"] = "implicit", + }, + }, + ["4318_PhysicalDamageReductionWhileNotMoving"] = { ["Chest"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2181129193", - ["text"] = "#% additional Physical Damage Reduction while stationary", - ["type"] = "implicit", - }, - }, - ["4314_AddedArmourWhileStationary"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2181129193", + ["text"] = "#% additional Physical Damage Reduction while stationary", + ["type"] = "implicit", + }, + }, + ["4319_AddedArmourWhileStationary"] = { ["Boots"] = { - ["max"] = 322, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2551779822", - ["text"] = "+# Armour while stationary", - ["type"] = "implicit", - }, - }, - ["462_DisplaySocketedGemsGetAddedFireDamage"] = { + ["max"] = 322, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2551779822", + ["text"] = "+# Armour while stationary", + ["type"] = "implicit", + }, + }, + ["467_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", - }, - }, - ["466_DisplaySocketedGemGetsElementalProliferation"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 12, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2572192375", + ["text"] = "Socketed Gems are Supported by Level # Added Fire Damage", + ["type"] = "implicit", + }, + }, + ["471_DisplaySocketedGemGetsElementalProliferation"] = { + ["1HWeapon"] = { + ["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", - }, - }, - ["470_SupportedByBlind"] = { - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2929101122", + ["text"] = "Socketed Gems are Supported by Level # Elemental Proliferation", + ["type"] = "implicit", + }, + }, + ["475_SupportedByBlind"] = { + ["2HWeapon"] = { + ["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", - }, - }, - ["471_SupportedByMeleeSplash"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2223640518", + ["text"] = "Socketed Gems are supported by Level # Blind", + ["type"] = "implicit", + }, + }, + ["476_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", - }, - }, - ["472_SupportedByCastOnCrit"] = { - ["Gloves"] = { - ["max"] = 12, - ["min"] = 12, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1811422871", + ["text"] = "Socketed Gems are supported by Level # Melee Splash", + ["type"] = "implicit", + }, + }, + ["477_SupportedByCastOnCrit"] = { + ["Gloves"] = { + ["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", - }, - }, - ["477_SupportedByCastOnStun"] = { - ["Gloves"] = { - ["max"] = 12, - ["min"] = 12, - }, + ["max"] = 12, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2325632050", + ["text"] = "Socketed Gems are supported by Level # Cast On Critical Strike", + ["type"] = "implicit", + }, + }, + ["4797_AdditionalCriticalStrikeChanceWithAttacks"] = { + ["Gloves"] = { + ["max"] = 0.8, + ["min"] = 0.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2572042788", + ["text"] = "Attacks have +#% to Critical Strike Chance", + ["type"] = "implicit", + }, + }, + ["482_SupportedByCastOnStun"] = { + ["Gloves"] = { + ["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", - }, - }, - ["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", - }, - }, - ["479_SupportedByStun"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1079148723", + ["text"] = "Socketed Gems are supported by Level # Cast when Stunned", + ["type"] = "implicit", + }, + }, + ["484_SupportedByStun"] = { ["1HMace"] = { - ["max"] = 6, - ["min"] = 6, - }, + ["max"] = 6, + ["min"] = 6, + }, ["1HWeapon"] = { - ["max"] = 6, - ["min"] = 6, - }, + ["max"] = 6, + ["min"] = 6, + }, ["2HMace"] = { - ["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", - }, - }, - ["480_SupportedByAccuracy"] = { + ["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", + }, + }, + ["485_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", - }, - }, - ["481_SupportedByMultistrike"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1567462963", + ["text"] = "Socketed Gems are supported by Level # Additional Accuracy", + ["type"] = "implicit", + }, + }, + ["486_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", - }, - }, - ["482_SupportedByProjectileSpeed"] = { - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2501237765", + ["text"] = "Socketed Gems are supported by Level # Multistrike", + ["type"] = "implicit", + }, + }, + ["487_SupportedByProjectileSpeed"] = { + ["2HWeapon"] = { + ["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", - }, - }, - ["483_SupportedByLifeLeech"] = { - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_99089516", + ["text"] = "Socketed Gems are supported by Level # Faster Projectiles", + ["type"] = "implicit", + }, + }, + ["488_SupportedByLifeLeech"] = { + ["1HWeapon"] = { + ["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", - }, - }, - ["485_SupportedByCriticalMultiplier"] = { - ["1HWeapon"] = { - ["max"] = 14, - ["min"] = 14, - }, + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_891277550", + ["text"] = "Socketed Gems are supported by Level # Life Leech", + ["type"] = "implicit", + }, + }, + ["490_SupportedByCriticalMultiplier"] = { + ["1HWeapon"] = { + ["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", - }, - }, - ["486_SupportedByFork"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 14, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1108755349", + ["text"] = "Socketed Gems are supported by Level # Increased Critical Damage", + ["type"] = "implicit", + }, + }, + ["491_SupportedByFork"] = { + ["2HWeapon"] = { + ["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", - }, - }, - ["487_SupportedByWeaponElementalDamage"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2062753054", + ["text"] = "Socketed Gems are supported by Level # Fork", + ["type"] = "implicit", + }, + }, + ["492_SupportedByWeaponElementalDamage"] = { ["1HMace"] = { - ["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", - }, - }, - ["4947_AvoidMaimChance"] = { + ["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", + }, + }, + ["4952_AvoidMaimChance"] = { ["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_1126826428", - ["text"] = "You cannot be Maimed", - ["type"] = "implicit", - }, - }, - ["494_SupportedByReducedMana"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1126826428", + ["text"] = "You cannot be Maimed", + ["type"] = "implicit", + }, + }, + ["499_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", - }, - }, - ["496_SupportedByFortify"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1866911844", + ["text"] = "Socketed Gems are Supported by Level # Inspiration", + ["type"] = "implicit", + }, + }, + ["501_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", - }, - }, - ["500_DisplaySocketedGemsGetFasterCast"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_107118693", + ["text"] = "Socketed Gems are Supported by Level # Fortify", + ["type"] = "implicit", + }, + }, + ["505_DisplaySocketedGemsGetFasterCast"] = { ["1HMace"] = { - ["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", - }, - }, - ["530_SocketedSkillsManaMultiplier"] = { + ["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", + }, + }, + ["535_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", - }, - }, - ["5408_CorruptedBloodImmunity"] = { + ["max"] = 90, + ["min"] = 90, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2865550257", + ["text"] = "Socketed Skill Gems get a #% Cost & Reservation Multiplier", + ["type"] = "implicit", + }, + }, + ["5413_CorruptedBloodImmunity"] = { ["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_1658498488", - ["text"] = "Corrupted Blood cannot be inflicted on you", - ["type"] = "implicit", - }, - }, - ["5466_CastSpeedDuringFlaskEffect"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1658498488", + ["text"] = "Corrupted Blood cannot be inflicted on you", + ["type"] = "implicit", + }, + }, + ["5471_CastSpeedDuringFlaskEffect"] = { ["Belt"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_252194507", - ["text"] = "#% increased Cast Speed during any Flask Effect", - ["type"] = "implicit", - }, - }, - ["5687_GainEnduranceChargeOnStunChance"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_252194507", + ["text"] = "#% increased Cast Speed during any Flask Effect", + ["type"] = "implicit", + }, + }, + ["5692_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", - }, - }, - ["5798_ChillEffect"] = { + ["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", + }, + }, + ["5803_ChillEffect"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1793818220", - ["text"] = "#% increased Effect of Cold Ailments", - ["type"] = "implicit", - }, - }, - ["5922_IncreasedCriticalStrikeUnderFlaskEffect"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1793818220", + ["text"] = "#% increased Effect of Cold Ailments", + ["type"] = "implicit", + }, + }, + ["5927_IncreasedCriticalStrikeUnderFlaskEffect"] = { ["Belt"] = { - ["max"] = 40, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2898434123", - ["text"] = "#% increased Critical Strike Chance during any Flask Effect", - ["type"] = "implicit", - }, - }, - ["5953_AdditionalCriticalStrikeMultiplierUnderFlaskEffect"] = { + ["max"] = 40, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2898434123", + ["text"] = "#% increased Critical Strike Chance during any Flask Effect", + ["type"] = "implicit", + }, + }, + ["5958_AdditionalCriticalStrikeMultiplierUnderFlaskEffect"] = { ["Belt"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_240289863", - ["text"] = "+#% to Critical Strike Multiplier during any Flask Effect", - ["type"] = "implicit", - }, - }, - ["6161_IncreasedAuraEffectMalevolenceCorrupted"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_240289863", + ["text"] = "+#% to Critical Strike Multiplier during any Flask Effect", + ["type"] = "implicit", + }, + }, + ["6166_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", + }, + }, + ["6326_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", + }, + }, + ["6706_GainFrenzyChargeAfterSpending200Mana"] = { ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3868549606", - ["text"] = "Gain a Frenzy Charge after Spending a total of 200 Mana", - ["type"] = "implicit", - }, - }, - ["6878_AddedEvasionWhileMovingCorrupted"] = { + ["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", + }, + }, + ["6883_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", + }, + }, + ["7175_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", + }, + }, + ["7411_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", + }, + }, + ["9498_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", + }, + }, + ["9709_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", + }, + }, + ["9732_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", + }, + }, + ["9733_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", + }, + }, + ["9968_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", + }, + }, + ["9977_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"] = { + ["10018_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", + }, + }, + ["10018_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", + }, + }, + ["10018_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"] = { - ["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"] = { - ["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"] = { - ["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"] = { - ["Gloves"] = { - ["max"] = -10, - ["min"] = -24, - }, - ["inverseKey"] = "slower", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1625982517", - ["text"] = "Withered you Inflict expires #% faster", - ["type"] = "implicit", - }, - }, - ["10623_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"] = { - ["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"] = 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", + }, + }, + ["10187_SpellsHinderOnHitChance"] = { + ["Gloves"] = { + ["max"] = 40, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3002506763", + ["text"] = "#% chance to Hinder Enemies on Hit with Spells", + ["type"] = "implicit", + }, + }, + ["10187_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", + }, + }, + ["10187_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", + }, + }, + ["10622_WitherExpireSpeed"] = { + ["Gloves"] = { + ["max"] = -10, + ["min"] = -24, + }, + ["inverseKey"] = "slower", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1625982517", + ["text"] = "Withered you Inflict expires #% faster", + ["type"] = "implicit", + }, + }, + ["10622_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", + }, + }, + ["10622_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", + }, + }, + ["10720_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", + }, + }, + ["10720_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", + }, + }, + ["10720_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", - }, - }, - ["1138_BlockPercent"] = { + ["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", + }, + }, + ["1143_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", - }, - }, - ["1138_BlockPercentPinnaclePresence"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "implicit", + }, + }, + ["1143_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", - }, - }, - ["1138_BlockPercentUniquePresence"] = { + ["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", + }, + }, + ["1143_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", - }, - }, - ["1143_ChanceToSuppressSpells"] = { + ["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", + }, + }, + ["1148_ChanceToSuppressSpells"] = { ["Amulet"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["Gloves"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3680664274", - ["text"] = "+#% chance to Suppress Spell Damage", - ["type"] = "implicit", - }, - }, - ["1143_ChanceToSuppressSpellsPinnaclePresence"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", + ["type"] = "implicit", + }, + }, + ["1148_ChanceToSuppressSpellsPinnaclePresence"] = { ["Amulet"] = { - ["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", - }, - }, - ["1143_ChanceToSuppressSpellsUniquePresence"] = { + ["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", + }, + }, + ["1148_ChanceToSuppressSpellsUniquePresence"] = { ["Amulet"] = { - ["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", - }, - }, - ["1160_SpellBlockPercentage"] = { + ["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", + }, + }, + ["1165_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", - }, - }, - ["1160_SpellBlockPercentagePinnaclePresence"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "implicit", + }, + }, + ["1165_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", - }, - }, - ["1160_SpellBlockPercentageUniquePresence"] = { + ["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", + }, + }, + ["1165_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", - }, - }, - ["1198_AttackDamage"] = { + ["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", + }, + }, + ["1203_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", - }, - }, - ["1198_AttackDamagePinnaclePresence"] = { + ["max"] = 29, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "implicit", + }, + }, + ["1203_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", - }, - }, - ["1198_AttackDamageUniquePresence"] = { + ["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", + }, + }, + ["1203_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", - }, - }, - ["1223_SpellDamage"] = { + ["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", + }, + }, + ["1228_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", - }, - }, - ["1223_SpellDamagePinnaclePresence"] = { + ["max"] = 29, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "implicit", + }, + }, + ["1228_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", - }, - }, - ["1223_SpellDamageUniquePresence"] = { + ["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", + }, + }, + ["1228_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", - }, - }, - ["1434_IncreasedAccuracyPercent"] = { - ["Gloves"] = { - ["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", - }, - }, - ["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", - }, - }, - ["1541_GlobalPhysicalDamageReductionRatingPercent"] = { + ["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", + }, + }, + ["1439_IncreasedAccuracyPercent"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "implicit", + }, + }, + ["1439_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", + }, + }, + ["1439_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", + }, + }, + ["1546_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", - }, - }, - ["1541_GlobalPhysicalDamageReductionRatingPercentPinnaclePresence"] = { + ["max"] = 28, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "implicit", + }, + }, + ["1546_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", - }, - }, - ["1541_GlobalPhysicalDamageReductionRatingPercentUniquePresence"] = { + ["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", + }, + }, + ["1546_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", - }, - }, - ["1549_GlobalEvasionRatingPercent"] = { + ["max"] = 34, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1980216452", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Armour", + ["type"] = "implicit", + }, + }, + ["1554_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", - }, - }, - ["1549_GlobalEvasionRatingPercentPinnaclePresence"] = { + ["max"] = 28, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "implicit", + }, + }, + ["1554_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", - }, - }, - ["1549_GlobalEvasionRatingPercentUniquePresence"] = { + ["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", + }, + }, + ["1554_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", - }, - }, - ["1561_GlobalEnergyShieldPercent"] = { + ["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", + }, + }, + ["1566_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", - }, - }, - ["1561_GlobalEnergyShieldPercentPinnaclePresence"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "implicit", + }, + }, + ["1566_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", - }, - }, - ["1561_GlobalEnergyShieldPercentUniquePresence"] = { + ["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", + }, + }, + ["1566_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", - }, - }, - ["1565_EnergyShieldRegeneration"] = { + ["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", + }, + }, + ["1570_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", - }, - }, - ["1565_EnergyShieldRegenerationPinnaclePresence"] = { + ["max"] = 26, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "implicit", + }, + }, + ["1570_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", - }, - }, - ["1565_EnergyShieldRegenerationUniquePresence"] = { + ["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", + }, + }, + ["1570_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", - }, - }, - ["1568_EnergyShieldRecoveryRate"] = { + ["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", + }, + }, + ["1573_EnergyShieldRecoveryRate"] = { ["Chest"] = { - ["max"] = 12, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_988575597", - ["text"] = "#% increased Energy Shield Recovery rate", - ["type"] = "implicit", - }, - }, - ["1568_EnergyShieldRecoveryRatePinnaclePresence"] = { + ["max"] = 12, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_988575597", + ["text"] = "#% increased Energy Shield Recovery rate", + ["type"] = "implicit", + }, + }, + ["1573_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", - }, - }, - ["1568_EnergyShieldRecoveryRateUniquePresence"] = { + ["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", + }, + }, + ["1573_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", - }, - }, - ["1576_LifeRegenerationPercentPerEnduranceCharge"] = { + ["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", + }, + }, + ["1581_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", - }, - }, - ["1576_LifeRegenerationPercentPerEnduranceChargePinnaclePresence"] = { + ["max"] = 0.3, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_989800292", + ["text"] = "Regenerate #% of Life per second per Endurance Charge", + ["type"] = "implicit", + }, + }, + ["1581_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", - }, - }, - ["1576_LifeRegenerationPercentPerEnduranceChargeUniquePresence"] = { + ["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", + }, + }, + ["1581_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", - }, - }, - ["1577_LifeRegenerationRate"] = { + ["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", + }, + }, + ["1582_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", - }, - }, - ["1577_LifeRegenerationRatePinnaclePresence"] = { + ["max"] = 12, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "implicit", + }, + }, + ["1582_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", - }, - }, - ["1577_LifeRegenerationRateUniquePresence"] = { + ["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", + }, + }, + ["1582_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", - }, - }, - ["1578_LifeRecoveryRate"] = { + ["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", + }, + }, + ["1583_LifeRecoveryRate"] = { ["Chest"] = { - ["max"] = 12, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3240073117", - ["text"] = "#% increased Life Recovery rate", - ["type"] = "implicit", - }, - }, - ["1578_LifeRecoveryRatePinnaclePresence"] = { + ["max"] = 12, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3240073117", + ["text"] = "#% increased Life Recovery rate", + ["type"] = "implicit", + }, + }, + ["1583_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", - }, - }, - ["1578_LifeRecoveryRateUniquePresence"] = { + ["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", + }, + }, + ["1583_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", - }, - }, - ["1584_ManaRegeneration"] = { + ["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", + }, + }, + ["1589_ManaRegeneration"] = { ["Helmet"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "implicit", - }, - }, - ["1584_ManaRegenerationPinnaclePresence"] = { + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "implicit", + }, + }, + ["1589_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", - }, - }, - ["1584_ManaRegenerationUniquePresence"] = { + ["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", + }, + }, + ["1589_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", - }, - }, - ["1586_ManaRecoveryRate"] = { + ["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", + }, + }, + ["1591_ManaRecoveryRate"] = { ["Chest"] = { - ["max"] = 12, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3513180117", - ["text"] = "#% increased Mana Recovery rate", - ["type"] = "implicit", - }, - }, - ["1586_ManaRecoveryRatePinnaclePresence"] = { + ["max"] = 12, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3513180117", + ["text"] = "#% increased Mana Recovery rate", + ["type"] = "implicit", + }, + }, + ["1591_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", - }, - }, - ["1586_ManaRecoveryRateUniquePresence"] = { + ["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", + }, + }, + ["1591_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", - }, - }, - ["1619_AllResistances"] = { + ["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", + }, + }, + ["1624_AllResistances"] = { ["Chest"] = { - ["max"] = 16, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2901986750", - ["text"] = "+#% to all Elemental Resistances", - ["type"] = "implicit", - }, - }, - ["1619_AllResistancesPinnaclePresence"] = { + ["max"] = 16, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2901986750", + ["text"] = "+#% to all Elemental Resistances", + ["type"] = "implicit", + }, + }, + ["1624_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", - }, - }, - ["1619_AllResistancesUniquePresence"] = { + ["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", + }, + }, + ["1624_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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["1843_AvoidElementalStatusAilments"] = { + ["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", + }, + }, + ["1673_PhysicalDamageLifeLeechHundredThousand"] = { + ["Gloves"] = { + ["max"] = 0.7, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2508100173", + ["text"] = "#% of Physical Damage Leeched as Life", + ["type"] = "implicit", + }, + }, + ["1673_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", + }, + }, + ["1673_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", + }, + }, + ["1677_FireDamageLifeLeechHundredThousand"] = { + ["Gloves"] = { + ["max"] = 0.7, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1743742391", + ["text"] = "#% of Fire Damage Leeched as Life", + ["type"] = "implicit", + }, + }, + ["1677_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", + }, + }, + ["1677_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", + }, + }, + ["1682_ColdDamageLifeLeechHundredThousand"] = { + ["Gloves"] = { + ["max"] = 0.7, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2459451600", + ["text"] = "#% of Cold Damage Leeched as Life", + ["type"] = "implicit", + }, + }, + ["1682_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", + }, + }, + ["1682_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", + }, + }, + ["1686_LightningDamageLifeLeechHundredThousand"] = { + ["Gloves"] = { + ["max"] = 0.7, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2696663331", + ["text"] = "#% of Lightning Damage Leeched as Life", + ["type"] = "implicit", + }, + }, + ["1686_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", + }, + }, + ["1686_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", + }, + }, + ["1689_ChaosDamageLifeLeechHundredThousand"] = { + ["Gloves"] = { + ["max"] = 0.7, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2238792070", + ["text"] = "#% of Chaos Damage Leeched as Life", + ["type"] = "implicit", + }, + }, + ["1689_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", + }, + }, + ["1689_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", + }, + }, + ["1795_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", + }, + }, + ["1795_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", + }, + }, + ["1795_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", + }, + }, + ["1848_AvoidElementalStatusAilments"] = { ["Boots"] = { - ["max"] = 32, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3005472710", - ["text"] = "#% chance to Avoid Elemental Ailments", - ["type"] = "implicit", - }, - }, - ["1843_AvoidElementalStatusAilmentsPinnaclePresence"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3005472710", + ["text"] = "#% chance to Avoid Elemental Ailments", + ["type"] = "implicit", + }, + }, + ["1848_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", - }, - }, - ["1843_AvoidElementalStatusAilmentsUniquePresence"] = { + ["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", + }, + }, + ["1848_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", - }, - }, - ["1849_ChanceToAvoidPoison"] = { + ["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", + }, + }, + ["1854_ChanceToAvoidPoison"] = { ["Boots"] = { - ["max"] = 50, - ["min"] = 33, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4053951709", - ["text"] = "#% chance to Avoid being Poisoned", - ["type"] = "implicit", - }, - }, - ["1849_ChanceToAvoidPoisonPinnaclePresence"] = { + ["max"] = 50, + ["min"] = 33, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", + ["type"] = "implicit", + }, + }, + ["1854_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", - }, - }, - ["1849_ChanceToAvoidPoisonUniquePresence"] = { + ["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", + }, + }, + ["1854_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", - }, - }, - ["1860_IncreasedAilmentDuration"] = { + ["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", + }, + }, + ["1865_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", - }, - }, - ["1860_IncreasedAilmentDurationPinnaclePresence"] = { + ["max"] = 24, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2419712247", + ["text"] = "#% increased Duration of Ailments on Enemies", + ["type"] = "implicit", + }, + }, + ["1865_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", - }, - }, - ["1860_IncreasedAilmentDurationUniquePresence"] = { + ["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", + }, + }, + ["1865_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", - }, - }, - ["1874_ReducedFreezeDuration"] = { + ["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", + }, + }, + ["1879_ReducedFreezeDuration"] = { ["Helmet"] = { - ["max"] = 50, - ["min"] = 33, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", - ["type"] = "implicit", - }, - }, - ["1874_ReducedFreezeDurationPinnaclePresence"] = { + ["max"] = 50, + ["min"] = 33, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "implicit", + }, + }, + ["1879_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", - }, - }, - ["1874_ReducedFreezeDurationUniquePresence"] = { + ["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", + }, + }, + ["1879_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", - }, - }, - ["1875_ReducedIgniteDurationOnSelf"] = { + ["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", + }, + }, + ["1880_ReducedIgniteDurationOnSelf"] = { ["Helmet"] = { - ["max"] = 50, - ["min"] = 33, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", - ["type"] = "implicit", - }, - }, - ["1875_ReducedIgniteDurationOnSelfPinnaclePresence"] = { + ["max"] = 50, + ["min"] = 33, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "implicit", + }, + }, + ["1880_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", - }, - }, - ["1875_ReducedIgniteDurationOnSelfUniquePresence"] = { + ["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", + }, + }, + ["1880_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", - }, - }, - ["1895_SkillEffectDuration"] = { + ["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", + }, + }, + ["1900_SkillEffectDuration"] = { ["Amulet"] = { - ["max"] = 18, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", - ["type"] = "implicit", - }, - }, - ["1895_SkillEffectDurationPinnaclePresence"] = { + ["max"] = 18, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "implicit", + }, + }, + ["1900_SkillEffectDurationPinnaclePresence"] = { ["Amulet"] = { - ["max"] = 30, - ["min"] = 23, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", - ["type"] = "implicit", - }, - }, - ["1895_SkillEffectDurationUniquePresence"] = { + ["max"] = 30, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "implicit", + }, + }, + ["1900_SkillEffectDurationUniquePresence"] = { ["Amulet"] = { - ["max"] = 24, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", - ["type"] = "implicit", - }, - }, - ["1932_PhysicalAddedAsFire"] = { + ["max"] = 24, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "implicit", + }, + }, + ["1937_PhysicalAddedAsFire"] = { ["Boots"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_369494213", - ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", - ["type"] = "implicit", - }, - }, - ["1932_PhysicalAddedAsFirePinnaclePresence"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_369494213", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", + ["type"] = "implicit", + }, + }, + ["1937_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", - }, - }, - ["1932_PhysicalAddedAsFireUniquePresence"] = { + ["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", + }, + }, + ["1937_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", - }, - }, - ["1933_PhysicalAddedAsCold"] = { + ["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", + }, + }, + ["1938_PhysicalAddedAsCold"] = { ["Boots"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_979246511", - ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", - ["type"] = "implicit", - }, - }, - ["1933_PhysicalAddedAsColdPinnaclePresence"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_979246511", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "implicit", + }, + }, + ["1938_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", - }, - }, - ["1933_PhysicalAddedAsColdUniquePresence"] = { + ["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", + }, + }, + ["1938_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", - }, - }, - ["1934_PhysicalAddedAsLightning"] = { + ["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", + }, + }, + ["1939_PhysicalAddedAsLightning"] = { ["Boots"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_219391121", - ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", - ["type"] = "implicit", - }, - }, - ["1934_PhysicalAddedAsLightningPinnaclePresence"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_219391121", + ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", + ["type"] = "implicit", + }, + }, + ["1939_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", - }, - }, - ["1934_PhysicalAddedAsLightningUniquePresence"] = { + ["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", + }, + }, + ["1939_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", - }, - }, - ["1935_PhysicalDamageAddedAsChaos"] = { + ["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", + }, + }, + ["1940_PhysicalDamageAddedAsChaos"] = { ["Boots"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3319896421", - ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", - ["type"] = "implicit", - }, - }, - ["1935_PhysicalDamageAddedAsChaosPinnaclePresence"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3319896421", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", + ["type"] = "implicit", + }, + }, + ["1940_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", - }, - }, - ["1935_PhysicalDamageAddedAsChaosUniquePresence"] = { + ["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", + }, + }, + ["1940_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", - }, - }, - ["1955_ConvertPhysicalToFireImplicit"] = { - ["Gloves"] = { - ["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", - }, - }, - ["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", - }, - }, - ["1957_ConvertPhysicalToColdImplicit"] = { - ["Gloves"] = { - ["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", - }, - }, - ["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", - }, - }, - ["1959_ConvertPhysicalToLightningImplicit"] = { - ["Gloves"] = { - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["1962_PhysicalDamageConvertToChaosImplicit"] = { - ["Gloves"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_490098963", - ["text"] = "#% of Physical Damage Converted to Chaos Damage", - ["type"] = "implicit", - }, - }, - ["1979_IncreasedManaRegenerationPerPowerCharge"] = { + ["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", + }, + }, + ["1960_ConvertPhysicalToFireImplicit"] = { + ["Gloves"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["type"] = "implicit", + }, + }, + ["1960_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", + }, + }, + ["1960_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", + }, + }, + ["1962_ConvertPhysicalToColdImplicit"] = { + ["Gloves"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["type"] = "implicit", + }, + }, + ["1962_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", + }, + }, + ["1962_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", + }, + }, + ["1964_ConvertPhysicalToLightningImplicit"] = { + ["Gloves"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["type"] = "implicit", + }, + }, + ["1964_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", + }, + }, + ["1964_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", + }, + }, + ["1967_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", + }, + }, + ["1967_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", + }, + }, + ["1967_PhysicalDamageConvertToChaosImplicit"] = { + ["Gloves"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_490098963", + ["text"] = "#% of Physical Damage Converted to Chaos Damage", + ["type"] = "implicit", + }, + }, + ["1984_IncreasedManaRegenerationPerPowerCharge"] = { ["Helmet"] = { - ["max"] = 6, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2847548062", - ["text"] = "#% increased Mana Regeneration Rate per Power Charge", - ["type"] = "implicit", - }, - }, - ["1979_IncreasedManaRegenerationPerPowerChargePinnaclePresence"] = { + ["max"] = 6, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2847548062", + ["text"] = "#% increased Mana Regeneration Rate per Power Charge", + ["type"] = "implicit", + }, + }, + ["1984_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", - }, - }, - ["1979_IncreasedManaRegenerationPerPowerChargeUniquePresence"] = { + ["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", + }, + }, + ["1984_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", - }, - }, - ["2026_ChanceToIgnite"] = { + ["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", + }, + }, + ["2031_ChanceToIgnite"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1335054179", - ["text"] = "#% chance to Ignite", - ["type"] = "implicit", - }, - }, - ["2026_ChanceToIgnitePinnaclePresence"] = { + ["max"] = 30, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "implicit", + }, + }, + ["2031_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", - }, - }, - ["2026_ChanceToIgniteUniquePresence"] = { + ["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", + }, + }, + ["2031_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", - }, - }, - ["2029_ChanceToFreeze"] = { + ["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", + }, + }, + ["2034_ChanceToFreeze"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2309614417", - ["text"] = "#% chance to Freeze", - ["type"] = "implicit", - }, - }, - ["2029_ChanceToFreezePinnaclePresence"] = { + ["max"] = 30, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "implicit", + }, + }, + ["2034_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", - }, - }, - ["2029_ChanceToFreezeUniquePresence"] = { + ["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", + }, + }, + ["2034_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", - }, - }, - ["2033_ChanceToShock"] = { + ["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", + }, + }, + ["2038_ChanceToShock"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1538773178", - ["text"] = "#% chance to Shock", - ["type"] = "implicit", - }, - }, - ["2033_ChanceToShockPinnaclePresence"] = { + ["max"] = 30, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "implicit", + }, + }, + ["2038_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", - }, - }, - ["2033_ChanceToShockUniquePresence"] = { + ["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", + }, + }, + ["2038_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", - }, - }, - ["2228_ManaReservationEfficiency"] = { + ["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", + }, + }, + ["2233_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", - }, - }, - ["2228_ManaReservationEfficiencyPinnaclePresence"] = { + ["max"] = 12, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1269219558", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "implicit", + }, + }, + ["2233_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", - }, - }, - ["2228_ManaReservationEfficiencyUniquePresence"] = { + ["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", + }, + }, + ["2233_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", - }, - }, - ["2447_PhysicalDamageTakenAsFireBodyUber"] = { + ["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", + }, + }, + ["2452_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", - }, - }, - ["2447_PhysicalDamageTakenAsFireBodyUberPinnaclePresence"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "implicit", + }, + }, + ["2452_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", - }, - }, - ["2447_PhysicalDamageTakenAsFireBodyUberUniquePresence"] = { + ["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", + }, + }, + ["2452_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", - }, - }, - ["2447_PhysicalDamageTakenAsFireUber"] = { + ["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", + }, + }, + ["2452_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", - }, - }, - ["2447_PhysicalDamageTakenAsFireUberPinnaclePresence"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "implicit", + }, + }, + ["2452_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", - }, - }, - ["2447_PhysicalDamageTakenAsFireUberUniquePresence"] = { + ["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", + }, + }, + ["2452_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", - }, - }, - ["2448_PhysicalDamageTakenAsColdBodyUber"] = { + ["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", + }, + }, + ["2453_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", - }, - }, - ["2448_PhysicalDamageTakenAsColdBodyUberPinnaclePresence"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "implicit", + }, + }, + ["2453_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", - }, - }, - ["2448_PhysicalDamageTakenAsColdBodyUberUniquePresence"] = { + ["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", + }, + }, + ["2453_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", - }, - }, - ["2448_PhysicalDamageTakenAsColdUber"] = { + ["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", + }, + }, + ["2453_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", - }, - }, - ["2448_PhysicalDamageTakenAsColdUberPinnaclePresence"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "implicit", + }, + }, + ["2453_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", - }, - }, - ["2448_PhysicalDamageTakenAsColdUberUniquePresence"] = { + ["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", + }, + }, + ["2453_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", - }, - }, - ["2449_PhysicalDamageTakenAsLightningBodyUber"] = { + ["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", + }, + }, + ["2454_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", - }, - }, - ["2449_PhysicalDamageTakenAsLightningBodyUberPinnaclePresence"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", + }, + }, + ["2454_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", - }, - }, - ["2449_PhysicalDamageTakenAsLightningBodyUberUniquePresence"] = { + ["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", + }, + }, + ["2454_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", - }, - }, - ["2449_PhysicalDamageTakenAsLightningUber"] = { + ["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", + }, + }, + ["2454_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", - }, - }, - ["2449_PhysicalDamageTakenAsLightningUberPinnaclePresence"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", + }, + }, + ["2454_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", - }, - }, - ["2449_PhysicalDamageTakenAsLightningUberUniquePresence"] = { + ["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", + }, + }, + ["2454_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", - }, - }, - ["2451_PhysicalDamageTakenAsChaosBodyUber"] = { + ["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", + }, + }, + ["2456_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", - }, - }, - ["2451_PhysicalDamageTakenAsChaosBodyUberPinnaclePresence"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "implicit", + }, + }, + ["2456_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", - }, - }, - ["2451_PhysicalDamageTakenAsChaosBodyUberUniquePresence"] = { + ["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", + }, + }, + ["2456_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", - }, - }, - ["2451_PhysicalDamageTakenAsChaosUber"] = { + ["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", + }, + }, + ["2456_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", - }, - }, - ["2451_PhysicalDamageTakenAsChaosUberPinnaclePresence"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "implicit", + }, + }, + ["2456_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", - }, - }, - ["2451_PhysicalDamageTakenAsChaosUberUniquePresence"] = { + ["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", + }, + }, + ["2456_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", - }, - }, - ["2489_ChanceToBleed"] = { - ["Gloves"] = { - ["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", - }, - }, - ["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", - }, - }, - ["2564_FasterIgniteDamage"] = { + ["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", + }, + }, + ["2494_ChanceToBleed"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "implicit", + }, + }, + ["2494_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", + }, + }, + ["2494_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", + }, + }, + ["2569_FasterIgniteDamage"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2443492284", - ["text"] = "Ignites you inflict deal Damage #% faster", - ["type"] = "implicit", - }, - }, - ["2564_FasterIgniteDamagePinnaclePresence"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2443492284", + ["text"] = "Ignites you inflict deal Damage #% faster", + ["type"] = "implicit", + }, + }, + ["2569_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", - }, - }, - ["2564_FasterIgniteDamageUniquePresence"] = { + ["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", + }, + }, + ["2569_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", - }, - }, - ["2598_MarkEffect"] = { - ["Gloves"] = { - ["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", - }, - }, - ["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", - }, - }, - ["2981_FireResistancePenetration"] = { + ["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", + }, + }, + ["2603_MarkEffect"] = { + ["Gloves"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_803185500", + ["text"] = "#% increased Effect of your Marks", + ["type"] = "implicit", + }, + }, + ["2603_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", + }, + }, + ["2603_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", + }, + }, + ["2986_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", - }, - }, - ["2981_FireResistancePenetrationPinnaclePresence"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "implicit", + }, + }, + ["2986_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", - }, - }, - ["2981_FireResistancePenetrationUniquePresence"] = { + ["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", + }, + }, + ["2986_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", - }, - }, - ["2983_ColdResistancePenetration"] = { + ["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", + }, + }, + ["2988_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", - }, - }, - ["2983_ColdResistancePenetrationPinnaclePresence"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "implicit", + }, + }, + ["2988_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", - }, - }, - ["2983_ColdResistancePenetrationUniquePresence"] = { + ["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", + }, + }, + ["2988_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", - }, - }, - ["2984_LightningResistancePenetration"] = { + ["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", + }, + }, + ["2989_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", - }, - }, - ["2984_LightningResistancePenetrationPinnaclePresence"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "implicit", + }, + }, + ["2989_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", - }, - }, - ["2984_LightningResistancePenetrationUniquePresence"] = { + ["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", + }, + }, + ["2989_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", - }, - }, - ["3173_PoisonOnHit"] = { - ["Gloves"] = { - ["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", - }, - }, - ["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", - }, - }, - ["3272_IncreasedStunThreshold"] = { + ["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", + }, + }, + ["3178_PoisonOnHit"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "implicit", + }, + }, + ["3178_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", + }, + }, + ["3178_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", + }, + }, + ["3277_IncreasedStunThreshold"] = { ["Boots"] = { - ["max"] = 32, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_680068163", - ["text"] = "#% increased Stun Threshold", - ["type"] = "implicit", - }, - }, - ["3272_IncreasedStunThresholdPinnaclePresence"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "implicit", + }, + }, + ["3277_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", - }, - }, - ["3272_IncreasedStunThresholdUniquePresence"] = { + ["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", + }, + }, + ["3277_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", - }, - }, - ["3277_WarcrySpeed"] = { + ["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", + }, + }, + ["3282_WarcrySpeed"] = { ["Boots"] = { - ["max"] = 26, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1316278494", - ["text"] = "#% increased Warcry Speed", - ["type"] = "implicit", - }, - }, - ["3277_WarcrySpeedPinnaclePresence"] = { + ["max"] = 26, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "implicit", + }, + }, + ["3282_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", - }, - }, - ["3277_WarcrySpeedUniquePresence"] = { + ["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", + }, + }, + ["3282_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", - }, - }, - ["3288_ArcaneSurgeEffect"] = { + ["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", + }, + }, + ["3293_ArcaneSurgeEffect"] = { ["Helmet"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3015437071", - ["text"] = "#% increased Effect of Arcane Surge on you", - ["type"] = "implicit", - }, - }, - ["3288_ArcaneSurgeEffectPinnaclePresence"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3015437071", + ["text"] = "#% increased Effect of Arcane Surge on you", + ["type"] = "implicit", + }, + }, + ["3293_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", - }, - }, - ["3288_ArcaneSurgeEffectUniquePresence"] = { + ["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", + }, + }, + ["3293_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", - }, - }, - ["3356_AngerAuraEffect"] = { + ["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", + }, + }, + ["3361_AngerAuraEffect"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1592278124", - ["text"] = "Anger has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, - ["3356_AngerAuraEffectPinnaclePresence"] = { + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1592278124", + ["text"] = "Anger has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["3361_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", - }, - }, - ["3356_AngerAuraEffectUniquePresence"] = { + ["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", + }, + }, + ["3361_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", - }, - }, - ["3357_PurityOfElementsEffect"] = { + ["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", + }, + }, + ["3362_PurityOfElementsEffect"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3541970927", - ["text"] = "Purity of Elements has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, - ["3357_PurityOfElementsEffectPinnaclePresence"] = { + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3541970927", + ["text"] = "Purity of Elements has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["3362_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", - }, - }, - ["3357_PurityOfElementsEffectUniquePresence"] = { + ["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", + }, + }, + ["3362_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", - }, - }, - ["3358_PurityOfFireEffect"] = { + ["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", + }, + }, + ["3363_PurityOfFireEffect"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2539726203", - ["text"] = "Purity of Fire has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, - ["3358_PurityOfFireEffectPinnaclePresence"] = { + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2539726203", + ["text"] = "Purity of Fire has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["3363_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", - }, - }, - ["3358_PurityOfFireEffectUniquePresence"] = { + ["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", + }, + }, + ["3363_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", - }, - }, - ["3359_PurityOfIceEffect"] = { + ["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", + }, + }, + ["3364_PurityOfIceEffect"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1944316218", - ["text"] = "Purity of Ice has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, - ["3359_PurityOfIceEffectPinnaclePresence"] = { + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1944316218", + ["text"] = "Purity of Ice has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["3364_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", - }, - }, - ["3359_PurityOfIceEffectUniquePresence"] = { + ["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", + }, + }, + ["3364_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", - }, - }, - ["3360_PurityOfLightningEffect"] = { + ["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", + }, + }, + ["3365_PurityOfLightningEffect"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_45589825", - ["text"] = "Purity of Lightning has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, - ["3360_PurityOfLightningEffectPinnaclePresence"] = { + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_45589825", + ["text"] = "Purity of Lightning has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["3365_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", - }, - }, - ["3360_PurityOfLightningEffectUniquePresence"] = { + ["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", + }, + }, + ["3365_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", - }, - }, - ["3361_WrathAuraEffect"] = { + ["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", + }, + }, + ["3366_WrathAuraEffect"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2181791238", - ["text"] = "Wrath has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, - ["3361_WrathAuraEffectPinnaclePresence"] = { + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2181791238", + ["text"] = "Wrath has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["3366_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", - }, - }, - ["3361_WrathAuraEffectUniquePresence"] = { + ["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", + }, + }, + ["3366_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", - }, - }, - ["3363_GraceAuraEffect"] = { + ["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", + }, + }, + ["3368_GraceAuraEffect"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_397427740", - ["text"] = "Grace has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, - ["3363_GraceAuraEffectPinnaclePresence"] = { + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_397427740", + ["text"] = "Grace has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["3368_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", - }, - }, - ["3363_GraceAuraEffectUniquePresence"] = { + ["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", + }, + }, + ["3368_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", - }, - }, - ["3364_HasteAuraEffect"] = { + ["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", + }, + }, + ["3369_HasteAuraEffect"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1240056437", - ["text"] = "Haste has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, - ["3364_HasteAuraEffectPinnaclePresence"] = { + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1240056437", + ["text"] = "Haste has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["3369_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", - }, - }, - ["3364_HasteAuraEffectUniquePresence"] = { + ["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", + }, + }, + ["3369_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", - }, - }, - ["3366_HatredAuraEffect"] = { + ["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", + }, + }, + ["3371_HatredAuraEffect"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3742945352", - ["text"] = "Hatred has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, - ["3366_HatredAuraEffectPinnaclePresence"] = { + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3742945352", + ["text"] = "Hatred has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["3371_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", - }, - }, - ["3366_HatredAuraEffectUniquePresence"] = { + ["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", + }, + }, + ["3371_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", - }, - }, - ["3367_DeterminationAuraEffect"] = { + ["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", + }, + }, + ["3372_DeterminationAuraEffect"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3653400807", - ["text"] = "Determination has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, - ["3367_DeterminationAuraEffectPinnaclePresence"] = { + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3653400807", + ["text"] = "Determination has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["3372_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", - }, - }, - ["3367_DeterminationAuraEffectUniquePresence"] = { + ["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", + }, + }, + ["3372_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", - }, - }, - ["3368_DisciplineAuraEffect"] = { + ["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", + }, + }, + ["3373_DisciplineAuraEffect"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_788317702", - ["text"] = "Discipline has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, - ["3368_DisciplineAuraEffectPinnaclePresence"] = { + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_788317702", + ["text"] = "Discipline has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["3373_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", - }, - }, - ["3368_DisciplineAuraEffectUniquePresence"] = { + ["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", + }, + }, + ["3373_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", - }, - }, - ["3887_EnduringCryCooldownRecovery"] = { + ["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", + }, + }, + ["3892_EnduringCryCooldownRecovery"] = { ["Boots"] = { - ["max"] = 32, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3617955571", - ["text"] = "Enduring Cry has #% increased Cooldown Recovery Rate", - ["type"] = "implicit", - }, - }, - ["3887_EnduringCryCooldownRecoveryPinnaclePresence"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3617955571", + ["text"] = "Enduring Cry has #% increased Cooldown Recovery Rate", + ["type"] = "implicit", + }, + }, + ["3892_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", - }, - }, - ["3887_EnduringCryCooldownRecoveryUniquePresence"] = { + ["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", + }, + }, + ["3892_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", - }, - }, - ["4114_RallyingCryWarcryEffect"] = { + ["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", + }, + }, + ["4119_RallyingCryWarcryEffect"] = { ["Boots"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4147277532", - ["text"] = "#% increased Rallying Cry Buff Effect", - ["type"] = "implicit", - }, - }, - ["4114_RallyingCryWarcryEffectPinnaclePresence"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4147277532", + ["text"] = "#% increased Rallying Cry Buff Effect", + ["type"] = "implicit", + }, + }, + ["4119_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", - }, - }, - ["4114_RallyingCryWarcryEffectUniquePresence"] = { + ["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", + }, + }, + ["4119_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", - }, - }, - ["4216_ChanceToAvoidBleeding"] = { + ["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", + }, + }, + ["4221_ChanceToAvoidBleeding"] = { ["Boots"] = { - ["max"] = 50, - ["min"] = 33, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1618589784", - ["text"] = "#% chance to Avoid Bleeding", - ["type"] = "implicit", - }, - }, - ["4216_ChanceToAvoidBleedingPinnaclePresence"] = { + ["max"] = 50, + ["min"] = 33, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", + ["type"] = "implicit", + }, + }, + ["4221_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", - }, - }, - ["4216_ChanceToAvoidBleedingUniquePresence"] = { + ["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", + }, + }, + ["4221_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", - }, - }, - ["4381_TravelSkillCooldownRecovery"] = { + ["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", + }, + }, + ["4386_TravelSkillCooldownRecovery"] = { ["Boots"] = { - ["max"] = 32, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2308278768", - ["text"] = "#% increased Cooldown Recovery Rate of Travel Skills", - ["type"] = "implicit", - }, - }, - ["4381_TravelSkillCooldownRecoveryPinnaclePresence"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2308278768", + ["text"] = "#% increased Cooldown Recovery Rate of Travel Skills", + ["type"] = "implicit", + }, + }, + ["4386_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", - }, - }, - ["4381_TravelSkillCooldownRecoveryUniquePresence"] = { + ["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", + }, + }, + ["4386_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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["4517_IncreasedAccuracyPerFrenzy"] = { - ["Gloves"] = { - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["4670_AncestralCryExertedDamage"] = { + ["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", + }, + }, + ["4522_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", + }, + }, + ["4522_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", + }, + }, + ["4522_IncreasedAccuracyPerFrenzy"] = { + ["Gloves"] = { + ["max"] = 60, + ["min"] = 43, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3126680545", + ["text"] = "+# to Accuracy Rating per Frenzy Charge", + ["type"] = "implicit", + }, + }, + ["4613_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", + }, + }, + ["4613_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", + }, + }, + ["4613_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", + }, + }, + ["4675_AncestralCryExertedDamage"] = { ["Boots"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2146663823", - ["text"] = "Attacks Exerted by Ancestral Cry deal #% increased Damage", - ["type"] = "implicit", - }, - }, - ["4670_AncestralCryExertedDamagePinnaclePresence"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2146663823", + ["text"] = "Attacks Exerted by Ancestral Cry deal #% increased Damage", + ["type"] = "implicit", + }, + }, + ["4675_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", - }, - }, - ["4670_AncestralCryExertedDamageUniquePresence"] = { + ["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", + }, + }, + ["4675_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", - }, - }, - ["4762_ArmourFromHelmetGloves"] = { + ["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", + }, + }, + ["4767_ArmourFromHelmetGloves"] = { ["Boots"] = { - ["max"] = 50, - ["min"] = 33, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_791154540", - ["text"] = "#% increased Armour from Equipped Helmet and Gloves", - ["type"] = "implicit", - }, - }, - ["4762_ArmourFromHelmetGlovesPinnaclePresence"] = { + ["max"] = 50, + ["min"] = 33, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_791154540", + ["text"] = "#% increased Armour from Equipped Helmet and Gloves", + ["type"] = "implicit", + }, + }, + ["4767_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", - }, - }, - ["4762_ArmourFromHelmetGlovesUniquePresence"] = { + ["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", + }, + }, + ["4767_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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["5005_GlobalCooldownRecovery"] = { + ["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", + }, + }, + ["4923_AttackImpaleChance"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "implicit", + }, + }, + ["4923_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", + }, + }, + ["4923_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", + }, + }, + ["5010_GlobalCooldownRecovery"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", - ["type"] = "implicit", - }, - }, - ["5005_GlobalCooldownRecoveryPinnaclePresence"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "implicit", + }, + }, + ["5010_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", - }, - }, - ["5005_GlobalCooldownRecoveryUniquePresence"] = { + ["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", + }, + }, + ["5010_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", - }, - }, - ["5059_BattlemagesCryWarcryEffect"] = { + ["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", + }, + }, + ["5064_BattlemagesCryWarcryEffect"] = { ["Boots"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2426838124", - ["text"] = "#% increased Battlemage's Cry Buff Effect", - ["type"] = "implicit", - }, - }, - ["5059_BattlemagesCryWarcryEffectPinnaclePresence"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2426838124", + ["text"] = "#% increased Battlemage's Cry Buff Effect", + ["type"] = "implicit", + }, + }, + ["5064_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", - }, - }, - ["5059_BattlemagesCryWarcryEffectUniquePresence"] = { + ["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", + }, + }, + ["5064_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", - }, - }, - ["5219_BlindEffect"] = { - ["Gloves"] = { - ["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", - }, - }, - ["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", - }, - }, - ["5244_BodyDamageTakenPerDexterity"] = { + ["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", + }, + }, + ["5224_BlindEffect"] = { + ["Gloves"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1585769763", + ["text"] = "#% increased Blind Effect", + ["type"] = "implicit", + }, + }, + ["5224_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", + }, + }, + ["5224_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", + }, + }, + ["5249_BodyDamageTakenPerDexterity"] = { ["Chest"] = { - ["max"] = 230, - ["min"] = 180, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_824762042", - ["text"] = "1% less Damage Taken per # Dexterity", - ["type"] = "implicit", - }, - }, - ["5244_BodyDamageTakenPerDexterityPinnaclePresence"] = { + ["max"] = 230, + ["min"] = 180, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_824762042", + ["text"] = "1% less Damage Taken per # Dexterity", + ["type"] = "implicit", + }, + }, + ["5249_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", - }, - }, - ["5244_BodyDamageTakenPerDexterityUniquePresence"] = { + ["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", + }, + }, + ["5249_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", - }, - }, - ["5245_BodyDamageTakenPerIntelligence"] = { + ["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", + }, + }, + ["5250_BodyDamageTakenPerIntelligence"] = { ["Chest"] = { - ["max"] = 230, - ["min"] = 180, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2874488491", - ["text"] = "1% less Damage Taken per # Intelligence", - ["type"] = "implicit", - }, - }, - ["5245_BodyDamageTakenPerIntelligencePinnaclePresence"] = { + ["max"] = 230, + ["min"] = 180, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2874488491", + ["text"] = "1% less Damage Taken per # Intelligence", + ["type"] = "implicit", + }, + }, + ["5250_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", - }, - }, - ["5245_BodyDamageTakenPerIntelligenceUniquePresence"] = { + ["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", + }, + }, + ["5250_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", - }, - }, - ["5246_BodyDamageTakenPerStrength"] = { + ["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", + }, + }, + ["5251_BodyDamageTakenPerStrength"] = { ["Chest"] = { - ["max"] = 230, - ["min"] = 180, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1871491972", - ["text"] = "1% less Damage Taken per # Strength", - ["type"] = "implicit", - }, - }, - ["5246_BodyDamageTakenPerStrengthPinnaclePresence"] = { + ["max"] = 230, + ["min"] = 180, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1871491972", + ["text"] = "1% less Damage Taken per # Strength", + ["type"] = "implicit", + }, + }, + ["5251_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", - }, - }, - ["5246_BodyDamageTakenPerStrengthUniquePresence"] = { + ["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", + }, + }, + ["5251_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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["6052_DamagePer100DEX"] = { - ["Gloves"] = { - ["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", - }, - }, - ["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", - }, - }, - ["6053_DamagePer100INT"] = { - ["Gloves"] = { - ["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", - }, - }, - ["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", - }, - }, - ["6054_DamagePer100STR"] = { - ["Gloves"] = { - ["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", - }, - }, - ["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", - }, - }, - ["6161_MalevolenceAuraEffect"] = { + ["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", + }, + }, + ["5828_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", + }, + }, + ["5828_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", + }, + }, + ["5828_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", + }, + }, + ["6057_DamagePer100DEX"] = { + ["Gloves"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_342670903", + ["text"] = "#% increased Damage per 100 Dexterity", + ["type"] = "implicit", + }, + }, + ["6057_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", + }, + }, + ["6057_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", + }, + }, + ["6058_DamagePer100INT"] = { + ["Gloves"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3966666111", + ["text"] = "#% increased Damage per 100 Intelligence", + ["type"] = "implicit", + }, + }, + ["6058_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", + }, + }, + ["6058_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", + }, + }, + ["6059_DamagePer100STR"] = { + ["Gloves"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4274080377", + ["text"] = "#% increased Damage per 100 Strength", + ["type"] = "implicit", + }, + }, + ["6059_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", + }, + }, + ["6059_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", + }, + }, + ["6166_MalevolenceAuraEffect"] = { ["Chest"] = { - ["max"] = 36, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4175197580", - ["text"] = "Malevolence has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, - ["6161_MalevolenceAuraEffectPinnaclePresence"] = { + ["max"] = 36, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4175197580", + ["text"] = "Malevolence has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["6166_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", - }, - }, - ["6161_MalevolenceAuraEffectUniquePresence"] = { + ["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", + }, + }, + ["6166_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", + }, + }, + ["6354_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", + }, + }, + ["6354_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", + }, + }, + ["6354_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"] = { - ["Gloves"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1569101201", - ["text"] = "Exerted Attacks deal #% increased Damage", - ["type"] = "implicit", - }, - }, - ["6356_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"] = { - ["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"] = 23, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2413932980", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Elusive Effect", + ["type"] = "implicit", + }, + }, + ["6361_ExertedAttackDamage"] = { + ["Gloves"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1569101201", + ["text"] = "Exerted Attacks deal #% increased Damage", + ["type"] = "implicit", + }, + }, + ["6361_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", + }, + }, + ["6361_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", + }, + }, + ["6426_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", + }, + }, + ["6426_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", + }, + }, + ["6426_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", + }, + }, + ["6435_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", + }, + }, + ["6435_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", + }, + }, + ["6435_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"] = { - ["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"] = { - ["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"] = { - ["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_4288334466", + ["text"] = "While a Unique Enemy is in your Presence, #% increased Maximum Energy Shield from Equipped Gloves and Boots", + ["type"] = "implicit", + }, + }, + ["6490_EvasionRatingFromHelmetBoots"] = { + ["Gloves"] = { + ["max"] = 50, + ["min"] = 33, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_623823763", + ["text"] = "#% increased Evasion Rating from Equipped Helmet and Boots", + ["type"] = "implicit", + }, + }, + ["6490_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", + }, + }, + ["6490_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", + }, + }, + ["6549_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", + }, + }, + ["6549_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", + }, + }, + ["6549_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", + }, + }, + ["6550_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", + }, + }, + ["6550_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", + }, + }, + ["6550_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"] = { - ["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"] = { - ["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"] = { - ["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"] = 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", + }, + }, + ["6584_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", + }, + }, + ["6584_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", + }, + }, + ["6584_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", + }, + }, + ["6862_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", + }, + }, + ["6862_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", + }, + }, + ["6862_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"] = { - ["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"] = { - ["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"] = { - ["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"] = 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", + }, + }, + ["7175_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", + }, + }, + ["7175_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", + }, + }, + ["7175_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", + }, + }, + ["7272_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", + }, + }, + ["7272_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", + }, + }, + ["7272_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", + }, + }, + ["7304_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", + }, + }, + ["7304_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", + }, + }, + ["7304_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"] = { - ["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"] = { - ["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"] = { - ["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", - }, - }, - ["7_PlayerReflectedDamage"] = { + ["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", + }, + }, + ["7463_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", + }, + }, + ["7463_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", + }, + }, + ["7463_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", + }, + }, + ["8159_GlobalMaimOnHit"] = { + ["Gloves"] = { + ["max"] = 40, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1510714129", + ["text"] = "Attacks have #% chance to Maim on Hit", + ["type"] = "implicit", + }, + }, + ["8159_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", + }, + }, + ["8159_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", + }, + }, + ["8_PlayerReflectedDamage"] = { ["Chest"] = { - ["max"] = 70, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1571797746", - ["text"] = "#% of Damage from your Hits cannot be Reflected", - ["type"] = "implicit", - }, - }, - ["7_PlayerReflectedDamagePinnaclePresence"] = { + ["max"] = 70, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1571797746", + ["text"] = "#% of Damage from your Hits cannot be Reflected", + ["type"] = "implicit", + }, + }, + ["8_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", - }, - }, - ["7_PlayerReflectedDamageUniquePresence"] = { + ["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", + }, + }, + ["8_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"] = { - ["Gloves"] = { - ["max"] = 40, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1510714129", - ["text"] = "Attacks have #% chance to Maim on Hit", - ["type"] = "implicit", - }, - }, - ["8154_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"] = { - ["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"] = 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", + }, + }, + ["9359_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", + }, + }, + ["9359_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", + }, + }, + ["9359_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", + }, + }, + ["9498_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", + }, + }, + ["9498_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", + }, + }, + ["9498_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", + }, + }, + ["9709_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", + }, + }, + ["9709_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", + }, + }, + ["9709_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", + }, + }, + ["9966_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", + }, + }, + ["9966_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", + }, + }, + ["9966_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"] = { + ["10042_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", + }, + }, + ["10042_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", + }, + }, + ["10042_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", + }, + }, + ["10364_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", + }, + }, + ["10364_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", + }, + }, + ["10364_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", + }, + }, + ["10565_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", + }, + }, + ["10565_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", + }, + }, + ["10565_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", - }, - }, - ["1172_BoneOfferingEffect"] = { + ["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", + }, + }, + ["1177_BoneOfferingEffect"] = { ["Boots"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1801289192", - ["text"] = "Bone Offering has #% increased Effect", - ["type"] = "implicit", - }, - }, - ["1172_BoneOfferingEffectPinnaclePresence"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1801289192", + ["text"] = "Bone Offering has #% increased Effect", + ["type"] = "implicit", + }, + }, + ["1177_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", - }, - }, - ["1172_BoneOfferingEffectUniquePresence"] = { + ["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", + }, + }, + ["1177_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", - }, - }, - ["1173_FleshOfferingEffect"] = { + ["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", + }, + }, + ["1178_FleshOfferingEffect"] = { ["Boots"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3456379680", - ["text"] = "Flesh Offering has #% increased Effect", - ["type"] = "implicit", - }, - }, - ["1173_FleshOfferingEffectPinnaclePresence"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3456379680", + ["text"] = "Flesh Offering has #% increased Effect", + ["type"] = "implicit", + }, + }, + ["1178_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", - }, - }, - ["1173_FleshOfferingEffectUniquePresence"] = { + ["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", + }, + }, + ["1178_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", - }, - }, - ["1174_SpiritOfferingEffect"] = { + ["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", + }, + }, + ["1179_SpiritOfferingEffect"] = { ["Boots"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3544391750", - ["text"] = "Spirit Offering has #% increased Effect", - ["type"] = "implicit", - }, - }, - ["1174_SpiritOfferingEffectPinnaclePresence"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3544391750", + ["text"] = "Spirit Offering has #% increased Effect", + ["type"] = "implicit", + }, + }, + ["1179_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", - }, - }, - ["1174_SpiritOfferingEffectUniquePresence"] = { + ["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", + }, + }, + ["1179_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", - }, - }, - ["1231_PhysicalDamagePercent"] = { + ["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", + }, + }, + ["1236_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", - }, - }, - ["1231_PhysicalDamagePercentPinnaclePresence"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "implicit", + }, + }, + ["1236_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", - }, - }, - ["1231_PhysicalDamagePercentUniquePresence"] = { + ["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", + }, + }, + ["1236_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", - }, - }, - ["1247_PhysicalDamageOverTimeMultiplier"] = { + ["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", + }, + }, + ["1252_PhysicalDamageOverTimeMultiplier"] = { ["Amulet"] = { - ["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", - }, - }, - ["1247_PhysicalDamageOverTimeMultiplierPinnaclePresence"] = { + ["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", + }, + }, + ["1252_PhysicalDamageOverTimeMultiplierPinnaclePresence"] = { ["Amulet"] = { - ["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", - }, - }, - ["1247_PhysicalDamageOverTimeMultiplierUniquePresence"] = { + ["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", + }, + }, + ["1252_PhysicalDamageOverTimeMultiplierUniquePresence"] = { ["Amulet"] = { - ["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", - }, - }, - ["1251_FireDamageOverTimeMultiplier"] = { + ["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", + }, + }, + ["1256_FireDamageOverTimeMultiplier"] = { ["Amulet"] = { - ["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", - }, - }, - ["1251_FireDamageOverTimeMultiplierPinnaclePresence"] = { + ["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", + }, + }, + ["1256_FireDamageOverTimeMultiplierPinnaclePresence"] = { ["Amulet"] = { - ["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", - }, - }, - ["1251_FireDamageOverTimeMultiplierUniquePresence"] = { + ["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", + }, + }, + ["1256_FireDamageOverTimeMultiplierUniquePresence"] = { ["Amulet"] = { - ["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", - }, - }, - ["1256_ColdDamageOverTimeMultiplier"] = { + ["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", + }, + }, + ["1261_ColdDamageOverTimeMultiplier"] = { ["Amulet"] = { - ["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", - }, - }, - ["1256_ColdDamageOverTimeMultiplierPinnaclePresence"] = { + ["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", + }, + }, + ["1261_ColdDamageOverTimeMultiplierPinnaclePresence"] = { ["Amulet"] = { - ["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", - }, - }, - ["1256_ColdDamageOverTimeMultiplierUniquePresence"] = { + ["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", + }, + }, + ["1261_ColdDamageOverTimeMultiplierUniquePresence"] = { ["Amulet"] = { - ["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", - }, - }, - ["1259_ChaosDamageOverTimeMultiplier"] = { + ["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", + }, + }, + ["1264_ChaosDamageOverTimeMultiplier"] = { ["Amulet"] = { - ["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", - }, - }, - ["1259_ChaosDamageOverTimeMultiplierPinnaclePresence"] = { + ["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", + }, + }, + ["1264_ChaosDamageOverTimeMultiplierPinnaclePresence"] = { ["Amulet"] = { - ["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", - }, - }, - ["1259_ChaosDamageOverTimeMultiplierUniquePresence"] = { + ["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", + }, + }, + ["1264_ChaosDamageOverTimeMultiplierUniquePresence"] = { ["Amulet"] = { - ["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", - }, - }, - ["1266_PhysicalDamage"] = { + ["max"] = 29, + ["min"] = 17, + }, ["Gloves"] = { - ["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", - }, - }, - ["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", - }, - }, - ["1357_FireDamagePercentage"] = { + ["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", + }, + }, + ["1271_PhysicalDamage"] = { + ["Gloves"] = { + ["max"] = 10.5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "implicit", + }, + }, + ["1271_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", + }, + }, + ["1271_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", + }, + }, + ["1362_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", - }, - }, - ["1357_FireDamagePercentagePinnaclePresence"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "implicit", + }, + }, + ["1362_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", - }, - }, - ["1357_FireDamagePercentageUniquePresence"] = { + ["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", + }, + }, + ["1362_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", - }, - }, - ["1360_FireDamage"] = { + ["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", + }, + }, + ["1365_FireDamage"] = { ["Gloves"] = { - ["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", - }, - }, - ["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", - }, - }, - ["1366_ColdDamagePercentage"] = { + ["max"] = 18.5, + ["min"] = 9.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1573130764", + ["text"] = "Adds # to # Fire Damage to Attacks", + ["type"] = "implicit", + }, + }, + ["1365_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", + }, + }, + ["1365_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", + }, + }, + ["1371_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", - }, - }, - ["1366_ColdDamagePercentagePinnaclePresence"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "implicit", + }, + }, + ["1371_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", - }, - }, - ["1366_ColdDamagePercentageUniquePresence"] = { + ["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", + }, + }, + ["1371_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", - }, - }, - ["1369_ColdDamage"] = { + ["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", + }, + }, + ["1374_ColdDamage"] = { ["Gloves"] = { - ["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", - }, - }, - ["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", - }, - }, - ["1377_LightningDamagePercentage"] = { + ["max"] = 17, + ["min"] = 8.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4067062424", + ["text"] = "Adds # to # Cold Damage to Attacks", + ["type"] = "implicit", + }, + }, + ["1374_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", + }, + }, + ["1374_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", + }, + }, + ["1382_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", - }, - }, - ["1377_LightningDamagePercentagePinnaclePresence"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "implicit", + }, + }, + ["1382_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", - }, - }, - ["1377_LightningDamagePercentageUniquePresence"] = { + ["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", + }, + }, + ["1382_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", - }, - }, - ["1380_LightningDamage"] = { + ["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", + }, + }, + ["1385_LightningDamage"] = { ["Gloves"] = { - ["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", - }, - }, - ["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", - }, - }, - ["1385_IncreasedChaosDamage"] = { + ["max"] = 21, + ["min"] = 11.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1754445556", + ["text"] = "Adds # to # Lightning Damage to Attacks", + ["type"] = "implicit", + }, + }, + ["1385_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", + }, + }, + ["1385_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", + }, + }, + ["1390_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", - }, - }, - ["1385_IncreasedChaosDamagePinnaclePresence"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "implicit", + }, + }, + ["1390_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", - }, - }, - ["1385_IncreasedChaosDamageUniquePresence"] = { + ["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", + }, + }, + ["1390_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", - }, - }, - ["1387_ChaosDamage"] = { + ["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", + }, + }, + ["1392_ChaosDamage"] = { + ["Gloves"] = { + ["max"] = 14, + ["min"] = 7.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", + ["type"] = "implicit", + }, + }, + ["1392_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", + }, + }, + ["1392_ChaosDamageUniquePresence"] = { ["Gloves"] = { - ["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", - }, - }, - ["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", - }, - }, - ["1403_SpellAddedPhysicalDamage"] = { + ["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", + }, + }, + ["1408_SpellAddedPhysicalDamage"] = { ["Helmet"] = { - ["max"] = 22.5, - ["min"] = 11.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2435536961", - ["text"] = "Adds # to # Physical Damage to Spells", - ["type"] = "implicit", - }, - }, - ["1403_SpellAddedPhysicalDamagePinnaclePresence"] = { + ["max"] = 22.5, + ["min"] = 11.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2435536961", + ["text"] = "Adds # to # Physical Damage to Spells", + ["type"] = "implicit", + }, + }, + ["1408_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", - }, - }, - ["1403_SpellAddedPhysicalDamageUniquePresence"] = { + ["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", + }, + }, + ["1408_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", - }, - }, - ["1404_SpellAddedFireDamage"] = { + ["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", + }, + }, + ["1409_SpellAddedFireDamage"] = { ["Helmet"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", - ["type"] = "implicit", - }, - }, - ["1404_SpellAddedFireDamagePinnaclePresence"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "implicit", + }, + }, + ["1409_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", - }, - }, - ["1404_SpellAddedFireDamageUniquePresence"] = { + ["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", + }, + }, + ["1409_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", - }, - }, - ["1405_SpellAddedColdDamage"] = { + ["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", + }, + }, + ["1410_SpellAddedColdDamage"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", - ["type"] = "implicit", - }, - }, - ["1405_SpellAddedColdDamagePinnaclePresence"] = { + ["max"] = 25, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "implicit", + }, + }, + ["1410_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", - }, - }, - ["1405_SpellAddedColdDamageUniquePresence"] = { + ["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", + }, + }, + ["1410_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", - }, - }, - ["1406_SpellAddedLightningDamage"] = { + ["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", + }, + }, + ["1411_SpellAddedLightningDamage"] = { ["Helmet"] = { - ["max"] = 32.5, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", - ["type"] = "implicit", - }, - }, - ["1406_SpellAddedLightningDamagePinnaclePresence"] = { + ["max"] = 32.5, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "implicit", + }, + }, + ["1411_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", - }, - }, - ["1406_SpellAddedLightningDamageUniquePresence"] = { + ["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", + }, + }, + ["1411_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", - }, - }, - ["1407_SpellAddedChaosDamage"] = { + ["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", + }, + }, + ["1412_SpellAddedChaosDamage"] = { ["Helmet"] = { - ["max"] = 21, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2300399854", - ["text"] = "Adds # to # Chaos Damage to Spells", - ["type"] = "implicit", - }, - }, - ["1407_SpellAddedChaosDamagePinnaclePresence"] = { + ["max"] = 21, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", + ["type"] = "implicit", + }, + }, + ["1412_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", - }, - }, - ["1407_SpellAddedChaosDamageUniquePresence"] = { + ["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", + }, + }, + ["1412_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", - }, - }, - ["1410_IncreasedAttackSpeed"] = { + ["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", + }, + }, + ["1415_IncreasedAttackSpeed"] = { ["Gloves"] = { - ["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", - }, - }, - ["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", - }, - }, - ["1446_IncreasedCastSpeed"] = { + ["max"] = 13, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "implicit", + }, + }, + ["1415_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", + }, + }, + ["1415_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", + }, + }, + ["1451_IncreasedCastSpeed"] = { ["Helmet"] = { - ["max"] = 13, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "implicit", - }, - }, - ["1446_IncreasedCastSpeedPinnaclePresence"] = { + ["max"] = 13, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "implicit", + }, + }, + ["1451_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", - }, - }, - ["1446_IncreasedCastSpeedUniquePresence"] = { + ["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", + }, + }, + ["1451_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", - }, - }, - ["1458_SpellCriticalStrikeChance"] = { + ["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", + }, + }, + ["1463_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", - }, - }, - ["1458_SpellCriticalStrikeChancePinnaclePresence"] = { + ["max"] = 45, + ["min"] = 28, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_737908626", + ["text"] = "#% increased Spell Critical Strike Chance", + ["type"] = "implicit", + }, + }, + ["1463_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", - }, - }, - ["1458_SpellCriticalStrikeChanceUniquePresence"] = { + ["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", + }, + }, + ["1463_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", - }, - }, - ["1491_AttackCriticalStrikeMultiplier"] = { + ["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", + }, + }, + ["1496_AttackCriticalStrikeMultiplier"] = { ["Chest"] = { - ["max"] = 31, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3714003708", - ["text"] = "+#% to Critical Strike Multiplier for Attack Damage", - ["type"] = "implicit", - }, - }, - ["1491_AttackCriticalStrikeMultiplierPinnaclePresence"] = { + ["max"] = 31, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3714003708", + ["text"] = "+#% to Critical Strike Multiplier for Attack Damage", + ["type"] = "implicit", + }, + }, + ["1496_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", - }, - }, - ["1491_AttackCriticalStrikeMultiplierUniquePresence"] = { + ["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", + }, + }, + ["1496_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", - }, - }, - ["1492_SpellCriticalStrikeMultiplier"] = { + ["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", + }, + }, + ["1497_SpellCriticalStrikeMultiplier"] = { ["Chest"] = { - ["max"] = 31, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_274716455", - ["text"] = "+#% to Critical Strike Multiplier for Spell Damage", - ["type"] = "implicit", - }, - }, - ["1492_SpellCriticalStrikeMultiplierPinnaclePresence"] = { + ["max"] = 31, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_274716455", + ["text"] = "+#% to Critical Strike Multiplier for Spell Damage", + ["type"] = "implicit", + }, + }, + ["1497_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", - }, - }, - ["1492_SpellCriticalStrikeMultiplierUniquePresence"] = { + ["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", + }, + }, + ["1497_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", - }, - }, - ["1517_StunThresholdReduction"] = { - ["Gloves"] = { - ["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", - }, - }, - ["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", - }, - }, - ["1623_MaximumFireResistanceEldritch"] = { + ["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", + }, + }, + ["1522_StunThresholdReduction"] = { + ["Gloves"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", + ["type"] = "implicit", + }, + }, + ["1522_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", + }, + }, + ["1522_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", + }, + }, + ["1628_MaximumFireResistanceEldritch"] = { ["Chest"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4095671657", - ["text"] = "+#% to maximum Fire Resistance", - ["type"] = "implicit", - }, - }, - ["1623_MaximumFireResistanceEldritchPinnaclePresence"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4095671657", + ["text"] = "+#% to maximum Fire Resistance", + ["type"] = "implicit", + }, + }, + ["1628_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", - }, - }, - ["1623_MaximumFireResistanceEldritchUniquePresence"] = { + ["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", + }, + }, + ["1628_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", - }, - }, - ["1623_MaximumFireResistanceImplicit"] = { + ["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", + }, + }, + ["1628_MaximumFireResistanceImplicit"] = { ["Boots"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4095671657", - ["text"] = "+#% to maximum Fire Resistance", - ["type"] = "implicit", - }, - }, - ["1623_MaximumFireResistanceImplicitPinnaclePresence"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4095671657", + ["text"] = "+#% to maximum Fire Resistance", + ["type"] = "implicit", + }, + }, + ["1628_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", - }, - }, - ["1623_MaximumFireResistanceImplicitUniquePresence"] = { + ["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", + }, + }, + ["1628_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", - }, - }, - ["1625_FireResistance"] = { + ["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", + }, + }, + ["1630_FireResistance"] = { ["Boots"] = { - ["max"] = 24, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3372524247", - ["text"] = "+#% to Fire Resistance", - ["type"] = "implicit", - }, - }, - ["1625_FireResistancePinnaclePresence"] = { + ["max"] = 24, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3372524247", + ["text"] = "+#% to Fire Resistance", + ["type"] = "implicit", + }, + }, + ["1630_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", - }, - }, - ["1625_FireResistanceUniquePresence"] = { + ["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", + }, + }, + ["1630_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", - }, - }, - ["1629_MaximumColdResistanceEldritch"] = { + ["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", + }, + }, + ["1634_MaximumColdResistanceEldritch"] = { ["Chest"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3676141501", - ["text"] = "+#% to maximum Cold Resistance", - ["type"] = "implicit", - }, - }, - ["1629_MaximumColdResistanceEldritchPinnaclePresence"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3676141501", + ["text"] = "+#% to maximum Cold Resistance", + ["type"] = "implicit", + }, + }, + ["1634_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", - }, - }, - ["1629_MaximumColdResistanceEldritchUniquePresence"] = { + ["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", + }, + }, + ["1634_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", - }, - }, - ["1629_MaximumColdResistanceImplicit"] = { - ["Gloves"] = { - ["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", - }, - }, - ["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", - }, - }, - ["1631_ColdResistance"] = { + ["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", + }, + }, + ["1634_MaximumColdResistanceImplicit"] = { + ["Gloves"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3676141501", + ["text"] = "+#% to maximum Cold Resistance", + ["type"] = "implicit", + }, + }, + ["1634_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", + }, + }, + ["1634_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", + }, + }, + ["1636_ColdResistance"] = { ["Boots"] = { - ["max"] = 24, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4220027924", - ["text"] = "+#% to Cold Resistance", - ["type"] = "implicit", - }, - }, - ["1631_ColdResistancePinnaclePresence"] = { + ["max"] = 24, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4220027924", + ["text"] = "+#% to Cold Resistance", + ["type"] = "implicit", + }, + }, + ["1636_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", - }, - }, - ["1631_ColdResistanceUniquePresence"] = { + ["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", + }, + }, + ["1636_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", - }, - }, - ["1634_MaximumLightningResistanceEldritch"] = { + ["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", + }, + }, + ["1639_MaximumLightningResistanceEldritch"] = { ["Chest"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1011760251", - ["text"] = "+#% to maximum Lightning Resistance", - ["type"] = "implicit", - }, - }, - ["1634_MaximumLightningResistanceEldritchPinnaclePresence"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1011760251", + ["text"] = "+#% to maximum Lightning Resistance", + ["type"] = "implicit", + }, + }, + ["1639_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", - }, - }, - ["1634_MaximumLightningResistanceEldritchUniquePresence"] = { + ["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", + }, + }, + ["1639_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", - }, - }, - ["1634_MaximumLightningResistanceImplicit"] = { + ["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", + }, + }, + ["1639_MaximumLightningResistanceImplicit"] = { ["Helmet"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1011760251", - ["text"] = "+#% to maximum Lightning Resistance", - ["type"] = "implicit", - }, - }, - ["1634_MaximumLightningResistanceImplicitPinnaclePresence"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1011760251", + ["text"] = "+#% to maximum Lightning Resistance", + ["type"] = "implicit", + }, + }, + ["1639_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", - }, - }, - ["1634_MaximumLightningResistanceImplicitUniquePresence"] = { + ["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", + }, + }, + ["1639_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", - }, - }, - ["1636_LightningResistance"] = { + ["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", + }, + }, + ["1641_LightningResistance"] = { ["Boots"] = { - ["max"] = 24, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1671376347", - ["text"] = "+#% to Lightning Resistance", - ["type"] = "implicit", - }, - }, - ["1636_LightningResistancePinnaclePresence"] = { + ["max"] = 24, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1671376347", + ["text"] = "+#% to Lightning Resistance", + ["type"] = "implicit", + }, + }, + ["1641_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", - }, - }, - ["1636_LightningResistanceUniquePresence"] = { + ["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", + }, + }, + ["1641_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", - }, - }, - ["1640_MaximumChaosResistanceImplicit"] = { + ["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", + }, + }, + ["1645_MaximumChaosResistanceImplicit"] = { ["Chest"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1301765461", - ["text"] = "+#% to maximum Chaos Resistance", - ["type"] = "implicit", - }, - }, - ["1640_MaximumChaosResistanceImplicitPinnaclePresence"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1301765461", + ["text"] = "+#% to maximum Chaos Resistance", + ["type"] = "implicit", + }, + }, + ["1645_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", - }, - }, - ["1640_MaximumChaosResistanceImplicitUniquePresence"] = { + ["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", + }, + }, + ["1645_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", - }, - }, - ["1641_ChaosResistance"] = { + ["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", + }, + }, + ["1646_ChaosResistance"] = { ["Boots"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2923486259", - ["text"] = "+#% to Chaos Resistance", - ["type"] = "implicit", - }, - }, - ["1641_ChaosResistancePinnaclePresence"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2923486259", + ["text"] = "+#% to Chaos Resistance", + ["type"] = "implicit", + }, + }, + ["1646_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", - }, - }, - ["1641_ChaosResistanceUniquePresence"] = { + ["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", + }, + }, + ["1646_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", - }, - }, - ["1642_MaximumResistances"] = { + ["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", + }, + }, + ["1647_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", - }, - }, - ["1642_MaximumResistancesPinnaclePresence"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_569299859", + ["text"] = "+#% to all maximum Resistances", + ["type"] = "implicit", + }, + }, + ["1647_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", - }, - }, - ["1642_MaximumResistancesUniquePresence"] = { + ["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", + }, + }, + ["1647_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", - }, - }, - ["1766_MinionLife"] = { + ["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", + }, + }, + ["1771_MinionLife"] = { ["Helmet"] = { - ["max"] = 29, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "implicit", - }, - }, - ["1766_MinionLifePinnaclePresence"] = { + ["max"] = 29, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "implicit", + }, + }, + ["1771_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", - }, - }, - ["1766_MinionLifeUniquePresence"] = { + ["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", + }, + }, + ["1771_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", - }, - }, - ["1769_MinionRunSpeed"] = { + ["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", + }, + }, + ["1774_MinionRunSpeed"] = { ["Helmet"] = { - ["max"] = 22, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_174664100", - ["text"] = "Minions have #% increased Movement Speed", - ["type"] = "implicit", - }, - }, - ["1769_MinionRunSpeedPinnaclePresence"] = { + ["max"] = 22, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", + ["type"] = "implicit", + }, + }, + ["1774_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", - }, - }, - ["1769_MinionRunSpeedUniquePresence"] = { + ["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", + }, + }, + ["1774_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", - }, - }, - ["1798_MovementVelocity"] = { + ["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", + }, + }, + ["1803_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", - }, - }, - ["1798_MovementVelocityPinnaclePresence"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "implicit", + }, + }, + ["1803_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", - }, - }, - ["1798_MovementVelocityUniquePresence"] = { + ["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", + }, + }, + ["1803_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", - }, - }, - ["1845_AvoidFreeze"] = { + ["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", + }, + }, + ["1850_AvoidFreeze"] = { ["Boots"] = { - ["max"] = 50, - ["min"] = 33, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", - ["type"] = "implicit", - }, - }, - ["1845_AvoidFreezePinnaclePresence"] = { + ["max"] = 50, + ["min"] = 33, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "implicit", + }, + }, + ["1850_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", - }, - }, - ["1845_AvoidFreezeUniquePresence"] = { + ["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", + }, + }, + ["1850_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", - }, - }, - ["1846_AvoidIgnite"] = { + ["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", + }, + }, + ["1851_AvoidIgnite"] = { ["Boots"] = { - ["max"] = 50, - ["min"] = 33, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1783006896", - ["text"] = "#% chance to Avoid being Ignited", - ["type"] = "implicit", - }, - }, - ["1846_AvoidIgnitePinnaclePresence"] = { + ["max"] = 50, + ["min"] = 33, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", + ["type"] = "implicit", + }, + }, + ["1851_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", - }, - }, - ["1846_AvoidIgniteUniquePresence"] = { + ["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", + }, + }, + ["1851_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", - }, - }, - ["1848_AvoidShock"] = { + ["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", + }, + }, + ["1853_AvoidShock"] = { ["Boots"] = { - ["max"] = 50, - ["min"] = 33, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", - ["type"] = "implicit", - }, - }, - ["1848_AvoidShockPinnaclePresence"] = { + ["max"] = 50, + ["min"] = 33, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "implicit", + }, + }, + ["1853_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", - }, - }, - ["1848_AvoidShockUniquePresence"] = { + ["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", + }, + }, + ["1853_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", - }, - }, - ["1851_AvoidStun"] = { + ["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", + }, + }, + ["1856_AvoidStun"] = { ["Boots"] = { - ["max"] = 32, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4262448838", - ["text"] = "#% chance to Avoid being Stunned", - ["type"] = "implicit", - }, - }, - ["1851_AvoidStunPinnaclePresence"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "implicit", + }, + }, + ["1856_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", - }, - }, - ["1851_AvoidStunUniquePresence"] = { + ["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", + }, + }, + ["1856_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", - }, - }, - ["1880_AreaOfEffect"] = { + ["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", + }, + }, + ["1885_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", - }, - }, - ["1880_AreaOfEffectPinnaclePresence"] = { + ["max"] = 18, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "implicit", + }, + }, + ["1885_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", - }, - }, - ["1880_AreaOfEffectUniquePresence"] = { + ["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", + }, + }, + ["1885_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", - }, - }, - ["1927_TrapThrowSpeed"] = { + ["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", + }, + }, + ["1932_TrapThrowSpeed"] = { ["Gloves"] = { - ["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", - }, - }, - ["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", - }, - }, - ["1928_MineLayingSpeed"] = { + ["max"] = 13, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", + ["type"] = "implicit", + }, + }, + ["1932_TrapThrowSpeedPinnaclePresence"] = { ["Gloves"] = { - ["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", - }, - }, - ["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", - }, - }, - ["1973_MinionDamage"] = { + ["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", + }, + }, + ["1932_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", + }, + }, + ["1933_MineLayingSpeed"] = { + ["Gloves"] = { + ["max"] = 13, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1896971621", + ["text"] = "#% increased Mine Throwing Speed", + ["type"] = "implicit", + }, + }, + ["1933_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", + }, + }, + ["1933_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", + }, + }, + ["1978_MinionDamage"] = { ["Amulet"] = { - ["max"] = 29, - ["min"] = 14, - }, - ["Gloves"] = { - ["max"] = 29, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "implicit", - }, - }, - ["1973_MinionDamagePinnaclePresence"] = { + ["max"] = 29, + ["min"] = 14, + }, + ["Gloves"] = { + ["max"] = 29, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "implicit", + }, + }, + ["1978_MinionDamagePinnaclePresence"] = { ["Amulet"] = { - ["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", - }, - }, - ["1973_MinionDamageUniquePresence"] = { + ["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", + }, + }, + ["1978_MinionDamageUniquePresence"] = { ["Amulet"] = { - ["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", - }, - }, - ["2578_SummonTotemCastSpeed"] = { + ["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", + }, + }, + ["2583_SummonTotemCastSpeed"] = { ["Boots"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", - ["type"] = "implicit", - }, - }, - ["2578_SummonTotemCastSpeedPinnaclePresence"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "implicit", + }, + }, + ["2583_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", - }, - }, - ["2578_SummonTotemCastSpeedUniquePresence"] = { + ["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", + }, + }, + ["2583_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", - }, - }, - ["2596_CurseEffectiveness"] = { + ["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", + }, + }, + ["2601_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", - }, - }, - ["2596_CurseEffectivenessPinnaclePresence"] = { + ["max"] = 12, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2353576063", + ["text"] = "#% increased Effect of your Curses", + ["type"] = "implicit", + }, + }, + ["2601_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", - }, - }, - ["2596_CurseEffectivenessUniquePresence"] = { + ["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", + }, + }, + ["2601_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", - }, - }, - ["2699_DamageRemovedFromManaBeforeLife"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", - ["type"] = "implicit", - }, - }, - ["2699_DamageRemovedFromManaBeforeLifePinnaclePresence"] = { - ["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", - }, - }, - ["2699_DamageRemovedFromManaBeforeLifeUniquePresence"] = { - ["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", - }, - }, - ["2742_FlaskEffect"] = { + ["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", + }, + }, + ["2704_DamageRemovedFromManaBeforeLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "implicit", + }, + }, + ["2704_DamageRemovedFromManaBeforeLifePinnaclePresence"] = { + ["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", + }, + }, + ["2704_DamageRemovedFromManaBeforeLifeUniquePresence"] = { + ["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", + }, + }, + ["2747_FlaskEffect"] = { ["Chest"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_114734841", - ["text"] = "Flasks applied to you have #% increased Effect", - ["type"] = "implicit", - }, - }, - ["2742_FlaskEffectPinnaclePresence"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_114734841", + ["text"] = "Flasks applied to you have #% increased Effect", + ["type"] = "implicit", + }, + }, + ["2747_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", - }, - }, - ["2742_FlaskEffectUniquePresence"] = { + ["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", + }, + }, + ["2747_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", - }, - }, - ["3199_DamagePerEnduranceCharge"] = { + ["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", + }, + }, + ["3204_DamagePerEnduranceCharge"] = { ["Boots"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3515686789", - ["text"] = "#% increased Damage per Endurance Charge", - ["type"] = "implicit", - }, - }, - ["3199_DamagePerEnduranceChargePinnaclePresence"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3515686789", + ["text"] = "#% increased Damage per Endurance Charge", + ["type"] = "implicit", + }, + }, + ["3204_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", - }, - }, - ["3199_DamagePerEnduranceChargeUniquePresence"] = { + ["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", + }, + }, + ["3204_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", - }, - }, - ["3286_DamagePerFrenzyCharge"] = { + ["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", + }, + }, + ["3291_DamagePerFrenzyCharge"] = { ["Gloves"] = { - ["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", - }, - }, - ["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", - }, - }, - ["3290_OnslaughtEffect"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_902747843", + ["text"] = "#% increased Damage per Frenzy Charge", + ["type"] = "implicit", + }, + }, + ["3291_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", + }, + }, + ["3291_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", + }, + }, + ["3295_OnslaughtEffect"] = { ["Boots"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3151397056", - ["text"] = "#% increased Effect of Onslaught on you", - ["type"] = "implicit", - }, - }, - ["3290_OnslaughtEffectPinnaclePresence"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3151397056", + ["text"] = "#% increased Effect of Onslaught on you", + ["type"] = "implicit", + }, + }, + ["3295_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", - }, - }, - ["3290_OnslaughtEffectUniquePresence"] = { + ["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", + }, + }, + ["3295_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", - }, - }, - ["3478_FlaskGainPerSecond"] = { + ["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", + }, + }, + ["3483_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", - }, - }, - ["3478_FlaskGainPerSecondPinnaclePresence"] = { + ["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", + }, + }, + ["3483_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", - }, - }, - ["3478_FlaskGainPerSecondUniquePresence"] = { + ["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", + }, + }, + ["3483_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", - }, - }, - ["3566_AuraEffect"] = { + ["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", + }, + }, + ["3571_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", - }, - }, - ["3566_AuraEffectPinnaclePresence"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1880071428", + ["text"] = "#% increased effect of Non-Curse Auras from your Skills", + ["type"] = "implicit", + }, + }, + ["3571_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", - }, - }, - ["3566_AuraEffectUniquePresence"] = { + ["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", + }, + }, + ["3571_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", - }, - }, - ["4008_CurseEffectTemporalChains"] = { + ["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", + }, + }, + ["4013_CurseEffectTemporalChains"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1662974426", - ["text"] = "#% increased Temporal Chains Curse Effect", - ["type"] = "implicit", - }, - }, - ["4008_CurseEffectTemporalChainsPinnaclePresence"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1662974426", + ["text"] = "#% increased Temporal Chains Curse Effect", + ["type"] = "implicit", + }, + }, + ["4013_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", - }, - }, - ["4008_CurseEffectTemporalChainsUniquePresence"] = { + ["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", + }, + }, + ["4013_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", - }, - }, - ["4010_CurseEffectConductivity"] = { + ["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", + }, + }, + ["4015_CurseEffectConductivity"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3395908304", - ["text"] = "#% increased Conductivity Curse Effect", - ["type"] = "implicit", - }, - }, - ["4010_CurseEffectConductivityPinnaclePresence"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3395908304", + ["text"] = "#% increased Conductivity Curse Effect", + ["type"] = "implicit", + }, + }, + ["4015_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", - }, - }, - ["4010_CurseEffectConductivityUniquePresence"] = { + ["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", + }, + }, + ["4015_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", - }, - }, - ["4011_CurseEffectElementalWeakness"] = { + ["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", + }, + }, + ["4016_CurseEffectElementalWeakness"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3348324479", - ["text"] = "#% increased Elemental Weakness Curse Effect", - ["type"] = "implicit", - }, - }, - ["4011_CurseEffectElementalWeaknessPinnaclePresence"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3348324479", + ["text"] = "#% increased Elemental Weakness Curse Effect", + ["type"] = "implicit", + }, + }, + ["4016_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", - }, - }, - ["4011_CurseEffectElementalWeaknessUniquePresence"] = { + ["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", + }, + }, + ["4016_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", - }, - }, - ["4012_CurseEffectEnfeeble"] = { + ["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", + }, + }, + ["4017_CurseEffectEnfeeble"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3293830776", - ["text"] = "#% increased Enfeeble Curse Effect", - ["type"] = "implicit", - }, - }, - ["4012_CurseEffectEnfeeblePinnaclePresence"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3293830776", + ["text"] = "#% increased Enfeeble Curse Effect", + ["type"] = "implicit", + }, + }, + ["4017_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", - }, - }, - ["4012_CurseEffectEnfeebleUniquePresence"] = { + ["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", + }, + }, + ["4017_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", - }, - }, - ["4013_CurseEffectFlammability"] = { + ["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", + }, + }, + ["4018_CurseEffectFlammability"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_282417259", - ["text"] = "#% increased Flammability Curse Effect", - ["type"] = "implicit", - }, - }, - ["4013_CurseEffectFlammabilityPinnaclePresence"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_282417259", + ["text"] = "#% increased Flammability Curse Effect", + ["type"] = "implicit", + }, + }, + ["4018_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", - }, - }, - ["4013_CurseEffectFlammabilityUniquePresence"] = { + ["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", + }, + }, + ["4018_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", - }, - }, - ["4014_CurseEffectFrostbite"] = { + ["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", + }, + }, + ["4019_CurseEffectFrostbite"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1443215722", - ["text"] = "#% increased Frostbite Curse Effect", - ["type"] = "implicit", - }, - }, - ["4014_CurseEffectFrostbitePinnaclePresence"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1443215722", + ["text"] = "#% increased Frostbite Curse Effect", + ["type"] = "implicit", + }, + }, + ["4019_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", - }, - }, - ["4014_CurseEffectFrostbiteUniquePresence"] = { + ["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", + }, + }, + ["4019_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", - }, - }, - ["4015_CurseEffectPunishment"] = { + ["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", + }, + }, + ["4020_CurseEffectPunishment"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2844206732", - ["text"] = "#% increased Punishment Curse Effect", - ["type"] = "implicit", - }, - }, - ["4015_CurseEffectPunishmentPinnaclePresence"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2844206732", + ["text"] = "#% increased Punishment Curse Effect", + ["type"] = "implicit", + }, + }, + ["4020_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", - }, - }, - ["4015_CurseEffectPunishmentUniquePresence"] = { + ["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", + }, + }, + ["4020_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", - }, - }, - ["4016_CurseEffectVulnerability"] = { + ["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", + }, + }, + ["4021_CurseEffectVulnerability"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1065909420", - ["text"] = "#% increased Vulnerability Curse Effect", - ["type"] = "implicit", - }, - }, - ["4016_CurseEffectVulnerabilityPinnaclePresence"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1065909420", + ["text"] = "#% increased Vulnerability Curse Effect", + ["type"] = "implicit", + }, + }, + ["4021_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", - }, - }, - ["4016_CurseEffectVulnerabilityUniquePresence"] = { + ["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", + }, + }, + ["4021_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", - }, - }, - ["4022_ArcticArmourBuffEffect"] = { + ["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", + }, + }, + ["4027_ArcticArmourBuffEffect"] = { ["Chest"] = { - ["max"] = 32, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3995612171", - ["text"] = "#% increased Arctic Armour Buff Effect", - ["type"] = "implicit", - }, - }, - ["4022_ArcticArmourBuffEffectPinnaclePresence"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3995612171", + ["text"] = "#% increased Arctic Armour Buff Effect", + ["type"] = "implicit", + }, + }, + ["4027_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", - }, - }, - ["4022_ArcticArmourBuffEffectUniquePresence"] = { + ["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", + }, + }, + ["4027_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", - }, - }, - ["4063_OfferingEffect"] = { + ["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", + }, + }, + ["4068_OfferingEffect"] = { ["Chest"] = { - ["max"] = 24, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3191479793", - ["text"] = "#% increased effect of Offerings", - ["type"] = "implicit", - }, - }, - ["4063_OfferingEffectPinnaclePresence"] = { + ["max"] = 24, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3191479793", + ["text"] = "#% increased effect of Offerings", + ["type"] = "implicit", + }, + }, + ["4068_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", - }, - }, - ["4063_OfferingEffectUniquePresence"] = { + ["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", + }, + }, + ["4068_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", - }, - }, - ["4096_RockGolemBuffEffect"] = { + ["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", + }, + }, + ["4101_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", - }, - }, - ["4096_RockGolemBuffEffectPinnaclePresence"] = { + ["max"] = 48, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2284801675", + ["text"] = "#% increased Effect of the Buff granted by your Stone Golems", + ["type"] = "implicit", + }, + }, + ["4101_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", - }, - }, - ["4096_RockGolemBuffEffectUniquePresence"] = { + ["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", + }, + }, + ["4101_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", - }, - }, - ["4097_FireGolemBuffEffect"] = { + ["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", + }, + }, + ["4102_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", - }, - }, - ["4097_FireGolemBuffEffectPinnaclePresence"] = { + ["max"] = 48, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_269930125", + ["text"] = "#% increased Effect of the Buff granted by your Flame Golems", + ["type"] = "implicit", + }, + }, + ["4102_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", - }, - }, - ["4097_FireGolemBuffEffectUniquePresence"] = { + ["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", + }, + }, + ["4102_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", - }, - }, - ["4098_IceGolemBuffEffect"] = { + ["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", + }, + }, + ["4103_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", - }, - }, - ["4098_IceGolemBuffEffectPinnaclePresence"] = { + ["max"] = 48, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2250111474", + ["text"] = "#% increased Effect of the Buff granted by your Ice Golems", + ["type"] = "implicit", + }, + }, + ["4103_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", - }, - }, - ["4098_IceGolemBuffEffectUniquePresence"] = { + ["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", + }, + }, + ["4103_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", - }, - }, - ["4099_LightningGolemBuffEffect"] = { + ["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", + }, + }, + ["4104_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", - }, - }, - ["4099_LightningGolemBuffEffectPinnaclePresence"] = { + ["max"] = 48, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2527931375", + ["text"] = "#% increased Effect of the Buff granted by your Lightning Golems", + ["type"] = "implicit", + }, + }, + ["4104_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", - }, - }, - ["4099_LightningGolemBuffEffectUniquePresence"] = { + ["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", + }, + }, + ["4104_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", - }, - }, - ["4100_ChaosGolemBuffEffect"] = { + ["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", + }, + }, + ["4105_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", - }, - }, - ["4100_ChaosGolemBuffEffectPinnaclePresence"] = { + ["max"] = 48, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1648511635", + ["text"] = "#% increased Effect of the Buff granted by your Chaos Golems", + ["type"] = "implicit", + }, + }, + ["4105_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", - }, - }, - ["4100_ChaosGolemBuffEffectUniquePresence"] = { + ["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", + }, + }, + ["4105_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", - }, - }, - ["4527_ActionSpeedImplicit"] = { + ["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", + }, + }, + ["4532_ActionSpeedImplicit"] = { ["Boots"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2878959938", - ["text"] = "#% increased Action Speed", - ["type"] = "implicit", - }, - }, - ["4527_ActionSpeedImplicitPinnaclePresence"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2878959938", + ["text"] = "#% increased Action Speed", + ["type"] = "implicit", + }, + }, + ["4532_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", - }, - }, - ["4527_ActionSpeedImplicitUniquePresence"] = { + ["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", + }, + }, + ["4532_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", - }, - }, - ["4844_AttackCriticalStrikeChance"] = { + ["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", + }, + }, + ["4849_AttackCriticalStrikeChance"] = { ["Amulet"] = { - ["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", - }, - }, - ["4844_AttackCriticalStrikeChancePinnaclePresence"] = { + ["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", + }, + }, + ["4849_AttackCriticalStrikeChancePinnaclePresence"] = { ["Amulet"] = { - ["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", - }, - }, - ["4844_AttackCriticalStrikeChanceUniquePresence"] = { + ["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", + }, + }, + ["4849_AttackCriticalStrikeChanceUniquePresence"] = { ["Amulet"] = { - ["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", - }, - }, - ["4868_ReducedAttackManaCost"] = { + ["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", + }, + }, + ["4873_ReducedAttackManaCost"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2859471749", - ["text"] = "#% reduced Mana Cost of Attacks", - ["type"] = "implicit", - }, - }, - ["4868_ReducedAttackManaCostPinnaclePresence"] = { + ["max"] = 30, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2859471749", + ["text"] = "#% reduced Mana Cost of Attacks", + ["type"] = "implicit", + }, + }, + ["4873_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", - }, - }, - ["4868_ReducedAttackManaCostUniquePresence"] = { + ["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", + }, + }, + ["4873_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", - }, - }, - ["4997_CarrionGolemBuffEffect"] = { + ["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", + }, + }, + ["5002_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", - }, - }, - ["4997_CarrionGolemBuffEffectPinnaclePresence"] = { + ["max"] = 48, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2420972973", + ["text"] = "#% increased Effect of the Buff granted by your Carrion Golems", + ["type"] = "implicit", + }, + }, + ["5002_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", - }, - }, - ["4997_CarrionGolemBuffEffectUniquePresence"] = { + ["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", + }, + }, + ["5002_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", - }, - }, - ["5247_EnduranceChargePerSecond"] = { + ["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", + }, + }, + ["5252_EnduranceChargePerSecond"] = { ["Chest"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2555092341", - ["text"] = "Gain an Endurance Charge every # seconds", - ["type"] = "implicit", - }, - }, - ["5247_EnduranceChargePerSecondPinnaclePresence"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2555092341", + ["text"] = "Gain an Endurance Charge every # seconds", + ["type"] = "implicit", + }, + }, + ["5252_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", - }, - }, - ["5247_EnduranceChargePerSecondUniquePresence"] = { + ["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", + }, + }, + ["5252_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", - }, - }, - ["5248_FrenzyChargePerSecond"] = { + ["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", + }, + }, + ["5253_FrenzyChargePerSecond"] = { ["Chest"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3906868545", - ["text"] = "Gain a Frenzy Charge every # seconds", - ["type"] = "implicit", - }, - }, - ["5248_FrenzyChargePerSecondPinnaclePresence"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3906868545", + ["text"] = "Gain a Frenzy Charge every # seconds", + ["type"] = "implicit", + }, + }, + ["5253_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", - }, - }, - ["5248_FrenzyChargePerSecondUniquePresence"] = { + ["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", + }, + }, + ["5253_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", - }, - }, - ["5249_PowerChargePerSecond"] = { + ["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", + }, + }, + ["5254_PowerChargePerSecond"] = { ["Chest"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3533655459", - ["text"] = "Gain a Power Charge every # seconds", - ["type"] = "implicit", - }, - }, - ["5249_PowerChargePerSecondPinnaclePresence"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3533655459", + ["text"] = "Gain a Power Charge every # seconds", + ["type"] = "implicit", + }, + }, + ["5254_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", - }, - }, - ["5249_PowerChargePerSecondUniquePresence"] = { + ["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", + }, + }, + ["5254_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", - }, - }, - ["5258_BrittleGroundMovingImplicit"] = { + ["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", + }, + }, + ["5263_BrittleGroundMovingImplicit"] = { ["Boots"] = { - ["max"] = 7, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_984148407", - ["text"] = "Drops Brittle Ground while moving, lasting # seconds", - ["type"] = "implicit", - }, - }, - ["5258_BrittleGroundWhileMovingPinnaclePresence"] = { + ["max"] = 7, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_984148407", + ["text"] = "Drops Brittle Ground while moving, lasting # seconds", + ["type"] = "implicit", + }, + }, + ["5263_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", - }, - }, - ["5258_BrittleGroundWhileMovingUniquePresence"] = { + ["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", + }, + }, + ["5263_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", - }, - }, - ["5259_SappedGroundMovingImplicit"] = { + ["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", + }, + }, + ["5264_SappedGroundMovingImplicit"] = { ["Boots"] = { - ["max"] = 7, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1997664024", - ["text"] = "Drops Sapped Ground while moving, lasting # seconds", - ["type"] = "implicit", - }, - }, - ["5259_SappedGroundWhileMovingPinnaclePresence"] = { + ["max"] = 7, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1997664024", + ["text"] = "Drops Sapped Ground while moving, lasting # seconds", + ["type"] = "implicit", + }, + }, + ["5264_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", - }, - }, - ["5259_SappedGroundWhileMovingUniquePresence"] = { + ["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", + }, + }, + ["5264_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", - }, - }, - ["5260_ScorchedGroundMovingImplicit"] = { + ["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", + }, + }, + ["5265_ScorchedGroundMovingImplicit"] = { ["Boots"] = { - ["max"] = 7, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_396238230", - ["text"] = "Drops Scorched Ground while moving, lasting # seconds", - ["type"] = "implicit", - }, - }, - ["5260_ScorchedGroundWhileMovingPinnaclePresence"] = { + ["max"] = 7, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_396238230", + ["text"] = "Drops Scorched Ground while moving, lasting # seconds", + ["type"] = "implicit", + }, + }, + ["5265_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", - }, - }, - ["5260_ScorchedGroundWhileMovingUniquePresence"] = { + ["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", + }, + }, + ["5265_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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["5818_ColdDamageTakenGainedAsLife"] = { + ["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", + }, + }, + ["5720_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", + }, + }, + ["5720_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", + }, + }, + ["5720_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", + }, + }, + ["5730_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", + }, + }, + ["5730_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", + }, + }, + ["5730_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", + }, + }, + ["5823_ColdDamageTakenGainedAsLife"] = { ["Helmet"] = { - ["max"] = 18, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3679418014", - ["text"] = "#% of Cold Damage taken Recouped as Life", - ["type"] = "implicit", - }, - }, - ["5818_ColdDamageTakenGainedAsLifePinnaclePresence"] = { + ["max"] = 18, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3679418014", + ["text"] = "#% of Cold Damage taken Recouped as Life", + ["type"] = "implicit", + }, + }, + ["5823_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", - }, - }, - ["5818_ColdDamageTakenGainedAsLifeUniquePresence"] = { + ["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", + }, + }, + ["5823_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", - }, - }, - ["6066_IncreasedDamagePerPowerCharge"] = { + ["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", + }, + }, + ["6071_IncreasedDamagePerPowerCharge"] = { ["Helmet"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2034658008", - ["text"] = "#% increased Damage per Power Charge", - ["type"] = "implicit", - }, - }, - ["6066_IncreasedDamagePerPowerChargePinnaclePresence"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2034658008", + ["text"] = "#% increased Damage per Power Charge", + ["type"] = "implicit", + }, + }, + ["6071_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", - }, - }, - ["6066_IncreasedDamagePerPowerChargeUniquePresence"] = { + ["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", + }, + }, + ["6071_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", - }, - }, - ["6105_DamageTakenGainedAsLife"] = { + ["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", + }, + }, + ["6110_DamageTakenGainedAsLife"] = { ["Chest"] = { - ["max"] = 19, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "implicit", - }, - }, - ["6105_DamageTakenGainedAsLifePinnaclePresence"] = { + ["max"] = 19, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "implicit", + }, + }, + ["6110_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", - }, - }, - ["6105_DamageTakenGainedAsLifeUniquePresence"] = { + ["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", + }, + }, + ["6110_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", - }, - }, - ["6168_CurseEffectDespair"] = { + ["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", + }, + }, + ["6173_CurseEffectDespair"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3185156108", - ["text"] = "#% increased Despair Curse Effect", - ["type"] = "implicit", - }, - }, - ["6168_CurseEffectDespairPinnaclePresence"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3185156108", + ["text"] = "#% increased Despair Curse Effect", + ["type"] = "implicit", + }, + }, + ["6173_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", - }, - }, - ["6168_CurseEffectDespairUniquePresence"] = { + ["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", + }, + }, + ["6173_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"] = { - ["Gloves"] = { - ["max"] = 40, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_49183689", - ["text"] = "#% chance to Extinguish Enemies on Hit", - ["type"] = "implicit", - }, - }, - ["6529_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"] = { - ["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"] = 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", + }, + }, + ["6534_ExtinguishOnHitChance"] = { + ["Gloves"] = { + ["max"] = 40, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_49183689", + ["text"] = "#% chance to Extinguish Enemies on Hit", + ["type"] = "implicit", + }, + }, + ["6534_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", + }, + }, + ["6534_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", + }, + }, + ["6576_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", + }, + }, + ["6576_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", + }, + }, + ["6576_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", + }, + }, + ["6653_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", + }, + }, + ["6653_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", + }, + }, + ["6653_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"] = { - ["Gloves"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2676601655", - ["text"] = "Gain # Rage on Attack Hit", - ["type"] = "implicit", - }, - }, - ["6838_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"] = { - ["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"] = 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", + }, + }, + ["6843_RageOnAttackHit"] = { + ["Gloves"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2676601655", + ["text"] = "Gain # Rage on Attack Hit", + ["type"] = "implicit", + }, + }, + ["6843_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", + }, + }, + ["6843_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", + }, + }, + ["6894_RageOnHitImplicit"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2802161115", + ["text"] = "Gain 1 Rage on Hit with Attacks", + ["type"] = "implicit", + }, + }, + ["6894_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", + }, + }, + ["6894_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", + }, + }, + ["6898_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", + }, + }, + ["6898_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", + }, + }, + ["6898_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"] = { - ["Gloves"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2572910724", - ["text"] = "Herald of Agony has #% increased Buff Effect", - ["type"] = "implicit", - }, - }, - ["7107_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"] = { - ["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"] = { - ["Gloves"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2154349925", - ["text"] = "Herald of Ash has #% increased Buff Effect", - ["type"] = "implicit", - }, - }, - ["7111_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"] = { - ["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"] = { - ["Gloves"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1862926389", - ["text"] = "Herald of Ice has #% increased Buff Effect", - ["type"] = "implicit", - }, - }, - ["7115_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"] = { - ["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"] = { - ["Gloves"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2126027382", - ["text"] = "Herald of Purity has #% increased Buff Effect", - ["type"] = "implicit", - }, - }, - ["7119_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"] = { - ["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"] = { - ["Gloves"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3814686091", - ["text"] = "Herald of Thunder has #% increased Buff Effect", - ["type"] = "implicit", - }, - }, - ["7125_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"] = { - ["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"] = 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", + }, + }, + ["7112_HeraldBonusAgonyEffect"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2572910724", + ["text"] = "Herald of Agony has #% increased Buff Effect", + ["type"] = "implicit", + }, + }, + ["7112_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", + }, + }, + ["7112_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", + }, + }, + ["7116_HeraldBonusAshEffect"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2154349925", + ["text"] = "Herald of Ash has #% increased Buff Effect", + ["type"] = "implicit", + }, + }, + ["7116_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", + }, + }, + ["7116_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", + }, + }, + ["7120_HeraldBonusIceEffect"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1862926389", + ["text"] = "Herald of Ice has #% increased Buff Effect", + ["type"] = "implicit", + }, + }, + ["7120_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", + }, + }, + ["7120_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", + }, + }, + ["7124_HeraldBonusPurityEffect"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2126027382", + ["text"] = "Herald of Purity has #% increased Buff Effect", + ["type"] = "implicit", + }, + }, + ["7124_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", + }, + }, + ["7124_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", + }, + }, + ["7130_HeraldBonusThunderEffect"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3814686091", + ["text"] = "Herald of Thunder has #% increased Buff Effect", + ["type"] = "implicit", + }, + }, + ["7130_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", + }, + }, + ["7130_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", + }, + }, + ["7456_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", + }, + }, + ["7456_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", + }, + }, + ["7456_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"] = { - ["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"] = 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", + }, + }, + ["9188_StrikeSkillsAdditionalTarget"] = { + ["Gloves"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1661253443", + ["text"] = "Non-Vaal Strike Skills target # additional nearby Enemy", + ["type"] = "implicit", + }, + }, + ["9662_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", + }, + }, + ["9662_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", + }, + }, + ["9662_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"] = { + ["10004_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", + }, + }, + ["10011_ShockYourselfOnFocusCDR"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3181879507", + ["text"] = "Shock yourself for # Seconds when you Focus", + ["type"] = "explicit", + }, + }, + ["10012_ShockNearbyEnemiesOnFocusCDR"] = { ["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"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3031766858", + ["text"] = "Shock nearby Enemies for # Seconds when you Focus", + ["type"] = "explicit", + }, + }, + ["10013_ShockNearbyEnemiesOnFocus"] = { ["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", - }, - }, + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3031766858", + ["text"] = "Shock nearby Enemies for # Seconds when you Focus", + ["type"] = "explicit", + }, + }, + ["10017_ChillAndShockEffectOnYouJewel"] = { + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1984113628", + ["text"] = "#% increased Effect of Chill and Shock on you", + ["type"] = "explicit", + }, + }, ["10018_ReducedElementalAilmentEffectOnSelf"] = { ["Boots"] = { - ["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, + }, + ["Gloves"] = { + ["max"] = -24, + ["min"] = -40, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1984113628", + ["text"] = "#% increased Effect of Chill and Shock on you", + ["type"] = "explicit", + }, + }, + ["10018_ReducedShockEffectOnSelf"] = { ["AnyJewel"] = { - ["max"] = 35, - ["min"] = 30, - }, + ["max"] = 35, + ["min"] = 30, + }, ["BaseJewel"] = { - ["max"] = 35, - ["min"] = 30, - }, + ["max"] = 35, + ["min"] = 30, + }, ["Helmet"] = { - ["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"] = 51, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3801067695", + ["text"] = "#% reduced Effect of Shock on you", + ["type"] = "explicit", + }, + }, + ["10018_ReducedShockEffectOnSelfMaven"] = { ["Helmet"] = { - ["max"] = 60, - ["min"] = 51, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3801067695", - ["text"] = "#% reduced Effect of Shock on you", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 51, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3801067695", + ["text"] = "#% reduced Effect of Shock on you", + ["type"] = "explicit", + }, + }, + ["10019_ReducedShockEffectOnSelf"] = { + ["Ring"] = { + ["max"] = 60, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3801067695", + ["text"] = "#% reduced Effect of Shock on you", + ["type"] = "explicit", + }, + }, + ["1003_LocalFlaskPhysicalDamageCanIgnite"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3914001710", + ["text"] = "Your Physical Damage can Ignite during Effect", + ["type"] = "explicit", + }, + }, + ["10042_BrandAttachmentRange"] = { + ["Amulet"] = { + ["max"] = 28, + ["min"] = 25, + }, + ["Gloves"] = { + ["max"] = 28, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4223377453", + ["text"] = "#% increased Brand Attachment range", + ["type"] = "explicit", + }, + }, ["10043_BrandAttachmentRange"] = { ["Amulet"] = { - ["max"] = 28, - ["min"] = 11, - }, - ["Gloves"] = { - ["max"] = 28, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4223377453", - ["text"] = "#% increased Brand Attachment range", - ["type"] = "explicit", - }, - }, - ["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", - }, - }, - ["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", - }, - }, + ["max"] = 20, + ["min"] = 11, + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4223377453", + ["text"] = "#% increased Brand Attachment range", + ["type"] = "explicit", + }, + }, + ["1004_LocalFlaskSkillManaCostDuringFlaskEffect"] = { + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_683273571", + ["text"] = "#% increased Mana Cost of Skills during Effect", + ["type"] = "explicit", + }, + }, + ["10057_LifeCostOnLowLife"] = { + ["inverseKey"] = "less", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3452986510", + ["text"] = "#% more Life cost of Skills while on Low Life", + ["type"] = "explicit", + }, + }, + ["10059_ManaCostTotalChannelled"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2421446548", + ["text"] = "Channelling Skills have +# to Total Mana Cost", + ["type"] = "explicit", + }, + }, + ["10060_ManaCostBaseChannelled"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1178188780", + ["text"] = "Channelling Skills Cost +# Mana", + ["type"] = "explicit", + }, + }, ["10060_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", - }, - }, + ["max"] = 3, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2421446548", + ["text"] = "Channelling Skills have +# to Total Mana Cost", + ["type"] = "explicit", + }, + }, + ["10061_IncreasedManaAndCostNew"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_677564538", + ["text"] = "Non-Channelling Skills have +# to Total Mana Cost", + ["type"] = "explicit", + }, + }, + ["10061_ManaCostTotalNonChannelled"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_677564538", + ["text"] = "Non-Channelling Skills have +# to Total Mana Cost", + ["type"] = "explicit", + }, + }, + ["10062_IncreasedManaAndBaseCost"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_407482587", + ["text"] = "Non-Channelling Skills Cost +# Mana", + ["type"] = "explicit", + }, + }, + ["10062_ManaCostBaseNonChannelled"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_407482587", + ["text"] = "Non-Channelling Skills Cost +# Mana", + ["type"] = "explicit", + }, + }, ["10062_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", - }, - }, - ["1006_FlaskBuffChillFreezeDuration"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_677564538", + ["text"] = "Non-Channelling Skills have +# to Total Mana Cost", + ["type"] = "explicit", + }, + }, + ["10064_SkillsCostNoManaWhileFocusedCDR"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_849152640", + ["text"] = "Non-Aura Skills Cost no Mana or Life while Focused", + ["type"] = "explicit", + }, + }, + ["10069_MineLifeReserve"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1192252020", + ["text"] = "Your Skills that throw Mines reserve Life instead of Mana", + ["type"] = "explicit", + }, + }, + ["1009_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", - }, - }, - ["1009_FlaskBuffShockEffect"] = { + ["max"] = 65, + ["min"] = 36, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2434101731", + ["text"] = "#% reduced Effect of Chill on you during Effect", + ["type"] = "explicit", + }, + }, + ["1010_FlaskBuffCurseEffect"] = { ["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"] = 65, + ["min"] = 36, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4265534424", + ["text"] = "#% reduced Effect of Curses on you during Effect", + ["type"] = "explicit", + }, + }, + ["10114_SpectresAdditionalBaseCriticalChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2341487846", + ["text"] = "Raised Spectres have +#% to Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["10116_SpectresBaseMaximumAllResistance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2472962676", + ["text"] = "Raised Spectres have +#% to all maximum Resistances", + ["type"] = "explicit", + }, + }, + ["10117_SpectresAreaOfEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3724637507", + ["text"] = "Raised Spectres have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["1011_FlaskBuffChillFreezeDuration"] = { + ["Flask"] = { + ["max"] = -36, + ["min"] = -65, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_774474440", + ["text"] = "#% increased Freeze Duration on you during Effect", + ["type"] = "explicit", + }, + }, + ["10122_SpectresAdditionalProjectiles"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1275218140", + ["text"] = "Raised Spectres fire # additional Projectiles", + ["type"] = "explicit", + }, + }, + ["10124_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", + }, + }, + ["10132_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", + }, + }, + ["10135_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", + }, + }, + ["10136_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", + }, + }, + ["10147_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"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2080171093", + ["text"] = "#% increased Spell Damage during any Flask Effect", + ["type"] = "explicit", + }, + }, + ["1014_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", + }, + }, + ["10152_SpellDamagePer10Strength"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4249521944", - ["text"] = "#% increased Spell Damage per 16 Strength", - ["type"] = "explicit", - }, - }, - ["10154_SpellDamagePer16Dexterity"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1073314277", + ["text"] = "#% increased Spell Damage per 10 Strength", + ["type"] = "explicit", + }, + }, + ["10153_SpellDamagePer16Dexterity"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2612056840", - ["text"] = "#% increased Spell Damage per 16 Dexterity", - ["type"] = "explicit", - }, - }, - ["10155_SpellDamagePer16Intelligence"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2612056840", + ["text"] = "#% increased Spell Damage per 16 Dexterity", + ["type"] = "explicit", + }, + }, + ["10154_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", + }, + }, + ["10155_SpellDamagePer16Strength"] = { ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4249521944", - ["text"] = "#% increased Spell Damage per 16 Strength", - ["type"] = "explicit", - }, - }, - ["10188_SpellsHinderOnHitChance"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1073314277", + ["text"] = "#% increased Spell Damage per 10 Strength", + ["type"] = "explicit", + }, + }, + ["10187_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", - }, - }, + ["max"] = 8, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3002506763", + ["text"] = "#% chance to Hinder Enemies on Hit with Spells", + ["type"] = "explicit", + }, + }, + ["10198_EnchantmentSpellslingerManaReservationEfficiency"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3305838454", + ["text"] = "#% increased Mana Reservation Efficiency of Skills Supported by Spellslinger", + ["type"] = "explicit", + }, + }, + ["10223_StatusAilmentsYouInflictDurationWhileFocused"] = { + ["Helmet"] = { + ["max"] = 40, + ["min"] = 36, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1840751341", + ["text"] = "#% increased Duration of Ailments you inflict while Focused", + ["type"] = "explicit", + }, + }, ["10224_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"] = 30, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1840751341", + ["text"] = "#% increased Duration of Ailments you inflict while Focused", + ["type"] = "explicit", + }, + }, + ["10256_GlobalStrengthGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2339012908", + ["text"] = "+# to Level of all Strength Skill Gems", + ["type"] = "explicit", + }, + }, + ["10320_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", + }, + }, + ["10320_FireResistanceAilments"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_165402179", + ["text"] = "# to # added Fire Damage against Burning Enemies", + ["type"] = "explicit", + }, + }, + ["10345_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", + }, + }, + ["10347_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", + }, + }, + ["10347_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", + }, + }, + ["10355_WarcryTauntedEnemiesTakeIncreasedDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3610197448", + ["text"] = "Enemies Taunted by your Warcries take #% increased Damage", + ["type"] = "explicit", + }, + }, + ["10413_TrapAndMineThrowSpeed"] = { ["Belt"] = { - ["max"] = 21, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_464535071", - ["text"] = "#% increased Trap and Mine Throwing Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 21, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_464535071", + ["text"] = "#% increased Trap and Mine Throwing Speed", + ["type"] = "explicit", + }, + }, ["10423_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", + }, + }, + ["10455_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", + }, + }, + ["10457_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", + }, + }, + ["10460_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", + }, + }, + ["10466_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", + }, + }, + ["10472_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", + }, + }, + ["10476_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", + }, + }, + ["10478_UnaffectedByShockWhileChannel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2967697688", + ["text"] = "Unaffected by Shock while Channelling", + ["type"] = "explicit", + }, + }, + ["10480_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", + }, + }, + ["10503_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", + }, + }, + ["10565_WarcryAreaOfEffectMaven"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3037553757", - ["text"] = "#% increased Warcry Buff Effect", - ["type"] = "explicit", - }, - }, - ["10566_WarcryBuffEffect"] = { - ["Helmet"] = { - ["max"] = 18, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3037553757", - ["text"] = "#% increased Warcry Buff Effect", - ["type"] = "explicit", - }, - }, - ["10566_WarcryEffect"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", + ["type"] = "explicit", + }, + }, + ["10565_WarcryBuffEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", + ["type"] = "explicit", + }, + }, + ["10565_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", + }, + }, + ["10566_WarcryBuffEffect"] = { + ["Helmet"] = { + ["max"] = 18, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", + ["type"] = "explicit", + }, + }, + ["10573_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", + }, + }, + ["10573_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", + }, + }, + ["10628_WrathReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1761642973", + ["text"] = "Wrath has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["10629_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", + }, + }, + ["10687_ConsecratedChaosRes"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1235229114", + ["text"] = "Consecrated Ground you create grants +#% maximum Chaos Resistance to you and Allies", + ["type"] = "explicit", + }, + }, + ["10688_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", + }, + }, + ["10719_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", + }, + }, + ["10719_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", + }, + }, + ["10720_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", + }, + }, + ["10721_ZealotryReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_168308685", + ["text"] = "Zealotry has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["10722_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", - }, - }, - ["1075_LocalAttributeRequirements"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_168308685", + ["text"] = "Zealotry has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["10725_ZeroChaosResistanceDelve"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2439129490", + ["text"] = "Chaos Resistance is Zero", + ["type"] = "explicit", + }, + }, + ["10759_MinionLargerAggroRadius"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_128585622", + ["text"] = "Minions are Aggressive", + ["type"] = "explicit", + }, + }, + ["10766_Acrobatics"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_383557755", + ["text"] = "Acrobatics", + ["type"] = "explicit", + }, + }, + ["10767_PerfectAgony"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3884934810", + ["text"] = "Perfect Agony", + ["type"] = "explicit", + }, + }, + ["10768_AncestralBond"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2648570028", + ["text"] = "Ancestral Bond", + ["type"] = "explicit", + }, + }, + ["10769_AvatarOfFire"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_346029096", + ["text"] = "Avatar of Fire", + ["type"] = "explicit", + }, + }, + ["10771_BloodMagic"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2801937280", + ["text"] = "Blood Magic", + ["type"] = "explicit", + }, + }, + ["10772_CallToArms"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3292262540", + ["text"] = "Call to Arms", + ["type"] = "explicit", + }, + }, + ["10776_CrimsonDance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_300702212", + ["text"] = "Crimson Dance", + ["type"] = "explicit", + }, + }, + ["10778_DivineShield"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2048995720", + ["text"] = "Divine Shield", + ["type"] = "explicit", + }, + }, + ["10779_EldritchBattery"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2262736444", + ["text"] = "Eldritch Battery", + ["type"] = "explicit", + }, + }, + ["10780_ElementalEquilibrium"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1263158408", + ["text"] = "Elemental Equilibrium", + ["type"] = "explicit", + }, + }, + ["10781_ElementalOverload"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3574189159", + ["text"] = "Elemental Overload", + ["type"] = "explicit", + }, + }, + ["10785_GhostDance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3590128077", + ["text"] = "Ghost Dance", + ["type"] = "explicit", + }, + }, + ["10786_KeystoneGhostReaver"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4272248216", + ["text"] = "Ghost Reaver", + ["type"] = "explicit", + }, + }, + ["10789_HexMaster"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3849554033", + ["text"] = "Hex Master", + ["type"] = "explicit", + }, + }, + ["10791_Impaler"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1441799693", + ["text"] = "The Impaler", + ["type"] = "explicit", + }, + }, + ["10793_LetheShade"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1678358883", + ["text"] = "Lethe Shade", + ["type"] = "explicit", + }, + }, + ["10794_Magebane"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4180925106", + ["text"] = "Magebane", + ["type"] = "explicit", + }, + }, + ["10797_MinionInstability"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_433293234", + ["text"] = "Minion Instability", + ["type"] = "explicit", + }, + }, + ["10798_TheAgnostic"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_462691314", + ["text"] = "The Agnostic", + ["type"] = "explicit", + }, + }, + ["10799_PainAttunement"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_98977150", + ["text"] = "Pain Attunement", + ["type"] = "explicit", + }, + }, + ["10800_PointBlank"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2896346114", + ["text"] = "Point Blank", + ["type"] = "explicit", + }, + }, + ["10807_Runebinder"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4080245957", + ["text"] = "Runebinder", + ["type"] = "explicit", + }, + }, + ["1080_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", + }, + }, + ["10813_Solipsism"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_112130960", + ["text"] = "Solipsism", + ["type"] = "explicit", + }, + }, + ["10815_IronGrip"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_573347393", + ["text"] = "Iron Grip", + ["type"] = "explicit", + }, + }, + ["10816_SupremeEgo"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1421267186", + ["text"] = "Supreme Ego", + ["type"] = "explicit", + }, + }, + ["10820_VaalPact"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2257118425", + ["text"] = "Vaal Pact", + ["type"] = "explicit", + }, + }, + ["10821_VersatileCombatant"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_593845252", + ["text"] = "Versatile Combatant", + ["type"] = "explicit", + }, + }, + ["10825_MapMonsterPacksVaalMapWorlds"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_728267040", + ["text"] = "Found Items have #% chance to drop Corrupted in Area", + ["type"] = "explicit", + }, + }, + ["10827_ResoluteTechnique"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3943945975", + ["text"] = "Resolute Technique", + ["type"] = "explicit", + }, + }, + ["10828_IronWill"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4092697134", + ["text"] = "Iron Will", + ["type"] = "explicit", + }, + }, ["1138_BlockPercent"] = { + ["Chest"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "explicit", + }, + }, + ["1143_BlockPercent"] = { + ["Boots"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["Chest"] = { + ["max"] = 9, + ["min"] = 3, + }, + ["Gloves"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Helmet"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "explicit", + }, + }, + ["1143_BlockPercentMaven"] = { + ["Gloves"] = { + ["max"] = 5, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "explicit", + }, + }, + ["1143_ChanceToSuppressSpells"] = { ["Boots"] = { - ["max"] = 4, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["Chest"] = { - ["max"] = 9, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Gloves"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 6, + ["min"] = 3, + }, ["Helmet"] = { - ["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", - }, - }, - ["1139_BlockShieldForJewel"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["Shield"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", + ["type"] = "explicit", + }, + }, + ["1144_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", - }, - }, - ["1140_ShieldSpellBlockForJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4061558269", + ["text"] = "+#% Chance to Block Attack Damage while holding a Shield", + ["type"] = "explicit", + }, + }, + ["1145_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", - }, - }, - ["1141_SpellDamageSuppressed"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_938645499", + ["text"] = "+#% Chance to Block Spell Damage while holding a Shield", + ["type"] = "explicit", + }, + }, + ["1146_SpellDamageSuppressed"] = { ["Amulet"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4116705863", - ["text"] = "Prevent +#% of Suppressed Spell Damage", - ["type"] = "explicit", - }, - }, - ["1142_ChanceToDodgeAndSpellDodge"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4116705863", + ["text"] = "Prevent +#% of Suppressed Spell Damage", + ["type"] = "explicit", + }, + }, + ["1147_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", - }, - }, - ["1142_ChanceToSuppressSpellsMavenOld"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", + ["type"] = "explicit", + }, + }, + ["1147_ChanceToSuppressSpellsMavenOld"] = { ["Boots"] = { - ["max"] = 18, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3680664274", - ["text"] = "+#% chance to Suppress Spell Damage", - ["type"] = "explicit", - }, - }, - ["1142_ChanceToSuppressSpellsOld"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3680664274", - ["text"] = "+#% chance to Suppress Spell Damage", - ["type"] = "explicit", - }, - }, - ["1143_ChanceToSuppressSpells"] = { + ["max"] = 18, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", + ["type"] = "explicit", + }, + }, + ["1147_ChanceToSuppressSpellsOld"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", + ["type"] = "explicit", + }, + }, + ["1148_ChanceToSuppressSpells"] = { ["Boots"] = { - ["max"] = 22, - ["min"] = 3, - }, + ["max"] = 22, + ["min"] = 5, + }, ["Chest"] = { - ["max"] = 22, - ["min"] = 5, - }, + ["max"] = 22, + ["min"] = 5, + }, ["Gloves"] = { - ["max"] = 22, - ["min"] = 3, - }, + ["max"] = 22, + ["min"] = 5, + }, ["Helmet"] = { - ["max"] = 22, - ["min"] = 3, - }, - ["Shield"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3680664274", - ["text"] = "+#% chance to Suppress Spell Damage", - ["type"] = "explicit", - }, - }, - ["1144_DualWieldingSpellBlockForJewel"] = { + ["max"] = 22, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", + ["type"] = "explicit", + }, + }, + ["1149_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", - }, - }, - ["1145_SpellBlockPercentageOnLowLife"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_138741818", + ["text"] = "+#% Chance to Block Spell Damage while Dual Wielding", + ["type"] = "explicit", + }, + }, + ["1150_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", - }, - }, - ["1150_StaffSpellBlockForJewel"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4070519133", + ["text"] = "#% Chance to Block Spell Damage while on Low Life", + ["type"] = "explicit", + }, + }, + ["1155_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", - }, - }, - ["1151_BlockingBlocksSpellsUber"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1778298516", - ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", - ["type"] = "explicit", - }, - }, - ["1151_CriticalStrikeMultiplierIfBlockedRecentlyUber"] = { - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2120297997", + ["text"] = "+#% Chance to Block Spell Damage while wielding a Staff", + ["type"] = "explicit", + }, + }, + ["1156_BlockingBlocksSpellsUber"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1778298516", + ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", + ["type"] = "explicit", + }, + }, + ["1156_CriticalStrikeMultiplierIfBlockedRecentlyUber"] = { + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1778298516", - ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", - ["type"] = "explicit", - }, - }, - ["1151_PowerChargeOnBlockUber"] = { - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1778298516", + ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", + ["type"] = "explicit", + }, + }, + ["1156_PowerChargeOnBlockUber"] = { + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1778298516", - ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", - ["type"] = "explicit", - }, - }, - ["1151_SpellBlockAndBlockUber"] = { - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1778298516", + ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", + ["type"] = "explicit", + }, + }, + ["1156_SpellBlockAndBlockUber"] = { + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1778298516", - ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", - ["type"] = "explicit", - }, - }, - ["1154_BlockStaffForJewel"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1778298516", + ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", + ["type"] = "explicit", + }, + }, + ["1159_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", - }, - }, - ["1155_BlockingBlocksSpells"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", - ["type"] = "explicit", - }, - }, - ["1155_BlockingBlocksSpellsUber"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", - ["type"] = "explicit", - }, - }, - ["1160_SpellBlockAndBlockUber"] = { - ["2HWeapon"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["Staff"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1778298516", + ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", + ["type"] = "explicit", + }, + }, + ["1160_BlockingBlocksSpells"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "explicit", + }, + }, + ["1160_BlockingBlocksSpellsUber"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "explicit", + }, + }, ["1160_SpellBlockPercentage"] = { + ["Chest"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "explicit", + }, + }, + ["1165_SpellBlockAndBlockUber"] = { + ["2HWeapon"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["Staff"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "explicit", + }, + }, + ["1165_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", - }, - }, - ["1160_SpellBlockPercentageMaven"] = { + ["max"] = 15, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "explicit", + }, + }, + ["1165_SpellBlockPercentageMaven"] = { ["Helmet"] = { - ["max"] = 6, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", - ["type"] = "explicit", - }, - }, - ["1162_BlockDualWieldingForJewel"] = { + ["max"] = 6, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "explicit", + }, + }, + ["1167_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", - }, - }, - ["1162_BlockWhileDualWielding"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2166444903", + ["text"] = "+#% Chance to Block Attack Damage while Dual Wielding", + ["type"] = "explicit", + }, + }, + ["1167_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"] = 13, + ["min"] = 6, + }, ["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"] = 13, + ["min"] = 6, + }, ["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", - }, - }, - ["1176_AllAttributesForJewel"] = { - ["AbyssJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1379411836", - ["text"] = "+# to all Attributes", - ["type"] = "explicit", - }, - }, + ["max"] = 13, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1379411836", + ["text"] = "+# to all Attributes", + ["type"] = "explicit", + }, + }, ["1177_Strength"] = { ["1HAxe"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["1HMace"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["1HSword"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["2HAxe"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["2HSword"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Amulet"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Belt"] = { - ["max"] = 60, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Boots"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Chest"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Dagger"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Gloves"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Helmet"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Quiver"] = { - ["max"] = 58, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Ring"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Shield"] = { - ["max"] = 58, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["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"] = 25, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4080418644", - ["text"] = "+# to Strength", - ["type"] = "explicit", - }, - }, - ["1177_StrengthAndLocalItemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4080418644", - ["text"] = "+# to Strength", - ["type"] = "explicit", - }, - }, - ["1177_StrengthForJewel"] = { - ["AbyssJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4080418644", - ["text"] = "+# to Strength", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4080418644", + ["text"] = "+# to Strength", + ["type"] = "explicit", + }, + }, ["1178_Dexterity"] = { ["1HAxe"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["1HMace"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["1HSword"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["2HAxe"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["2HSword"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Amulet"] = { - ["max"] = 58, - ["min"] = 8, - }, - ["Belt"] = { - ["max"] = 58, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Boots"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Chest"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Dagger"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Gloves"] = { - ["max"] = 60, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Helmet"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Quiver"] = { - ["max"] = 60, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Ring"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Shield"] = { - ["max"] = 58, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 15, + }, ["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"] = 25, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3261801346", - ["text"] = "+# to Dexterity", - ["type"] = "explicit", - }, - }, - ["1178_DexterityAndLocalItemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3261801346", - ["text"] = "+# to Dexterity", - ["type"] = "explicit", - }, - }, - ["1178_DexterityForJewel"] = { - ["AbyssJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3261801346", - ["text"] = "+# to Dexterity", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 10, + }, + ["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"] = 30, + ["min"] = 15, + }, ["1HSword"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["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"] = 30, + ["min"] = 15, + }, ["Amulet"] = { - ["max"] = 58, - ["min"] = 8, - }, - ["Belt"] = { - ["max"] = 58, - ["min"] = 28, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Boots"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Chest"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Dagger"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Gloves"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Helmet"] = { - ["max"] = 60, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Quiver"] = { - ["max"] = 58, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Ring"] = { - ["max"] = 58, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Shield"] = { - ["max"] = 58, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 55, - ["min"] = 8, - }, + ["max"] = 30, + ["min"] = 15, + }, ["Wand"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_328541901", - ["text"] = "+# to Intelligence", - ["type"] = "explicit", - }, - }, + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_328541901", + ["text"] = "+# to Intelligence", + ["type"] = "explicit", + }, + }, ["1179_IntelligenceAndAvoidShock"] = { ["Chest"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_328541901", - ["text"] = "+# to Intelligence", - ["type"] = "explicit", - }, - }, - ["1179_IntelligenceAndLocalItemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_328541901", - ["text"] = "+# to Intelligence", - ["type"] = "explicit", - }, - }, - ["1179_IntelligenceForJewel"] = { - ["AbyssJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_328541901", - ["text"] = "+# to Intelligence", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_328541901", + ["text"] = "+# to Intelligence", + ["type"] = "explicit", + }, + }, ["1180_LocalAccuracyRatingStrengthDexterity"] = { ["1HAxe"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["1HMace"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["1HSword"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["2HAxe"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["2HSword"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["Dagger"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["Wand"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_538848803", - ["text"] = "+# to Strength and Dexterity", - ["type"] = "explicit", - }, - }, + ["max"] = 24, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_538848803", + ["text"] = "+# to Strength and Dexterity", + ["type"] = "explicit", + }, + }, ["1180_StrengthAndDexterity"] = { ["Amulet"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Belt"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Boots"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Chest"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Gloves"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Helmet"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Quiver"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Ring"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_538848803", - ["text"] = "+# to Strength and Dexterity", - ["type"] = "explicit", - }, - }, - ["1180_StrengthDexterityForJewel"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_538848803", + ["text"] = "+# to Strength and Dexterity", + ["type"] = "explicit", + }, + }, + ["1181_AllAttributes"] = { + ["Amulet"] = { + ["max"] = 35, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 16, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1379411836", + ["text"] = "+# to all Attributes", + ["type"] = "explicit", + }, + }, + ["1181_AllAttributesForJewel"] = { ["AbyssJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 8, + ["min"] = 6, + }, ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["max"] = 8, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_538848803", - ["text"] = "+# to Strength and Dexterity", - ["type"] = "explicit", - }, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1379411836", + ["text"] = "+# to all Attributes", + ["type"] = "explicit", + }, + }, ["1181_LocalCriticalStrikeChanceStrengthIntelligence"] = { ["1HAxe"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["1HMace"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["1HSword"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["2HAxe"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["2HSword"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["Dagger"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["Wand"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1535626285", - ["text"] = "+# to Strength and Intelligence", - ["type"] = "explicit", - }, - }, + ["max"] = 24, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1535626285", + ["text"] = "+# to Strength and Intelligence", + ["type"] = "explicit", + }, + }, ["1181_StrengthAndIntelligence"] = { ["Amulet"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Belt"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Boots"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Chest"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Gloves"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Helmet"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Quiver"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Ring"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Shield"] = { - ["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, - }, - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1535626285", - ["text"] = "+# to Strength and Intelligence", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1535626285", + ["text"] = "+# to Strength and Intelligence", + ["type"] = "explicit", + }, + }, ["1182_DexterityAndIntelligence"] = { ["Amulet"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Belt"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Boots"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Chest"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Gloves"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Helmet"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Quiver"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Ring"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 10, + }, ["Shield"] = { - ["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, - }, - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2300185227", - ["text"] = "+# to Dexterity and Intelligence", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2300185227", + ["text"] = "+# to Dexterity and Intelligence", + ["type"] = "explicit", + }, + }, ["1182_LocalAttackSpeedDexterityIntelligence"] = { ["1HAxe"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["1HMace"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["1HSword"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["2HAxe"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["2HSword"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 19, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["Dagger"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 28, - ["min"] = 15, - }, + ["max"] = 24, + ["min"] = 15, + }, ["Wand"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2300185227", - ["text"] = "+# to Dexterity and Intelligence", - ["type"] = "explicit", - }, - }, - ["1183_PercentageAllAttributes"] = { + ["max"] = 19, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2300185227", + ["text"] = "+# to Dexterity and Intelligence", + ["type"] = "explicit", + }, + }, + ["1182_Strength"] = { + ["1HAxe"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["1HMace"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["1HSword"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["1HWeapon"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["2HAxe"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["2HMace"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["2HSword"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["2HWeapon"] = { + ["max"] = 55, + ["min"] = 8, + }, ["Amulet"] = { - ["max"] = 9, - ["min"] = 6, - }, + ["max"] = 58, + ["min"] = 8, + }, ["Belt"] = { - ["max"] = 12, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 6, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3143208761", - ["text"] = "#% increased Attributes", - ["type"] = "explicit", - }, - }, - ["1184_PercentageStrength"] = { - ["Amulet"] = { - ["max"] = 12, - ["min"] = 5, - }, + ["max"] = 60, + ["min"] = 8, + }, ["Boots"] = { - ["max"] = 12, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 12, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_734614379", - ["text"] = "#% increased Strength", - ["type"] = "explicit", - }, - }, - ["1184_PercentageStrengthMaven"] = { - ["Amulet"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["Chest"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_734614379", - ["text"] = "#% increased Strength", - ["type"] = "explicit", - }, - }, - ["1185_PercentageDexterity"] = { - ["Amulet"] = { - ["max"] = 12, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 12, - ["min"] = 5, - }, - ["Gloves"] = { - ["max"] = 12, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4139681126", - ["text"] = "#% increased Dexterity", - ["type"] = "explicit", - }, - }, - ["1185_PercentageDexterityMaven"] = { - ["Amulet"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["Chest"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4139681126", - ["text"] = "#% increased Dexterity", - ["type"] = "explicit", - }, - }, - ["1186_PercentageIntelligence"] = { - ["Amulet"] = { - ["max"] = 12, - ["min"] = 5, - }, + ["max"] = 58, + ["min"] = 8, + }, ["Chest"] = { - ["max"] = 12, - ["min"] = 5, - }, + ["max"] = 58, + ["min"] = 8, + }, + ["Gloves"] = { + ["max"] = 58, + ["min"] = 8, + }, ["Helmet"] = { - ["max"] = 12, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_656461285", - ["text"] = "#% increased Intelligence", - ["type"] = "explicit", - }, - }, - ["1186_PercentageIntelligenceMaven"] = { - ["Amulet"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["Chest"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_656461285", - ["text"] = "#% increased Intelligence", - ["type"] = "explicit", - }, - }, - ["1191_AllDamage"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 11, - }, + ["max"] = 58, + ["min"] = 8, + }, + ["Quiver"] = { + ["max"] = 58, + ["min"] = 18, + }, ["Ring"] = { - ["max"] = 17, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2154246560", - ["text"] = "#% increased Damage", - ["type"] = "explicit", - }, - }, - ["1191_DamageForJewel"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["BaseJewel"] = { - ["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", - }, - }, - ["1193_TotemDamageForJewel"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["BaseJewel"] = { - ["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", - }, - }, - ["1194_TrapDamageCooldownSupported"] = { - ["Gloves"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2941585404", - ["text"] = "#% increased Trap Damage", - ["type"] = "explicit", - }, - }, - ["1194_TrapDamageForJewel"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 58, + ["min"] = 18, + }, + ["Staff"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4080418644", + ["text"] = "+# to Strength", + ["type"] = "explicit", + }, + }, + ["1182_StrengthAndAvoidIgnite"] = { + ["Chest"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["Shield"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4080418644", + ["text"] = "+# to Strength", + ["type"] = "explicit", + }, + }, + ["1182_StrengthAndLocalItemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4080418644", + ["text"] = "+# to Strength", + ["type"] = "explicit", + }, + }, + ["1182_StrengthForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 16, + ["min"] = 12, + }, ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, + ["max"] = 16, + ["min"] = 12, + }, ["BaseJewel"] = { - ["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", - }, - }, - ["1194_TrapDamageOnWeapon"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4080418644", + ["text"] = "+# to Strength", + ["type"] = "explicit", + }, + }, + ["1183_Dexterity"] = { ["1HAxe"] = { - ["max"] = 54, - ["min"] = 35, - }, - ["1HMace"] = { - ["max"] = 54, - ["min"] = 35, - }, + ["max"] = 55, + ["min"] = 8, + }, ["1HSword"] = { - ["max"] = 54, - ["min"] = 35, - }, + ["max"] = 55, + ["min"] = 8, + }, ["1HWeapon"] = { - ["max"] = 54, - ["min"] = 35, - }, + ["max"] = 55, + ["min"] = 8, + }, ["2HAxe"] = { - ["max"] = 81, - ["min"] = 52, - }, - ["2HMace"] = { - ["max"] = 81, - ["min"] = 52, - }, + ["max"] = 55, + ["min"] = 8, + }, ["2HSword"] = { - ["max"] = 81, - ["min"] = 52, - }, + ["max"] = 55, + ["min"] = 8, + }, ["2HWeapon"] = { - ["max"] = 81, - ["min"] = 52, - }, + ["max"] = 55, + ["min"] = 8, + }, + ["Amulet"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Belt"] = { + ["max"] = 58, + ["min"] = 13, + }, + ["Boots"] = { + ["max"] = 58, + ["min"] = 8, + }, ["Bow"] = { - ["max"] = 81, - ["min"] = 52, - }, + ["max"] = 55, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Claw"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["Dagger"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["Gloves"] = { + ["max"] = 60, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Quiver"] = { + ["max"] = 60, + ["min"] = 8, + }, + ["Ring"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 58, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3261801346", + ["text"] = "+# to Dexterity", + ["type"] = "explicit", + }, + }, + ["1183_DexterityAndAvoidFreeze"] = { + ["Chest"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["Shield"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3261801346", + ["text"] = "+# to Dexterity", + ["type"] = "explicit", + }, + }, + ["1183_DexterityAndLocalItemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3261801346", + ["text"] = "+# to Dexterity", + ["type"] = "explicit", + }, + }, + ["1183_DexterityForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3261801346", + ["text"] = "+# to Dexterity", + ["type"] = "explicit", + }, + }, + ["1183_PercentageAllAttributes"] = { + ["Chest"] = { + ["max"] = 6, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3143208761", + ["text"] = "#% increased Attributes", + ["type"] = "explicit", + }, + }, + ["1184_Intelligence"] = { + ["1HMace"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["1HWeapon"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["2HWeapon"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["Amulet"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Belt"] = { + ["max"] = 58, + ["min"] = 28, + }, + ["Boots"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 58, + ["min"] = 8, + }, ["Claw"] = { - ["max"] = 54, - ["min"] = 35, - }, + ["max"] = 55, + ["min"] = 8, + }, ["Dagger"] = { - ["max"] = 54, - ["min"] = 35, - }, + ["max"] = 55, + ["min"] = 8, + }, + ["Gloves"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 60, + ["min"] = 8, + }, + ["Quiver"] = { + ["max"] = 58, + ["min"] = 28, + }, + ["Ring"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 58, + ["min"] = 28, + }, ["Staff"] = { - ["max"] = 81, - ["min"] = 52, - }, + ["max"] = 55, + ["min"] = 8, + }, ["Wand"] = { - ["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", - }, - }, - ["1196_MineDamageForJewel"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_328541901", + ["text"] = "+# to Intelligence", + ["type"] = "explicit", + }, + }, + ["1184_IntelligenceAndAvoidShock"] = { + ["Chest"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["Shield"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_328541901", + ["text"] = "+# to Intelligence", + ["type"] = "explicit", + }, + }, + ["1184_IntelligenceAndLocalItemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_328541901", + ["text"] = "+# to Intelligence", + ["type"] = "explicit", + }, + }, + ["1184_IntelligenceForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 16, + ["min"] = 12, + }, ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, + ["max"] = 16, + ["min"] = 12, + }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2137912951", - ["text"] = "#% increased Mine Damage", - ["type"] = "explicit", - }, - }, - ["1196_MineDamageOnWeapon"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_328541901", + ["text"] = "+# to Intelligence", + ["type"] = "explicit", + }, + }, + ["1185_LocalAccuracyRatingStrengthDexterity"] = { ["1HAxe"] = { - ["max"] = 54, - ["min"] = 35, - }, + ["max"] = 28, + ["min"] = 25, + }, ["1HMace"] = { - ["max"] = 54, - ["min"] = 35, - }, + ["max"] = 28, + ["min"] = 25, + }, ["1HSword"] = { - ["max"] = 54, - ["min"] = 35, - }, + ["max"] = 28, + ["min"] = 25, + }, ["1HWeapon"] = { - ["max"] = 54, - ["min"] = 35, - }, + ["max"] = 28, + ["min"] = 25, + }, ["2HAxe"] = { - ["max"] = 81, - ["min"] = 52, - }, + ["max"] = 28, + ["min"] = 25, + }, ["2HMace"] = { - ["max"] = 81, - ["min"] = 52, - }, + ["max"] = 28, + ["min"] = 25, + }, ["2HSword"] = { - ["max"] = 81, - ["min"] = 52, - }, + ["max"] = 28, + ["min"] = 25, + }, ["2HWeapon"] = { - ["max"] = 81, - ["min"] = 52, - }, + ["max"] = 28, + ["min"] = 25, + }, ["Bow"] = { - ["max"] = 81, - ["min"] = 52, - }, + ["max"] = 28, + ["min"] = 25, + }, ["Claw"] = { - ["max"] = 54, - ["min"] = 35, - }, + ["max"] = 28, + ["min"] = 25, + }, ["Dagger"] = { - ["max"] = 54, - ["min"] = 35, - }, + ["max"] = 28, + ["min"] = 25, + }, ["Staff"] = { - ["max"] = 81, - ["min"] = 52, - }, + ["max"] = 28, + ["min"] = 25, + }, ["Wand"] = { - ["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", - }, - }, - ["1196_MineDamageTrapSupported"] = { + ["max"] = 28, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_538848803", + ["text"] = "+# to Strength and Dexterity", + ["type"] = "explicit", + }, + }, + ["1185_StrengthAndDexterity"] = { + ["Amulet"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["Belt"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["Boots"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["Chest"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["Gloves"] = { + ["max"] = 35, + ["min"] = 31, + }, ["Helmet"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2137912951", - ["text"] = "#% increased Mine Damage", - ["type"] = "explicit", - }, - }, - ["1198_AttackDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2843214518", - ["text"] = "#% increased Attack Damage", - ["type"] = "explicit", - }, - }, - ["1206_DamageWhileHoldingAShieldForJewel"] = { - ["AnyJewel"] = { - ["max"] = 14, - ["min"] = 12, - }, - ["BaseJewel"] = { - ["max"] = 14, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1393393937", - ["text"] = "#% increased Attack Damage while holding a Shield", - ["type"] = "explicit", - }, - }, - ["1210_DamageOverTimeForJewel"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["Quiver"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["Ring"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["Shield"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_538848803", + ["text"] = "+# to Strength and Dexterity", + ["type"] = "explicit", + }, + }, + ["1185_StrengthDexterityForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 8, + }, ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_967627487", - ["text"] = "#% increased Damage over Time", - ["type"] = "explicit", - }, - }, - ["1210_DegenerationDamage"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_538848803", + ["text"] = "+# to Strength and Dexterity", + ["type"] = "explicit", + }, + }, + ["1186_LocalCriticalStrikeChanceStrengthIntelligence"] = { ["1HAxe"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 28, + ["min"] = 25, + }, ["1HMace"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 28, + ["min"] = 25, + }, ["1HSword"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 28, + ["min"] = 25, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 28, + ["min"] = 25, + }, ["2HAxe"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 28, + ["min"] = 25, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 28, + ["min"] = 25, + }, ["2HSword"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 28, + ["min"] = 25, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 28, + ["min"] = 25, + }, ["Bow"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 28, + ["min"] = 25, + }, ["Claw"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 28, + ["min"] = 25, + }, ["Dagger"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["Gloves"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 28, + ["min"] = 25, + }, ["Staff"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["max"] = 28, + ["min"] = 25, + }, ["Wand"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_967627487", - ["text"] = "#% increased Damage over Time", - ["type"] = "explicit", - }, - }, - ["1211_PhysicalDamageOverTimePrefix"] = { + ["max"] = 28, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1535626285", + ["text"] = "+# to Strength and Intelligence", + ["type"] = "explicit", + }, + }, + ["1186_StrengthAndIntelligence"] = { + ["Amulet"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["Belt"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["Boots"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["Chest"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["Gloves"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["Helmet"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["Quiver"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["Ring"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["Shield"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1535626285", + ["text"] = "+# to Strength and Intelligence", + ["type"] = "explicit", + }, + }, + ["1186_StrengthIntelligenceForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1535626285", + ["text"] = "+# to Strength and Intelligence", + ["type"] = "explicit", + }, + }, + ["1187_DexterityAndIntelligence"] = { + ["Amulet"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["Belt"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["Boots"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["Chest"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["Gloves"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["Helmet"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["Quiver"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["Ring"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["Shield"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2300185227", + ["text"] = "+# to Dexterity and Intelligence", + ["type"] = "explicit", + }, + }, + ["1187_DexterityIntelligenceForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2300185227", + ["text"] = "+# to Dexterity and Intelligence", + ["type"] = "explicit", + }, + }, + ["1187_LocalAttackSpeedDexterityIntelligence"] = { ["1HAxe"] = { - ["max"] = 94, - ["min"] = 60, - }, + ["max"] = 28, + ["min"] = 25, + }, ["1HMace"] = { - ["max"] = 94, - ["min"] = 60, - }, + ["max"] = 28, + ["min"] = 25, + }, ["1HSword"] = { - ["max"] = 94, - ["min"] = 60, - }, + ["max"] = 28, + ["min"] = 25, + }, ["1HWeapon"] = { - ["max"] = 94, - ["min"] = 60, - }, + ["max"] = 28, + ["min"] = 25, + }, ["2HAxe"] = { - ["max"] = 134, - ["min"] = 60, - }, + ["max"] = 28, + ["min"] = 25, + }, ["2HMace"] = { - ["max"] = 134, - ["min"] = 60, - }, - ["2HSword"] = { - ["max"] = 134, - ["min"] = 60, - }, - ["2HWeapon"] = { - ["max"] = 134, - ["min"] = 60, - }, - ["Bow"] = { - ["max"] = 94, - ["min"] = 60, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1692565595", - ["text"] = "#% increased Physical Damage over Time", - ["type"] = "explicit", - }, - }, - ["1214_ChaosDamageOverTimePrefix"] = { - ["1HSword"] = { - ["max"] = 94, - ["min"] = 60, - }, - ["1HWeapon"] = { - ["max"] = 94, - ["min"] = 60, - }, + ["max"] = 28, + ["min"] = 25, + }, ["2HSword"] = { - ["max"] = 134, - ["min"] = 60, - }, + ["max"] = 28, + ["min"] = 25, + }, ["2HWeapon"] = { - ["max"] = 134, - ["min"] = 60, - }, + ["max"] = 28, + ["min"] = 25, + }, ["Bow"] = { - ["max"] = 94, - ["min"] = 60, - }, + ["max"] = 28, + ["min"] = 25, + }, ["Claw"] = { - ["max"] = 94, - ["min"] = 60, - }, + ["max"] = 28, + ["min"] = 25, + }, ["Dagger"] = { - ["max"] = 94, - ["min"] = 60, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_601272515", - ["text"] = "#% increased Chaos Damage over Time", - ["type"] = "explicit", - }, - }, - ["1223_ArcaneSurgeAndSpellDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["1223_CastOnCritAndSpellDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["1223_CastWhileChannelingAndSpellDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["1223_SpellDamage"] = { + ["max"] = 28, + ["min"] = 25, + }, + ["Staff"] = { + ["max"] = 28, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 28, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2300185227", + ["text"] = "+# to Dexterity and Intelligence", + ["type"] = "explicit", + }, + }, + ["1188_PercentageAllAttributes"] = { + ["Amulet"] = { + ["max"] = 9, + ["min"] = 6, + }, + ["Belt"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3143208761", + ["text"] = "#% increased Attributes", + ["type"] = "explicit", + }, + }, + ["1189_PercentageStrength"] = { ["Amulet"] = { - ["max"] = 26, - ["min"] = 3, - }, + ["max"] = 12, + ["min"] = 5, + }, + ["Boots"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 12, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "explicit", + }, + }, + ["1189_PercentageStrengthMaven"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["Chest"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "explicit", + }, + }, + ["1190_PercentageDexterity"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 12, + ["min"] = 5, + }, ["Gloves"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 12, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "explicit", + }, + }, + ["1190_PercentageDexterityMaven"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["Chest"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "explicit", + }, + }, + ["1191_AllDamage"] = { + ["Belt"] = { + ["max"] = 17, + ["min"] = 12, + }, ["Ring"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["1223_SpellDamageAndManaRegenerationRate"] = { + ["max"] = 17, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "explicit", + }, + }, + ["1191_PercentageIntelligence"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 12, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "explicit", + }, + }, + ["1191_PercentageIntelligenceMaven"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["Chest"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "explicit", + }, + }, + ["1194_TrapDamageOnWeapon"] = { ["1HAxe"] = { - ["max"] = 79, - ["min"] = 36, - }, + ["max"] = 54, + ["min"] = 35, + }, ["1HMace"] = { - ["max"] = 79, - ["min"] = 36, - }, + ["max"] = 54, + ["min"] = 35, + }, ["1HSword"] = { - ["max"] = 79, - ["min"] = 36, - }, + ["max"] = 54, + ["min"] = 35, + }, ["1HWeapon"] = { - ["max"] = 79, - ["min"] = 36, - }, + ["max"] = 54, + ["min"] = 35, + }, ["2HAxe"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 81, + ["min"] = 52, + }, ["2HMace"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 81, + ["min"] = 52, + }, ["2HSword"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 81, + ["min"] = 52, + }, ["2HWeapon"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 81, + ["min"] = 52, + }, ["Bow"] = { - ["max"] = 109, - ["min"] = 70, - }, + ["max"] = 81, + ["min"] = 52, + }, ["Claw"] = { - ["max"] = 79, - ["min"] = 36, - }, + ["max"] = 54, + ["min"] = 35, + }, ["Dagger"] = { - ["max"] = 79, - ["min"] = 36, - }, + ["max"] = 54, + ["min"] = 35, + }, ["Staff"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 81, + ["min"] = 52, + }, ["Wand"] = { - ["max"] = 79, - ["min"] = 36, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["1223_SpellDamageAndNonChaosDamageToAddAsChaosDamage"] = { + ["max"] = 54, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2941585404", + ["text"] = "#% increased Trap Damage", + ["type"] = "explicit", + }, + }, + ["1196_AllDamage"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "explicit", + }, + }, + ["1196_DamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "explicit", + }, + }, + ["1196_MineDamageOnWeapon"] = { ["1HAxe"] = { - ["max"] = 69, - ["min"] = 38, - }, + ["max"] = 54, + ["min"] = 35, + }, ["1HMace"] = { - ["max"] = 69, - ["min"] = 38, - }, + ["max"] = 54, + ["min"] = 35, + }, ["1HSword"] = { - ["max"] = 69, - ["min"] = 38, - }, + ["max"] = 54, + ["min"] = 35, + }, ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 38, - }, + ["max"] = 54, + ["min"] = 35, + }, ["2HAxe"] = { - ["max"] = 99, - ["min"] = 53, - }, + ["max"] = 81, + ["min"] = 52, + }, ["2HMace"] = { - ["max"] = 99, - ["min"] = 53, - }, + ["max"] = 81, + ["min"] = 52, + }, ["2HSword"] = { - ["max"] = 99, - ["min"] = 53, - }, + ["max"] = 81, + ["min"] = 52, + }, ["2HWeapon"] = { - ["max"] = 99, - ["min"] = 53, - }, + ["max"] = 81, + ["min"] = 52, + }, ["Bow"] = { - ["max"] = 99, - ["min"] = 60, - }, + ["max"] = 81, + ["min"] = 52, + }, ["Claw"] = { - ["max"] = 69, - ["min"] = 38, - }, + ["max"] = 54, + ["min"] = 35, + }, ["Dagger"] = { - ["max"] = 69, - ["min"] = 38, - }, + ["max"] = 54, + ["min"] = 35, + }, ["Staff"] = { - ["max"] = 99, - ["min"] = 53, - }, + ["max"] = 81, + ["min"] = 52, + }, ["Wand"] = { - ["max"] = 69, - ["min"] = 38, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["1223_SpellDamageForJewel"] = { + ["max"] = 54, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2137912951", + ["text"] = "#% increased Mine Damage", + ["type"] = "explicit", + }, + }, + ["1198_TotemDamageAttackSupported"] = { + ["Boots"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", + ["type"] = "explicit", + }, + }, + ["1198_TotemDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 10, - }, + ["max"] = 16, + ["min"] = 12, + }, ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["1223_TwoHandWeaponSpellDamage"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", + ["type"] = "explicit", + }, + }, + ["1198_TotemDamageSpellSupported"] = { + ["Boots"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", + ["type"] = "explicit", + }, + }, + ["1199_TrapDamageCooldownSupported"] = { + ["Gloves"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2941585404", + ["text"] = "#% increased Trap Damage", + ["type"] = "explicit", + }, + }, + ["1199_TrapDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2941585404", + ["text"] = "#% increased Trap Damage", + ["type"] = "explicit", + }, + }, + ["1199_TrapDamageMineSupported"] = { + ["Gloves"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2941585404", + ["text"] = "#% increased Trap Damage", + ["type"] = "explicit", + }, + }, + ["1199_TrapDamageOnWeapon"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2941585404", + ["text"] = "#% increased Trap Damage", + ["type"] = "explicit", + }, + }, + ["1199_TrapDamageSupported"] = { + ["Gloves"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2941585404", + ["text"] = "#% increased Trap Damage", + ["type"] = "explicit", + }, + }, + ["1201_MineDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2137912951", + ["text"] = "#% increased Mine Damage", + ["type"] = "explicit", + }, + }, + ["1201_MineDamageOnWeapon"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2137912951", + ["text"] = "#% increased Mine Damage", + ["type"] = "explicit", + }, + }, + ["1201_MineDamageSupported"] = { + ["Helmet"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2137912951", + ["text"] = "#% increased Mine Damage", + ["type"] = "explicit", + }, + }, + ["1201_MineDamageTrapSupported"] = { + ["Helmet"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2137912951", + ["text"] = "#% increased Mine Damage", + ["type"] = "explicit", + }, + }, + ["1203_AttackDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "explicit", + }, + }, + ["1210_DegenerationDamage"] = { + ["1HAxe"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["1HMace"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["1HSword"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["2HAxe"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["2HSword"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Claw"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Dagger"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_967627487", + ["text"] = "#% increased Damage over Time", + ["type"] = "explicit", + }, + }, + ["1211_DamageWhileHoldingAShieldForJewel"] = { + ["AnyJewel"] = { + ["max"] = 14, + ["min"] = 12, + }, + ["BaseJewel"] = { + ["max"] = 14, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1393393937", + ["text"] = "#% increased Attack Damage while holding a Shield", + ["type"] = "explicit", + }, + }, + ["1215_DamageOverTimeForJewel"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_967627487", + ["text"] = "#% increased Damage over Time", + ["type"] = "explicit", + }, + }, + ["1215_DegenerationDamage"] = { + ["Gloves"] = { + ["max"] = 38, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_967627487", + ["text"] = "#% increased Damage over Time", + ["type"] = "explicit", + }, + }, + ["1216_PhysicalDamageOverTimePrefix"] = { + ["1HAxe"] = { + ["max"] = 94, + ["min"] = 60, + }, + ["1HMace"] = { + ["max"] = 94, + ["min"] = 60, + }, + ["1HSword"] = { + ["max"] = 94, + ["min"] = 60, + }, + ["1HWeapon"] = { + ["max"] = 94, + ["min"] = 60, + }, ["2HAxe"] = { - ["max"] = 144, - ["min"] = 15, - }, + ["max"] = 134, + ["min"] = 60, + }, ["2HMace"] = { - ["max"] = 144, - ["min"] = 15, - }, + ["max"] = 134, + ["min"] = 60, + }, + ["2HSword"] = { + ["max"] = 134, + ["min"] = 60, + }, + ["2HWeapon"] = { + ["max"] = 134, + ["min"] = 60, + }, + ["Bow"] = { + ["max"] = 94, + ["min"] = 60, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1692565595", + ["text"] = "#% increased Physical Damage over Time", + ["type"] = "explicit", + }, + }, + ["1219_ChaosDamageOverTimePrefix"] = { + ["1HSword"] = { + ["max"] = 94, + ["min"] = 60, + }, + ["1HWeapon"] = { + ["max"] = 94, + ["min"] = 60, + }, ["2HSword"] = { - ["max"] = 144, - ["min"] = 15, - }, + ["max"] = 134, + ["min"] = 60, + }, ["2HWeapon"] = { - ["max"] = 164, - ["min"] = 15, - }, + ["max"] = 134, + ["min"] = 60, + }, ["Bow"] = { - ["max"] = 144, - ["min"] = 15, - }, + ["max"] = 94, + ["min"] = 60, + }, + ["Claw"] = { + ["max"] = 94, + ["min"] = 60, + }, + ["Dagger"] = { + ["max"] = 94, + ["min"] = 60, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_601272515", + ["text"] = "#% increased Chaos Damage over Time", + ["type"] = "explicit", + }, + }, + ["1223_SpellDamageAndManaRegenerationRate"] = { + ["1HAxe"] = { + ["max"] = 60, + ["min"] = 36, + }, + ["1HMace"] = { + ["max"] = 60, + ["min"] = 36, + }, + ["1HSword"] = { + ["max"] = 60, + ["min"] = 36, + }, + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 36, + }, + ["2HAxe"] = { + ["max"] = 80, + ["min"] = 60, + }, + ["2HMace"] = { + ["max"] = 80, + ["min"] = 60, + }, + ["2HSword"] = { + ["max"] = 80, + ["min"] = 60, + }, + ["2HWeapon"] = { + ["max"] = 80, + ["min"] = 60, + }, + ["Claw"] = { + ["max"] = 60, + ["min"] = 36, + }, + ["Dagger"] = { + ["max"] = 60, + ["min"] = 36, + }, + ["Staff"] = { + ["max"] = 80, + ["min"] = 60, + }, + ["Wand"] = { + ["max"] = 60, + ["min"] = 36, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["1223_SpellDamageAndNonChaosDamageToAddAsChaosDamage"] = { + ["1HAxe"] = { + ["max"] = 50, + ["min"] = 38, + }, + ["1HMace"] = { + ["max"] = 50, + ["min"] = 38, + }, + ["1HSword"] = { + ["max"] = 50, + ["min"] = 38, + }, + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 38, + }, + ["2HAxe"] = { + ["max"] = 75, + ["min"] = 53, + }, + ["2HMace"] = { + ["max"] = 75, + ["min"] = 53, + }, + ["2HSword"] = { + ["max"] = 75, + ["min"] = 53, + }, + ["2HWeapon"] = { + ["max"] = 75, + ["min"] = 53, + }, + ["Claw"] = { + ["max"] = 50, + ["min"] = 38, + }, + ["Dagger"] = { + ["max"] = 50, + ["min"] = 38, + }, ["Staff"] = { - ["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"] = 75, + ["min"] = 53, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 38, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["1223_TwoHandWeaponSpellDamage"] = { + ["2HAxe"] = { + ["max"] = 99, + ["min"] = 37, + }, + ["2HMace"] = { + ["max"] = 99, + ["min"] = 37, + }, + ["2HSword"] = { + ["max"] = 99, + ["min"] = 37, + }, + ["2HWeapon"] = { + ["max"] = 99, + ["min"] = 37, + }, ["Staff"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 99, + ["min"] = 37, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, ["1223_WeaponSpellDamage"] = { ["1HAxe"] = { - ["max"] = 94, - ["min"] = 10, - }, + ["max"] = 66, + ["min"] = 25, + }, + ["1HMace"] = { + ["max"] = 66, + ["min"] = 25, + }, + ["1HSword"] = { + ["max"] = 66, + ["min"] = 25, + }, + ["1HWeapon"] = { + ["max"] = 66, + ["min"] = 25, + }, + ["Claw"] = { + ["max"] = 66, + ["min"] = 25, + }, + ["Dagger"] = { + ["max"] = 66, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 66, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["1228_ArcaneSurgeAndSpellDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["1228_CastOnCritAndSpellDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["1228_CastWhileChannelingAndSpellDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["1228_SpellDamage"] = { + ["Amulet"] = { + ["max"] = 26, + ["min"] = 3, + }, + ["Gloves"] = { + ["max"] = 38, + ["min"] = 18, + }, + ["Ring"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["1228_SpellDamageAndManaRegenerationRate"] = { + ["1HAxe"] = { + ["max"] = 79, + ["min"] = 70, + }, + ["1HMace"] = { + ["max"] = 79, + ["min"] = 70, + }, + ["1HSword"] = { + ["max"] = 79, + ["min"] = 70, + }, + ["1HWeapon"] = { + ["max"] = 79, + ["min"] = 70, + }, + ["2HAxe"] = { + ["max"] = 109, + ["min"] = 70, + }, + ["2HMace"] = { + ["max"] = 109, + ["min"] = 70, + }, + ["2HSword"] = { + ["max"] = 109, + ["min"] = 70, + }, + ["2HWeapon"] = { + ["max"] = 109, + ["min"] = 70, + }, + ["Bow"] = { + ["max"] = 109, + ["min"] = 70, + }, + ["Claw"] = { + ["max"] = 79, + ["min"] = 70, + }, + ["Dagger"] = { + ["max"] = 79, + ["min"] = 70, + }, + ["Staff"] = { + ["max"] = 109, + ["min"] = 70, + }, + ["Wand"] = { + ["max"] = 79, + ["min"] = 70, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["1228_SpellDamageAndNonChaosDamageToAddAsChaosDamage"] = { + ["1HAxe"] = { + ["max"] = 69, + ["min"] = 60, + }, + ["1HMace"] = { + ["max"] = 69, + ["min"] = 60, + }, + ["1HSword"] = { + ["max"] = 69, + ["min"] = 60, + }, + ["1HWeapon"] = { + ["max"] = 69, + ["min"] = 60, + }, + ["2HAxe"] = { + ["max"] = 99, + ["min"] = 60, + }, + ["2HMace"] = { + ["max"] = 99, + ["min"] = 60, + }, + ["2HSword"] = { + ["max"] = 99, + ["min"] = 60, + }, + ["2HWeapon"] = { + ["max"] = 99, + ["min"] = 60, + }, + ["Bow"] = { + ["max"] = 99, + ["min"] = 60, + }, + ["Claw"] = { + ["max"] = 69, + ["min"] = 60, + }, + ["Dagger"] = { + ["max"] = 69, + ["min"] = 60, + }, + ["Staff"] = { + ["max"] = 99, + ["min"] = 60, + }, + ["Wand"] = { + ["max"] = 69, + ["min"] = 60, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["1228_SpellDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["1228_TwoHandWeaponSpellDamage"] = { + ["2HAxe"] = { + ["max"] = 144, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 144, + ["min"] = 15, + }, + ["2HSword"] = { + ["max"] = 144, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 164, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 144, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 164, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["1228_TwoHandWeaponSpellDamageAndMana"] = { + ["2HWeapon"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["Staff"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["1228_WeaponSpellDamage"] = { + ["1HAxe"] = { + ["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, + }, + ["Shield"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["1228_WeaponSpellDamageAddedAsChaos"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["1228_WeaponSpellDamageAndMana"] = { + ["1HMace"] = { + ["max"] = 39, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 39, + ["min"] = 5, + }, + ["Dagger"] = { + ["max"] = 39, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 39, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["1228_WeaponSpellDamageArcaneSurge"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["1228_WeaponSpellDamageControlledDestruction"] = { + ["1HMace"] = { + ["max"] = 60, + ["min"] = 45, + }, + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 45, + }, + ["Dagger"] = { + ["max"] = 60, + ["min"] = 45, + }, + ["Wand"] = { + ["max"] = 60, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["1228_WeaponSpellDamageEfficacy"] = { + ["1HMace"] = { + ["max"] = 60, + ["min"] = 45, + }, + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 45, + }, ["Dagger"] = { - ["max"] = 109, - ["min"] = 10, - }, + ["max"] = 60, + ["min"] = 45, + }, + ["Wand"] = { + ["max"] = 60, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["1228_WeaponSpellDamagePowerChargeOnCrit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["1228_WeaponSpellDamageReducedMana"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["1228_WeaponSpellDamageTriggerSkill"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["1231_IncreasedChaosAndPhysicalDamage"] = { + ["Ring"] = { + ["max"] = 16, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "explicit", + }, + }, + ["1231_PhysicalDamagePercent"] = { + ["Amulet"] = { + ["max"] = 16, + ["min"] = 9, + }, ["Shield"] = { - ["max"] = 109, - ["min"] = 10, - }, + ["max"] = 16, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "explicit", + }, + }, + ["1232_LocalIncreasedPhysicalDamageAndBleedChance"] = { + ["1HAxe"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["1HMace"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["1HSword"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["1HWeapon"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["2HAxe"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["2HMace"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["2HSword"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["2HWeapon"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["Bow"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["Claw"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["Dagger"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["Staff"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["Wand"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1232_LocalIncreasedPhysicalDamageAndBlindChance"] = { + ["1HAxe"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["1HMace"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["1HSword"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["1HWeapon"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["2HAxe"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["2HMace"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["2HSword"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["2HWeapon"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["Bow"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["Claw"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["Dagger"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["Staff"] = { + ["max"] = 105, + ["min"] = 81, + }, ["Wand"] = { - ["max"] = 109, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["1223_WeaponSpellDamageAddedAsChaos"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["1223_WeaponSpellDamageAndMana"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1232_LocalIncreasedPhysicalDamageAndImpaleChance"] = { + ["1HAxe"] = { + ["max"] = 105, + ["min"] = 81, + }, ["1HMace"] = { - ["max"] = 39, - ["min"] = 5, - }, + ["max"] = 105, + ["min"] = 81, + }, + ["1HSword"] = { + ["max"] = 105, + ["min"] = 81, + }, ["1HWeapon"] = { - ["max"] = 39, - ["min"] = 5, - }, + ["max"] = 105, + ["min"] = 81, + }, + ["2HAxe"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["2HMace"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["2HSword"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["2HWeapon"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["Bow"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["Claw"] = { + ["max"] = 105, + ["min"] = 81, + }, ["Dagger"] = { - ["max"] = 39, - ["min"] = 5, - }, + ["max"] = 105, + ["min"] = 81, + }, + ["Staff"] = { + ["max"] = 105, + ["min"] = 81, + }, ["Wand"] = { - ["max"] = 39, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["1223_WeaponSpellDamageArcaneSurge"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["1223_WeaponSpellDamageControlledDestruction"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1232_LocalIncreasedPhysicalDamageAndPoisonChance"] = { + ["1HAxe"] = { + ["max"] = 105, + ["min"] = 81, + }, ["1HMace"] = { - ["max"] = 60, - ["min"] = 45, - }, + ["max"] = 105, + ["min"] = 81, + }, + ["1HSword"] = { + ["max"] = 105, + ["min"] = 81, + }, ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 45, - }, + ["max"] = 105, + ["min"] = 81, + }, + ["2HAxe"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["2HMace"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["2HSword"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["2HWeapon"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["Bow"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["Claw"] = { + ["max"] = 105, + ["min"] = 81, + }, ["Dagger"] = { - ["max"] = 60, - ["min"] = 45, - }, + ["max"] = 105, + ["min"] = 81, + }, + ["Staff"] = { + ["max"] = 105, + ["min"] = 81, + }, ["Wand"] = { - ["max"] = 60, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["1223_WeaponSpellDamageEfficacy"] = { + ["max"] = 105, + ["min"] = 81, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1232_LocalPhysicalDamagePercent"] = { + ["1HAxe"] = { + ["max"] = 129, + ["min"] = 40, + }, ["1HMace"] = { - ["max"] = 60, - ["min"] = 45, - }, + ["max"] = 129, + ["min"] = 40, + }, + ["1HSword"] = { + ["max"] = 129, + ["min"] = 40, + }, ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 45, - }, + ["max"] = 129, + ["min"] = 40, + }, + ["2HAxe"] = { + ["max"] = 129, + ["min"] = 40, + }, + ["2HMace"] = { + ["max"] = 129, + ["min"] = 40, + }, + ["2HSword"] = { + ["max"] = 129, + ["min"] = 40, + }, + ["2HWeapon"] = { + ["max"] = 129, + ["min"] = 40, + }, + ["Bow"] = { + ["max"] = 129, + ["min"] = 40, + }, + ["Claw"] = { + ["max"] = 129, + ["min"] = 40, + }, ["Dagger"] = { - ["max"] = 60, - ["min"] = 45, - }, + ["max"] = 129, + ["min"] = 40, + }, + ["Staff"] = { + ["max"] = 129, + ["min"] = 40, + }, ["Wand"] = { - ["max"] = 60, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["1223_WeaponSpellDamagePowerChargeOnCrit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["1223_WeaponSpellDamageReducedMana"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["1223_WeaponSpellDamageTriggerSkill"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["1227_StaffSpellDamageForJewel"] = { + ["max"] = 129, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1232_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", - }, - }, - ["1229_ShieldSpellDamageForJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3496944181", + ["text"] = "#% increased Spell Damage while wielding a Staff", + ["type"] = "explicit", + }, + }, + ["1234_MeleeDamageAndMeleeRange"] = { + ["Gloves"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "explicit", + }, + }, + ["1234_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", - }, - }, - ["1230_DualWieldingSpellDamageForJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1766142294", + ["text"] = "#% increased Spell Damage while holding a Shield", + ["type"] = "explicit", + }, + }, + ["1235_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", - }, - }, - ["1231_IncreasedChaosAndPhysicalDamage"] = { - ["Ring"] = { - ["max"] = 16, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", - ["type"] = "explicit", - }, - }, - ["1231_PhysicalDamageForJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1678690824", + ["text"] = "#% increased Spell Damage while Dual Wielding", + ["type"] = "explicit", + }, + }, + ["1236_IncreasedChaosAndPhysicalDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "explicit", + }, + }, + ["1236_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", - }, - }, - ["1231_PhysicalDamagePercent"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "explicit", + }, + }, + ["1236_PhysicalDamagePercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "explicit", + }, + }, + ["1236_PhysicalDamagePercentPrefix"] = { ["Amulet"] = { - ["max"] = 16, - ["min"] = 9, - }, - ["Shield"] = { - ["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", - }, - }, - ["1231_SpellAddedPhysicalDamageHybrid"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", - ["type"] = "explicit", - }, - }, - ["1232_CullingStrikeOnBleedingEnemiesUber"] = { + ["max"] = 30, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "explicit", + }, + }, + ["1236_SpellAddedPhysicalDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "explicit", + }, + }, + ["1237_CullingStrikeOnBleedingEnemiesUber"] = { ["1HAxe"] = { - ["max"] = 49, - ["min"] = 30, - }, + ["max"] = 49, + ["min"] = 30, + }, ["1HWeapon"] = { - ["max"] = 49, - ["min"] = 30, - }, + ["max"] = 49, + ["min"] = 30, + }, ["2HAxe"] = { - ["max"] = 49, - ["min"] = 30, - }, - ["2HWeapon"] = { - ["max"] = 49, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, - ["1232_LocalChanceToMaimPhysicalDamage"] = { + ["max"] = 49, + ["min"] = 30, + }, + ["2HWeapon"] = { + ["max"] = 49, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1237_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", - }, - }, - ["1232_LocalIncreasedPhysicalDamageAndBleedChance"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1237_LocalIncreasedPhysicalDamageAndBleedChance"] = { ["1HAxe"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["1HMace"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["1HSword"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["1HWeapon"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["2HAxe"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["2HMace"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["2HSword"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["2HWeapon"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["Bow"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["Claw"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["Dagger"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["Staff"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["Wand"] = { - ["max"] = 139, - ["min"] = 81, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, - ["1232_LocalIncreasedPhysicalDamageAndBlindChance"] = { + ["max"] = 139, + ["min"] = 120, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1237_LocalIncreasedPhysicalDamageAndBlindChance"] = { ["1HAxe"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["1HMace"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["1HSword"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["1HWeapon"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["2HAxe"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["2HMace"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["2HSword"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["2HWeapon"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["Bow"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["Claw"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["Dagger"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["Staff"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["Wand"] = { - ["max"] = 139, - ["min"] = 81, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, - ["1232_LocalIncreasedPhysicalDamageAndImpaleChance"] = { + ["max"] = 139, + ["min"] = 120, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1237_LocalIncreasedPhysicalDamageAndImpaleChance"] = { ["1HAxe"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["1HMace"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["1HSword"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["1HWeapon"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["2HAxe"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["2HMace"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["2HSword"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["2HWeapon"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["Bow"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["Claw"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["Dagger"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["Staff"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["Wand"] = { - ["max"] = 139, - ["min"] = 81, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, - ["1232_LocalIncreasedPhysicalDamageAndPoisonChance"] = { + ["max"] = 139, + ["min"] = 120, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1237_LocalIncreasedPhysicalDamageAndPoisonChance"] = { ["1HAxe"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["1HMace"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["1HSword"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["1HWeapon"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["2HAxe"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["2HMace"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["2HSword"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["2HWeapon"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["Bow"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["Claw"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["Dagger"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["Staff"] = { - ["max"] = 139, - ["min"] = 81, - }, + ["max"] = 139, + ["min"] = 120, + }, ["Wand"] = { - ["max"] = 139, - ["min"] = 81, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, - ["1232_LocalIncreasedPhysicalDamagePercentAndAccuracyRating"] = { + ["max"] = 139, + ["min"] = 120, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1237_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", - }, - }, - ["1232_LocalIncreasedPhysicalDamagePercentAndArea"] = { + ["max"] = 79, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1237_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", - }, - }, - ["1232_LocalIncreasedPhysicalDamagePercentAndAttackSpeed"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1237_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, - }, - ["2HWeapon"] = { - ["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, + }, + ["2HWeapon"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1237_LocalIncreasedPhysicalDamagePercentAndCritChance"] = { + ["1HWeapon"] = { + ["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", - }, - }, - ["1232_LocalIncreasedPhysicalDamagePercentAndCritMulti"] = { - ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1237_LocalIncreasedPhysicalDamagePercentAndCritMulti"] = { + ["1HWeapon"] = { + ["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", - }, - }, - ["1232_LocalIncreasedPhysicalDamagePercentAndLeech"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1237_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, - }, - ["2HWeapon"] = { - ["max"] = 69, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, - ["1232_LocalIncreasedPhysicalDamagePercentAndPierce"] = { - ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["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", + }, + }, + ["1237_LocalIncreasedPhysicalDamagePercentAndPierce"] = { + ["1HWeapon"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["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", - }, - }, - ["1232_LocalIncreasedPhysicalDamagePercentAndProjSpeed"] = { - ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 69, - ["min"] = 25, - }, + ["max"] = 69, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1237_LocalIncreasedPhysicalDamagePercentAndProjSpeed"] = { + ["1HWeapon"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["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", - }, - }, - ["1232_LocalIncreasedPhysicalDamagePercentAndStun"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1237_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", - }, - }, - ["1232_LocalIncreasedPhysicalDamagePercentFasterProjectiles"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, - ["1232_LocalIncreasedPhysicalDamagePercentIronGrip"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, - ["1232_LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, - ["1232_LocalIncreasedPhysicalDamagePercentProjectileAttackDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, - ["1232_LocalPhysicalDamagePercent"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1237_LocalIncreasedPhysicalDamagePercentFasterProjectiles"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1237_LocalIncreasedPhysicalDamagePercentIronGrip"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1237_LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1237_LocalIncreasedPhysicalDamagePercentProjectileAttackDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1237_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", - }, - }, - ["1232_LocalPhysicalDamagePercentAddedAsChaos"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, - ["1232_LocalPhysicalDamagePercentAddedFireDamage"] = { + ["max"] = 179, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1237_LocalPhysicalDamagePercentAddedAsChaos"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1237_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", - }, - }, - ["1232_LocalPhysicalDamagePercentBrutality"] = { + ["max"] = 134, + ["min"] = 101, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1237_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", - }, - }, - ["1232_LocalPhysicalDamagePercentEnduranceChargeOnStun"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, - ["1232_LocalPhysicalDamagePercentFortify"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, - ["1232_LocalPhysicalDamagePercentMeleePhysicalDamage"] = { + ["max"] = 134, + ["min"] = 101, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1237_LocalPhysicalDamagePercentEnduranceChargeOnStun"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1237_LocalPhysicalDamagePercentFortify"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1237_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", - }, - }, - ["1232_LocalPhysicalDamagePercentOnslaught"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, - ["1232_LocalPhysicalDamagePercentRuthless"] = { + ["max"] = 134, + ["min"] = 101, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1237_LocalPhysicalDamagePercentOnslaught"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1237_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", - }, - }, - ["1234_MeleeDamage"] = { - ["Gloves"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 134, + ["min"] = 101, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1239_MeleeDamage"] = { + ["Gloves"] = { + ["max"] = 38, + ["min"] = 18, + }, ["Ring"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", - ["type"] = "explicit", - }, - }, - ["1234_MeleeDamageAndMeleeRange"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "explicit", + }, + }, + ["1239_MeleeDamageAndMeleeRange"] = { ["Gloves"] = { - ["max"] = 20, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", - ["type"] = "explicit", - }, - }, - ["1234_MeleeDamageForJewel"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "explicit", + }, + }, + ["1239_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", - }, - }, - ["1242_GlobalDamageOverTimeMultiplier"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "explicit", + }, + }, + ["1247_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", - }, - }, - ["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_3988349707", + ["text"] = "+#% to Damage over Time Multiplier", + ["type"] = "explicit", + }, + }, ["1247_PhysicalDamageOverTimeMultiplier"] = { ["1HAxe"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 20, + ["min"] = 14, + }, ["1HMace"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 20, + ["min"] = 14, + }, ["1HSword"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 20, + ["min"] = 14, + }, ["1HWeapon"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 20, + ["min"] = 14, + }, ["2HAxe"] = { - ["max"] = 48, - ["min"] = 24, - }, + ["max"] = 35, + ["min"] = 25, + }, ["2HMace"] = { - ["max"] = 48, - ["min"] = 24, - }, + ["max"] = 35, + ["min"] = 25, + }, ["2HSword"] = { - ["max"] = 48, - ["min"] = 24, - }, + ["max"] = 35, + ["min"] = 25, + }, ["2HWeapon"] = { - ["max"] = 75, - ["min"] = 24, - }, - ["Amulet"] = { - ["max"] = 25, - ["min"] = 11, - }, - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 35, + ["min"] = 25, + }, ["Bow"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 20, + ["min"] = 14, + }, ["Claw"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 20, + ["min"] = 14, + }, ["Dagger"] = { - ["max"] = 48, - ["min"] = 14, - }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 11, - }, + ["max"] = 20, + ["min"] = 14, + }, ["Staff"] = { - ["max"] = 75, - ["min"] = 24, - }, + ["max"] = 35, + ["min"] = 25, + }, ["Wand"] = { - ["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"] = 20, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1314617696", + ["text"] = "+#% to Physical Damage over Time Multiplier", + ["type"] = "explicit", + }, + }, ["1251_FireDamageOverTimeMultiplier"] = { ["1HAxe"] = { - ["max"] = 28, - ["min"] = 14, - }, + ["max"] = 20, + ["min"] = 14, + }, ["1HMace"] = { - ["max"] = 38, - ["min"] = 14, - }, + ["max"] = 20, + ["min"] = 14, + }, ["1HSword"] = { - ["max"] = 28, - ["min"] = 14, - }, + ["max"] = 20, + ["min"] = 14, + }, ["1HWeapon"] = { - ["max"] = 38, - ["min"] = 14, - }, + ["max"] = 20, + ["min"] = 14, + }, ["2HAxe"] = { - ["max"] = 48, - ["min"] = 24, - }, + ["max"] = 35, + ["min"] = 25, + }, ["2HMace"] = { - ["max"] = 48, - ["min"] = 24, - }, + ["max"] = 35, + ["min"] = 25, + }, ["2HSword"] = { - ["max"] = 48, - ["min"] = 24, - }, + ["max"] = 35, + ["min"] = 25, + }, ["2HWeapon"] = { - ["max"] = 75, - ["min"] = 24, - }, - ["Amulet"] = { - ["max"] = 25, - ["min"] = 11, - }, - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 35, + ["min"] = 25, + }, ["Bow"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 20, + ["min"] = 14, + }, ["Claw"] = { - ["max"] = 28, - ["min"] = 14, - }, + ["max"] = 20, + ["min"] = 14, + }, ["Dagger"] = { - ["max"] = 28, - ["min"] = 14, - }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 11, - }, + ["max"] = 20, + ["min"] = 14, + }, ["Staff"] = { - ["max"] = 75, - ["min"] = 24, - }, + ["max"] = 35, + ["min"] = 25, + }, ["Wand"] = { - ["max"] = 38, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3382807662", - ["text"] = "+#% to Fire Damage over Time Multiplier", - ["type"] = "explicit", - }, - }, - ["1253_FireDamageOverTimeMultiplierWithAttacks"] = { + ["max"] = 20, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3382807662", + ["text"] = "+#% to Fire Damage over Time Multiplier", + ["type"] = "explicit", + }, + }, + ["1251_GlobalDamageOverTimeMultiplierWithAttacks"] = { ["Quiver"] = { - ["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"] = { + ["max"] = 26, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_693959086", + ["text"] = "+#% to Damage over Time Multiplier with Attack Skills", + ["type"] = "explicit", + }, + }, + ["1252_PhysicalDamageOverTimeMultiplier"] = { ["1HAxe"] = { - ["max"] = 28, - ["min"] = 14, - }, + ["max"] = 48, + ["min"] = 24, + }, ["1HMace"] = { - ["max"] = 38, - ["min"] = 14, - }, + ["max"] = 48, + ["min"] = 24, + }, ["1HSword"] = { - ["max"] = 28, - ["min"] = 14, - }, + ["max"] = 48, + ["min"] = 24, + }, ["1HWeapon"] = { - ["max"] = 38, - ["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"] = 24, + }, ["Claw"] = { - ["max"] = 28, - ["min"] = 14, - }, + ["max"] = 48, + ["min"] = 24, + }, ["Dagger"] = { - ["max"] = 38, - ["min"] = 14, - }, + ["max"] = 48, + ["min"] = 24, + }, ["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", - }, - }, - ["1259_ChaosDamageOverTimeMultiplier"] = { + ["max"] = 48, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1314617696", + ["text"] = "+#% to Physical Damage over Time Multiplier", + ["type"] = "explicit", + }, + }, + ["1255_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", + }, + }, + ["1256_ColdDamageOverTimeMultiplier"] = { ["1HAxe"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 20, + ["min"] = 14, + }, ["1HMace"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 20, + ["min"] = 14, + }, ["1HSword"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 20, + ["min"] = 14, + }, ["1HWeapon"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 20, + ["min"] = 14, + }, ["2HAxe"] = { - ["max"] = 48, - ["min"] = 24, - }, + ["max"] = 35, + ["min"] = 25, + }, ["2HMace"] = { - ["max"] = 48, - ["min"] = 24, - }, + ["max"] = 35, + ["min"] = 25, + }, ["2HSword"] = { - ["max"] = 48, - ["min"] = 24, - }, + ["max"] = 35, + ["min"] = 25, + }, ["2HWeapon"] = { - ["max"] = 75, - ["min"] = 24, - }, - ["Amulet"] = { - ["max"] = 25, - ["min"] = 11, - }, - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["max"] = 35, + ["min"] = 25, + }, ["Bow"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 20, + ["min"] = 14, + }, ["Claw"] = { - ["max"] = 48, - ["min"] = 14, - }, + ["max"] = 20, + ["min"] = 14, + }, ["Dagger"] = { - ["max"] = 48, - ["min"] = 14, - }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 11, - }, + ["max"] = 20, + ["min"] = 14, + }, ["Staff"] = { - ["max"] = 75, - ["min"] = 24, - }, + ["max"] = 35, + ["min"] = 25, + }, ["Wand"] = { - ["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", - }, - }, - ["1264_LocalPoisonDamageOverTimeMultiplier"] = { + ["max"] = 20, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1950806024", + ["text"] = "+#% to Cold Damage over Time Multiplier", + ["type"] = "explicit", + }, + }, + ["1256_FireDamageOverTimeMultiplier"] = { ["1HAxe"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 28, + ["min"] = 24, + }, ["1HMace"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 38, + ["min"] = 14, + }, ["1HSword"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 28, + ["min"] = 24, + }, ["1HWeapon"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 38, + ["min"] = 14, + }, ["2HAxe"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 48, + ["min"] = 24, + }, ["2HMace"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 48, + ["min"] = 24, + }, ["2HSword"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 48, + ["min"] = 24, + }, ["2HWeapon"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 75, + ["min"] = 24, + }, + ["Amulet"] = { + ["max"] = 25, + ["min"] = 11, + }, + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, ["Bow"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 48, + ["min"] = 24, + }, ["Claw"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 28, + ["min"] = 24, + }, ["Dagger"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 28, + ["min"] = 24, + }, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 11, + }, ["Staff"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 75, + ["min"] = 24, + }, ["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", - }, - }, - ["1265_GlobalAddedPhysicalDamage"] = { - ["Gloves"] = { - ["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, - }, - ["AnyJewel"] = { - ["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, - }, - ["Gloves"] = { - ["max"] = 9, - ["min"] = 1.5, - }, + ["max"] = 38, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3382807662", + ["text"] = "+#% to Fire Damage over Time Multiplier", + ["type"] = "explicit", + }, + }, + ["1258_FireDamageOverTimeMultiplierWithAttacks"] = { ["Quiver"] = { - ["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", - }, - }, - ["1267_SelfPhysicalDamageTaken"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2093523445", - ["text"] = "Adds # to # Physical Damage to Attacks against you", - ["type"] = "explicit", - }, - }, - ["1276_LocalAddedPhysicalDamageAndCausesBleeding"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2139660169", + ["text"] = "+#% to Fire Damage over Time Multiplier with Attack Skills", + ["type"] = "explicit", + }, + }, + ["1259_ChaosDamageOverTimeMultiplier"] = { ["1HAxe"] = { - ["max"] = 12.5, - ["min"] = 8.5, - }, + ["max"] = 20, + ["min"] = 14, + }, ["1HMace"] = { - ["max"] = 12.5, - ["min"] = 8.5, - }, + ["max"] = 20, + ["min"] = 14, + }, ["1HSword"] = { - ["max"] = 12.5, - ["min"] = 8.5, - }, + ["max"] = 20, + ["min"] = 14, + }, ["1HWeapon"] = { - ["max"] = 12.5, - ["min"] = 8.5, - }, + ["max"] = 20, + ["min"] = 14, + }, ["2HAxe"] = { - ["max"] = 18, - ["min"] = 13.5, - }, + ["max"] = 35, + ["min"] = 25, + }, ["2HMace"] = { - ["max"] = 18, - ["min"] = 13.5, - }, + ["max"] = 35, + ["min"] = 25, + }, ["2HSword"] = { - ["max"] = 18, - ["min"] = 13.5, - }, + ["max"] = 35, + ["min"] = 25, + }, ["2HWeapon"] = { - ["max"] = 18, - ["min"] = 13.5, - }, + ["max"] = 35, + ["min"] = 25, + }, ["Bow"] = { - ["max"] = 18, - ["min"] = 13.5, - }, + ["max"] = 20, + ["min"] = 14, + }, ["Claw"] = { - ["max"] = 12.5, - ["min"] = 8.5, - }, + ["max"] = 20, + ["min"] = 14, + }, ["Dagger"] = { - ["max"] = 12.5, - ["min"] = 8.5, - }, + ["max"] = 20, + ["min"] = 14, + }, ["Staff"] = { - ["max"] = 18, - ["min"] = 13.5, - }, + ["max"] = 35, + ["min"] = 25, + }, ["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", - }, - }, - ["1276_LocalPhysicalDamage"] = { + ["max"] = 20, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4055307827", + ["text"] = "+#% to Chaos Damage over Time Multiplier", + ["type"] = "explicit", + }, + }, + ["1261_ColdDamageOverTimeMultiplier"] = { ["1HAxe"] = { - ["max"] = 40.5, - ["min"] = 1.5, - }, + ["max"] = 28, + ["min"] = 24, + }, ["1HMace"] = { - ["max"] = 40.5, - ["min"] = 1.5, - }, + ["max"] = 38, + ["min"] = 14, + }, ["1HSword"] = { - ["max"] = 40.5, - ["min"] = 1.5, - }, + ["max"] = 28, + ["min"] = 24, + }, ["1HWeapon"] = { - ["max"] = 40.5, - ["min"] = 1.5, - }, - ["Claw"] = { - ["max"] = 40.5, - ["min"] = 1.5, - }, - ["Dagger"] = { - ["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", - }, - }, - ["1276_LocalPhysicalDamageTwoHanded"] = { + ["max"] = 38, + ["min"] = 14, + }, ["2HAxe"] = { - ["max"] = 65.5, - ["min"] = 3, - }, + ["max"] = 48, + ["min"] = 24, + }, ["2HMace"] = { - ["max"] = 65.5, - ["min"] = 3, - }, + ["max"] = 48, + ["min"] = 24, + }, ["2HSword"] = { - ["max"] = 65.5, - ["min"] = 3, - }, + ["max"] = 48, + ["min"] = 24, + }, ["2HWeapon"] = { - ["max"] = 65.5, - ["min"] = 3, - }, - ["Bow"] = { - ["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", - }, - }, - ["1278_IncreasedDualWieldlingDamageForJewel"] = { + ["max"] = 75, + ["min"] = 24, + }, + ["Amulet"] = { + ["max"] = 25, + ["min"] = 11, + }, ["AnyJewel"] = { - ["max"] = 14, - ["min"] = 12, - }, + ["max"] = 8, + ["min"] = 6, + }, ["BaseJewel"] = { - ["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"] = 8, + ["min"] = 6, + }, + ["Bow"] = { + ["max"] = 48, + ["min"] = 24, + }, + ["Claw"] = { + ["max"] = 28, + ["min"] = 24, + }, + ["Dagger"] = { + ["max"] = 38, + ["min"] = 14, + }, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 11, + }, + ["Staff"] = { + ["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", + }, + }, + ["1264_ChaosDamageOverTimeMultiplier"] = { + ["1HAxe"] = { + ["max"] = 48, + ["min"] = 24, + }, + ["1HMace"] = { + ["max"] = 48, + ["min"] = 24, + }, + ["1HSword"] = { + ["max"] = 48, + ["min"] = 24, + }, + ["1HWeapon"] = { + ["max"] = 48, + ["min"] = 14, + }, + ["2HAxe"] = { + ["max"] = 48, + ["min"] = 24, + }, + ["2HMace"] = { + ["max"] = 48, + ["min"] = 24, + }, + ["2HSword"] = { + ["max"] = 48, + ["min"] = 24, + }, + ["2HWeapon"] = { + ["max"] = 75, + ["min"] = 24, + }, + ["Amulet"] = { + ["max"] = 25, + ["min"] = 11, + }, + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["Bow"] = { + ["max"] = 48, + ["min"] = 24, + }, + ["Claw"] = { + ["max"] = 48, + ["min"] = 24, + }, + ["Dagger"] = { + ["max"] = 48, + ["min"] = 14, + }, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 11, + }, + ["Staff"] = { + ["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", + }, + }, + ["1266_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", + }, + }, + ["1266_PhysicalDamage"] = { + ["Amulet"] = { + ["max"] = 8.5, + ["min"] = 4.5, + }, + ["Gloves"] = { + ["max"] = 6.5, + ["min"] = 4.5, + }, + ["Quiver"] = { + ["max"] = 8.5, + ["min"] = 4.5, + }, + ["Ring"] = { + ["max"] = 8.5, + ["min"] = 4.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "explicit", + }, + }, + ["1269_LocalPoisonDamageOverTimeMultiplier"] = { + ["1HAxe"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["1HMace"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["1HSword"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["1HWeapon"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["2HAxe"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["2HMace"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["2HSword"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["2HWeapon"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["Bow"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["Claw"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["Dagger"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["Staff"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["Wand"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4096656097", + ["text"] = "+#% to Damage over Time Multiplier for Poison inflicted with this Weapon", + ["type"] = "explicit", + }, + }, + ["1270_GlobalAddedPhysicalDamage"] = { + ["Gloves"] = { + ["max"] = 9.5, + ["min"] = 7.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_960081730", + ["text"] = "Adds # to # Physical Damage", + ["type"] = "explicit", + }, + }, + ["1271_AddedPhysicalSuffix"] = { + ["AbyssJewel"] = { + ["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", + }, + }, + ["1271_PhysicalDamage"] = { + ["Amulet"] = { + ["max"] = 24, + ["min"] = 1.5, + }, + ["Gloves"] = { + ["max"] = 9, + ["min"] = 1.5, + }, + ["Quiver"] = { + ["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", + }, + }, + ["1272_SelfPhysicalDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2093523445", + ["text"] = "Adds # to # Physical Damage to Attacks against you", + ["type"] = "explicit", + }, + }, + ["1276_LocalAddedPhysicalDamageAndCausesBleeding"] = { + ["1HAxe"] = { + ["max"] = 12.5, + ["min"] = 8.5, + }, + ["1HMace"] = { + ["max"] = 12.5, + ["min"] = 8.5, + }, + ["1HSword"] = { + ["max"] = 12.5, + ["min"] = 8.5, + }, + ["1HWeapon"] = { + ["max"] = 12.5, + ["min"] = 8.5, + }, + ["2HAxe"] = { + ["max"] = 18, + ["min"] = 13.5, + }, + ["2HMace"] = { + ["max"] = 18, + ["min"] = 13.5, + }, + ["2HSword"] = { + ["max"] = 18, + ["min"] = 13.5, + }, + ["2HWeapon"] = { + ["max"] = 18, + ["min"] = 13.5, + }, + ["Bow"] = { + ["max"] = 18, + ["min"] = 13.5, + }, + ["Claw"] = { + ["max"] = 12.5, + ["min"] = 8.5, + }, + ["Dagger"] = { + ["max"] = 12.5, + ["min"] = 8.5, + }, + ["Staff"] = { + ["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", + }, + }, + ["1276_LocalPhysicalDamage"] = { + ["1HAxe"] = { + ["max"] = 23.5, + ["min"] = 9.5, + }, + ["1HMace"] = { + ["max"] = 23.5, + ["min"] = 9.5, + }, + ["1HSword"] = { + ["max"] = 23.5, + ["min"] = 9.5, + }, + ["1HWeapon"] = { + ["max"] = 23.5, + ["min"] = 9.5, + }, + ["Claw"] = { + ["max"] = 23.5, + ["min"] = 9.5, + }, + ["Dagger"] = { + ["max"] = 23.5, + ["min"] = 9.5, + }, + ["Wand"] = { + ["max"] = 23.5, + ["min"] = 9.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"] = 33, + ["min"] = 13.5, + }, + ["2HMace"] = { + ["max"] = 33, + ["min"] = 13.5, + }, + ["2HSword"] = { + ["max"] = 33, + ["min"] = 13.5, + }, + ["2HWeapon"] = { + ["max"] = 33, + ["min"] = 13.5, + }, + ["Bow"] = { + ["max"] = 33, + ["min"] = 13.5, + }, + ["Staff"] = { + ["max"] = 33, + ["min"] = 13.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Physical Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1281_LocalAddedPhysicalDamageAndCausesBleeding"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Physical Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1281_LocalPhysicalDamage"] = { + ["1HAxe"] = { + ["max"] = 40.5, + ["min"] = 1.5, + }, + ["1HMace"] = { + ["max"] = 40.5, + ["min"] = 1.5, + }, + ["1HSword"] = { + ["max"] = 40.5, + ["min"] = 1.5, + }, + ["1HWeapon"] = { + ["max"] = 40.5, + ["min"] = 1.5, + }, + ["Claw"] = { + ["max"] = 40.5, + ["min"] = 1.5, + }, + ["Dagger"] = { + ["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", + }, + }, + ["1281_LocalPhysicalDamageTwoHanded"] = { + ["2HAxe"] = { + ["max"] = 65.5, + ["min"] = 3, + }, + ["2HMace"] = { + ["max"] = 65.5, + ["min"] = 3, + }, + ["2HSword"] = { + ["max"] = 65.5, + ["min"] = 3, + }, + ["2HWeapon"] = { + ["max"] = 65.5, + ["min"] = 3, + }, + ["Bow"] = { + ["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", + }, + }, + ["1283_IncreasedDualWieldlingDamageForJewel"] = { + ["AnyJewel"] = { + ["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", + }, + }, + ["1284_DualWieldingPhysicalDamage"] = { + ["1HAxe"] = { + ["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", - }, - }, - ["1301_IncreasedAxeDamageForJewel"] = { + ["max"] = 37, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1274831335", + ["text"] = "#% increased Physical Attack Damage while Dual Wielding", + ["type"] = "explicit", + }, + }, + ["1306_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", - }, - }, - ["1308_IncreasedStaffDamageForJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3314142259", + ["text"] = "#% increased Damage with Axes", + ["type"] = "explicit", + }, + }, + ["1313_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", - }, - }, - ["1313_IncreasedClawDamageForJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4087089130", + ["text"] = "#% increased Damage with Staves", + ["type"] = "explicit", + }, + }, + ["1318_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", - }, - }, - ["1319_IncreasedDaggerDamageForJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1069260037", + ["text"] = "#% increased Damage with Claws", + ["type"] = "explicit", + }, + }, + ["1324_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", - }, - }, - ["1325_IncreasedMaceDamageForJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3586984690", + ["text"] = "#% increased Damage with Daggers", + ["type"] = "explicit", + }, + }, + ["1330_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", - }, - }, - ["1331_IncreasedBowDamageForJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1181419800", + ["text"] = "#% increased Damage with Maces or Sceptres", + ["type"] = "explicit", + }, + }, + ["1336_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", - }, - }, - ["1339_IncreasedSwordDamageForJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4188894176", + ["text"] = "#% increased Damage with Bows", + ["type"] = "explicit", + }, + }, + ["1344_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"] = 60, + ["min"] = 36, + }, ["1HMace"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 60, + ["min"] = 36, + }, ["1HSword"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 60, + ["min"] = 36, + }, ["1HWeapon"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 60, + ["min"] = 36, + }, ["2HAxe"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 80, + ["min"] = 60, + }, ["2HMace"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 80, + ["min"] = 60, + }, ["2HSword"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 80, + ["min"] = 60, + }, ["2HWeapon"] = { - ["max"] = 109, - ["min"] = 60, - }, - ["Bow"] = { - ["max"] = 109, - ["min"] = 70, - }, + ["max"] = 80, + ["min"] = 60, + }, ["Claw"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 60, + ["min"] = 36, + }, ["Dagger"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 60, + ["min"] = 36, + }, ["Staff"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 80, + ["min"] = 60, + }, ["Wand"] = { - ["max"] = 109, - ["min"] = 36, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", - }, - }, - ["1357_FireDamageForJewel"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 36, + }, + ["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"] = 16, + ["min"] = 9, + }, ["1HSword"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["1HWeapon"] = { - ["max"] = 30, - ["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"] = 50, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["Amulet"] = { - ["max"] = 34, - ["min"] = 9, - }, + ["max"] = 16, + ["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"] = 16, + ["min"] = 9, + }, ["Staff"] = { - ["max"] = 50, - ["min"] = 9, - }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", - }, - }, - ["1357_FireDamagePercentagePrefix"] = { - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Belt"] = { - ["max"] = 30, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", - }, - }, - ["1357_FireDamagePrefixFirePenetration"] = { - ["1HMace"] = { - ["max"] = 60, - ["min"] = 45, - }, - ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 45, - }, + ["max"] = 16, + ["min"] = 9, + }, ["Wand"] = { - ["max"] = 60, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 9, + }, + ["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"] = 54, + ["min"] = 25, + }, ["1HSword"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 54, + ["min"] = 25, + }, ["1HWeapon"] = { - ["max"] = 109, - ["min"] = 10, - }, + ["max"] = 54, + ["min"] = 25, + }, ["Claw"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 54, + ["min"] = 25, + }, ["Dagger"] = { - ["max"] = 54, - ["min"] = 25, - }, - ["Shield"] = { - ["max"] = 109, - ["min"] = 10, - }, + ["max"] = 54, + ["min"] = 25, + }, ["Wand"] = { - ["max"] = 109, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", - }, - }, - ["1357_FireDamageWeaponPrefixAndFlat"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 54, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", - }, - }, - ["1357_LocalFireDamageHybrid"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", - }, - }, - ["1357_SpellAddedFireDamageHybrid"] = { - ["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_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"] = 81, + ["min"] = 37, + }, ["Staff"] = { - ["max"] = 164, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", - }, - }, - ["1357_TwoHandFireDamageWeaponPrefixAndFlat"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", - }, - }, - ["1358_SelfFireAndColdDamageTaken"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1905034712", - ["text"] = "Adds # to # Fire Damage to Hits against you", - ["type"] = "explicit", - }, - }, - ["1358_SelfFireAndLightningDamageTaken"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1905034712", - ["text"] = "Adds # to # Fire Damage to Hits against you", - ["type"] = "explicit", - }, - }, + ["max"] = 81, + ["min"] = 37, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, ["1359_AddedFireAndColdDamage"] = { ["Amulet"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 14, + ["min"] = 7.5, + }, ["Quiver"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 14, + ["min"] = 7.5, + }, ["Ring"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 14, + ["min"] = 7.5, + }, ["Shield"] = { - ["max"] = 19, - ["min"] = 7.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_321077055", - ["text"] = "Adds # to # Fire Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 14, + ["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"] = 14, + ["min"] = 7.5, + }, ["Quiver"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 14, + ["min"] = 7.5, + }, ["Ring"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 14, + ["min"] = 7.5, + }, ["Shield"] = { - ["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", - }, - }, - ["1360_AddedFireSuffix"] = { - ["AbyssJewel"] = { - ["max"] = 21.5, - ["min"] = 7, - }, - ["AnyJewel"] = { - ["max"] = 21.5, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1573130764", - ["text"] = "Adds # to # Fire Damage to Attacks", - ["type"] = "explicit", - }, - }, + ["max"] = 14, + ["min"] = 7.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_321077055", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "explicit", + }, + }, ["1360_FireDamage"] = { ["Amulet"] = { - ["max"] = 37.5, - ["min"] = 1.5, - }, + ["max"] = 23.5, + ["min"] = 12, + }, ["Gloves"] = { - ["max"] = 21, - ["min"] = 1.5, - }, + ["max"] = 15.5, + ["min"] = 12, + }, ["Quiver"] = { - ["max"] = 75.5, - ["min"] = 2, - }, + ["max"] = 32.5, + ["min"] = 12.5, + }, ["Ring"] = { - ["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"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1573130764", - ["text"] = "Adds # to # Fire Damage to Attacks", - ["type"] = "explicit", - }, - }, - ["1361_SelfFireDamageTaken"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2127433866", - ["text"] = "Adds # to # Fire Damage to Attacks against you", - ["type"] = "explicit", - }, - }, - ["1362_LocalFireDamage"] = { + ["max"] = 23.5, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1573130764", + ["text"] = "Adds # to # Fire Damage to Attacks", + ["type"] = "explicit", + }, + }, + ["1362_FireDamageAndChanceToIgnite"] = { ["1HAxe"] = { - ["max"] = 165.5, - ["min"] = 2, - }, + ["max"] = 109, + ["min"] = 70, + }, ["1HMace"] = { - ["max"] = 165.5, - ["min"] = 2, - }, + ["max"] = 109, + ["min"] = 70, + }, ["1HSword"] = { - ["max"] = 165.5, - ["min"] = 2, - }, + ["max"] = 109, + ["min"] = 70, + }, ["1HWeapon"] = { - ["max"] = 165.5, - ["min"] = 2, - }, + ["max"] = 109, + ["min"] = 70, + }, ["2HAxe"] = { - ["max"] = 165.5, - ["min"] = 2, - }, + ["max"] = 109, + ["min"] = 70, + }, ["2HMace"] = { - ["max"] = 165.5, - ["min"] = 2, - }, + ["max"] = 109, + ["min"] = 70, + }, ["2HSword"] = { - ["max"] = 165.5, - ["min"] = 2, - }, + ["max"] = 109, + ["min"] = 70, + }, ["2HWeapon"] = { - ["max"] = 165.5, - ["min"] = 2, - }, + ["max"] = 109, + ["min"] = 70, + }, + ["Bow"] = { + ["max"] = 109, + ["min"] = 70, + }, ["Claw"] = { - ["max"] = 165.5, - ["min"] = 2, - }, + ["max"] = 109, + ["min"] = 70, + }, ["Dagger"] = { - ["max"] = 165.5, - ["min"] = 2, - }, + ["max"] = 109, + ["min"] = 70, + }, + ["Staff"] = { + ["max"] = 109, + ["min"] = 70, + }, ["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", - }, - }, - ["1362_LocalFireDamageAndPen"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Fire Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage (Local)", - ["type"] = "explicit", - }, - }, - ["1362_LocalFireDamageHybrid"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Fire Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage (Local)", - ["type"] = "explicit", - }, - }, - ["1362_LocalFireDamagePenetrationHybrid"] = { - ["1HAxe"] = { - ["max"] = 48, - ["min"] = 11.5, - }, + ["max"] = 109, + ["min"] = 70, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, + ["1362_FireDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, + ["1362_FireDamagePercentage"] = { ["1HMace"] = { - ["max"] = 48, - ["min"] = 11.5, - }, - ["1HSword"] = { - ["max"] = 48, - ["min"] = 11.5, - }, + ["max"] = 30, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 48, - ["min"] = 11.5, - }, - ["2HAxe"] = { - ["max"] = 89.5, - ["min"] = 11.5, - }, - ["2HMace"] = { - ["max"] = 89.5, - ["min"] = 11.5, - }, - ["2HSword"] = { - ["max"] = 89.5, - ["min"] = 11.5, - }, + ["max"] = 30, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 89.5, - ["min"] = 11.5, - }, - ["Bow"] = { - ["max"] = 48, - ["min"] = 11.5, - }, - ["Claw"] = { - ["max"] = 48, - ["min"] = 11.5, - }, - ["Dagger"] = { - ["max"] = 48, - ["min"] = 11.5, - }, + ["max"] = 50, + ["min"] = 18, + }, + ["Amulet"] = { + ["max"] = 34, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 34, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 89.5, - ["min"] = 21.5, - }, + ["max"] = 50, + ["min"] = 18, + }, ["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", - }, - }, - ["1362_LocalFireDamageRanged"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Fire Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage (Local)", - ["type"] = "explicit", - }, - }, - ["1362_LocalFireDamageTwoHand"] = { + ["max"] = 30, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, + ["1362_FireDamagePercentagePrefix"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Belt"] = { + ["max"] = 30, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, + ["1362_FireDamagePrefixFirePenetration"] = { + ["1HMace"] = { + ["max"] = 60, + ["min"] = 45, + }, + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 45, + }, + ["Wand"] = { + ["max"] = 60, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, + ["1362_FireDamageWeaponPrefix"] = { + ["1HMace"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, + ["1362_FireDamageWeaponPrefixAndFlat"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, + ["1362_IncreasedFireAndLightningDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, + ["1362_LocalFireDamage"] = { ["1HAxe"] = { - ["max"] = 307.5, - ["min"] = 4.5, - }, + ["max"] = 57, + ["min"] = 15, + }, ["1HMace"] = { - ["max"] = 307.5, - ["min"] = 4.5, - }, + ["max"] = 57, + ["min"] = 15, + }, ["1HSword"] = { - ["max"] = 307.5, - ["min"] = 4.5, - }, + ["max"] = 57, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 307.5, - ["min"] = 4.5, - }, + ["max"] = 57, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 57, + ["min"] = 15, + }, + ["Dagger"] = { + ["max"] = 57, + ["min"] = 15, + }, + ["Wand"] = { + ["max"] = 57, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1362_LocalFireDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, + ["1362_LocalFireDamageTwoHand"] = { ["2HAxe"] = { - ["max"] = 307.5, - ["min"] = 4.5, - }, + ["max"] = 100, + ["min"] = 25.5, + }, ["2HMace"] = { - ["max"] = 307.5, - ["min"] = 4.5, - }, + ["max"] = 100, + ["min"] = 25.5, + }, ["2HSword"] = { - ["max"] = 307.5, - ["min"] = 4.5, - }, + ["max"] = 100, + ["min"] = 25.5, + }, ["2HWeapon"] = { - ["max"] = 307.5, - ["min"] = 4.5, - }, + ["max"] = 100, + ["min"] = 25.5, + }, ["Bow"] = { - ["max"] = 307.5, - ["min"] = 4.5, - }, + ["max"] = 100, + ["min"] = 25.5, + }, + ["Staff"] = { + ["max"] = 100, + ["min"] = 25.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1362_SpellAddedFireDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, + ["1362_TwoHandFireDamageWeaponPrefix"] = { + ["2HWeapon"] = { + ["max"] = 164, + ["min"] = 15, + }, ["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", - }, - }, - ["1362_LocalFireDamageTwoHandAndPen"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Fire Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage (Local)", - ["type"] = "explicit", - }, - }, - ["1365_FireGemCastSpeedForJewel"] = { + ["max"] = 164, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, + ["1362_TwoHandFireDamageWeaponPrefixAndFlat"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, + ["1363_SelfFireAndColdDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1905034712", + ["text"] = "Adds # to # Fire Damage to Hits against you", + ["type"] = "explicit", + }, + }, + ["1363_SelfFireAndLightningDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1905034712", + ["text"] = "Adds # to # Fire Damage to Hits against you", + ["type"] = "explicit", + }, + }, + ["1364_AddedFireAndColdDamage"] = { + ["Amulet"] = { + ["max"] = 19, + ["min"] = 17, + }, + ["Quiver"] = { + ["max"] = 19, + ["min"] = 17, + }, + ["Ring"] = { + ["max"] = 19, + ["min"] = 17, + }, + ["Shield"] = { + ["max"] = 19, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_321077055", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "explicit", + }, + }, + ["1364_AddedFireAndLightningDamage"] = { + ["Amulet"] = { + ["max"] = 19, + ["min"] = 17, + }, + ["Quiver"] = { + ["max"] = 19, + ["min"] = 17, + }, + ["Ring"] = { + ["max"] = 19, + ["min"] = 17, + }, + ["Shield"] = { + ["max"] = 19, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_321077055", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "explicit", + }, + }, + ["1364_GlobalAddedFireDamage"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_321077055", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "explicit", + }, + }, + ["1365_AddedFireSuffix"] = { + ["AbyssJewel"] = { + ["max"] = 21.5, + ["min"] = 7, + }, ["AnyJewel"] = { - ["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"] = 21.5, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1573130764", + ["text"] = "Adds # to # Fire Damage to Attacks", + ["type"] = "explicit", + }, + }, + ["1365_FireDamage"] = { + ["Amulet"] = { + ["max"] = 37.5, + ["min"] = 1.5, + }, + ["Gloves"] = { + ["max"] = 21, + ["min"] = 1.5, + }, + ["Quiver"] = { + ["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", + }, + }, + ["1365_FireDamagePhysConvertedToFire"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1573130764", + ["text"] = "Adds # to # Fire Damage to Attacks", + ["type"] = "explicit", + }, + }, ["1366_ColdDamageAndBaseChanceToFreeze"] = { ["1HAxe"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 60, + ["min"] = 36, + }, ["1HMace"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 60, + ["min"] = 36, + }, ["1HSword"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 60, + ["min"] = 36, + }, ["1HWeapon"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 60, + ["min"] = 36, + }, ["2HAxe"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 80, + ["min"] = 60, + }, ["2HMace"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 80, + ["min"] = 60, + }, ["2HSword"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 80, + ["min"] = 60, + }, ["2HWeapon"] = { - ["max"] = 109, - ["min"] = 60, - }, - ["Bow"] = { - ["max"] = 109, - ["min"] = 70, - }, + ["max"] = 80, + ["min"] = 60, + }, ["Claw"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 60, + ["min"] = 36, + }, ["Dagger"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 60, + ["min"] = 36, + }, ["Staff"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 80, + ["min"] = 60, + }, ["Wand"] = { - ["max"] = 109, - ["min"] = 36, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, - ["1366_ColdDamageForJewel"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 36, + }, + ["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"] = 16, + ["min"] = 9, + }, ["1HSword"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["1HWeapon"] = { - ["max"] = 30, - ["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"] = 50, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 9, + }, ["Amulet"] = { - ["max"] = 34, - ["min"] = 6, - }, + ["max"] = 16, + ["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"] = 6, - }, + ["max"] = 16, + ["min"] = 9, + }, ["Staff"] = { - ["max"] = 50, - ["min"] = 9, - }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, - ["1366_ColdDamagePercentagePrefix"] = { - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Belt"] = { - ["max"] = 30, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, - ["1366_ColdDamagePrefixColdPenetration"] = { - ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 45, - }, - ["Dagger"] = { - ["max"] = 60, - ["min"] = 45, - }, + ["max"] = 16, + ["min"] = 9, + }, ["Wand"] = { - ["max"] = 60, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 9, + }, + ["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"] = 54, + ["min"] = 25, + }, ["1HSword"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 54, + ["min"] = 25, + }, ["1HWeapon"] = { - ["max"] = 109, - ["min"] = 10, - }, + ["max"] = 54, + ["min"] = 25, + }, ["Claw"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 54, + ["min"] = 25, + }, ["Dagger"] = { - ["max"] = 54, - ["min"] = 25, - }, - ["Shield"] = { - ["max"] = 109, - ["min"] = 10, - }, + ["max"] = 54, + ["min"] = 25, + }, ["Wand"] = { - ["max"] = 109, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, - ["1366_ColdDamageWeaponPrefixAndFlat"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, - ["1366_LocalColdDamageHybrid"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, - ["1366_SpellAddedColdDamageHybrid"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, + ["max"] = 54, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, + ["1366_SelfFireDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2127433866", + ["text"] = "Adds # to # Fire Damage to Attacks against you", + ["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"] = 81, + ["min"] = 37, + }, ["Staff"] = { - ["max"] = 164, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, - ["1366_TwoHandColdDamageWeaponPrefixAndFlat"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, - ["1367_SelfColdAndLightningDamageTaken"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3482587079", - ["text"] = "Adds # to # Cold Damage to Hits against you", - ["type"] = "explicit", - }, - }, - ["1367_SelfFireAndColdDamageTaken"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3482587079", - ["text"] = "Adds # to # Cold Damage to Hits against you", - ["type"] = "explicit", - }, - }, - ["1368_AddedColdAndLightningDamage"] = { - ["Amulet"] = { - ["max"] = 19, - ["min"] = 7.5, - }, - ["Quiver"] = { - ["max"] = 19, - ["min"] = 7.5, - }, - ["Ring"] = { - ["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", - }, - }, - ["1368_AddedFireAndColdDamage"] = { - ["Amulet"] = { - ["max"] = 19, - ["min"] = 7.5, - }, - ["Quiver"] = { - ["max"] = 19, - ["min"] = 7.5, - }, - ["Ring"] = { - ["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", - }, - }, - ["1368_GlobalAddedColdDamage"] = { - ["Gloves"] = { - ["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, - }, - ["AnyJewel"] = { - ["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, - }, - ["Gloves"] = { - ["max"] = 18.5, - ["min"] = 1.5, - }, - ["Quiver"] = { - ["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", - }, - }, - ["1369_ColdDamagePhysConvertedToCold"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4067062424", - ["text"] = "Adds # to # Cold Damage to Attacks", - ["type"] = "explicit", - }, - }, - ["1370_SelfColdDamageTaken"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_617462123", - ["text"] = "Adds # to # Cold Damage to Attacks against you", - ["type"] = "explicit", - }, - }, - ["1371_LocalColdDamage"] = { + ["max"] = 81, + ["min"] = 37, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, + ["1367_LocalFireDamage"] = { ["1HAxe"] = { - ["max"] = 150, - ["min"] = 2, - }, + ["max"] = 165.5, + ["min"] = 2, + }, ["1HMace"] = { - ["max"] = 150, - ["min"] = 2, - }, + ["max"] = 165.5, + ["min"] = 2, + }, ["1HSword"] = { - ["max"] = 150, - ["min"] = 2, - }, + ["max"] = 165.5, + ["min"] = 2, + }, ["1HWeapon"] = { - ["max"] = 150, - ["min"] = 2, - }, + ["max"] = 165.5, + ["min"] = 2, + }, ["2HAxe"] = { - ["max"] = 150, - ["min"] = 2, - }, + ["max"] = 165.5, + ["min"] = 2, + }, ["2HMace"] = { - ["max"] = 150, - ["min"] = 2, - }, + ["max"] = 165.5, + ["min"] = 2, + }, ["2HSword"] = { - ["max"] = 150, - ["min"] = 2, - }, + ["max"] = 165.5, + ["min"] = 2, + }, ["2HWeapon"] = { - ["max"] = 150, - ["min"] = 2, - }, + ["max"] = 165.5, + ["min"] = 2, + }, ["Claw"] = { - ["max"] = 150, - ["min"] = 2, - }, + ["max"] = 165.5, + ["min"] = 2, + }, ["Dagger"] = { - ["max"] = 150, - ["min"] = 2, - }, + ["max"] = 165.5, + ["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", - }, - }, - ["1371_LocalColdDamageAndPen"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Cold Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage (Local)", - ["type"] = "explicit", - }, - }, - ["1371_LocalColdDamageHybrid"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Cold Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage (Local)", - ["type"] = "explicit", - }, - }, - ["1371_LocalColdDamagePenetrationHybrid"] = { + ["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", + }, + }, + ["1367_LocalFireDamageAndPen"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1367_LocalFireDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1367_LocalFireDamagePenetrationHybrid"] = { ["1HAxe"] = { - ["max"] = 43.5, - ["min"] = 10.5, - }, + ["max"] = 48, + ["min"] = 11.5, + }, ["1HMace"] = { - ["max"] = 43.5, - ["min"] = 10.5, - }, + ["max"] = 48, + ["min"] = 11.5, + }, ["1HSword"] = { - ["max"] = 43.5, - ["min"] = 10.5, - }, + ["max"] = 48, + ["min"] = 11.5, + }, ["1HWeapon"] = { - ["max"] = 43.5, - ["min"] = 10.5, - }, + ["max"] = 48, + ["min"] = 11.5, + }, ["2HAxe"] = { - ["max"] = 80.5, - ["min"] = 10.5, - }, + ["max"] = 89.5, + ["min"] = 11.5, + }, ["2HMace"] = { - ["max"] = 80.5, - ["min"] = 10.5, - }, + ["max"] = 89.5, + ["min"] = 11.5, + }, ["2HSword"] = { - ["max"] = 80.5, - ["min"] = 10.5, - }, + ["max"] = 89.5, + ["min"] = 11.5, + }, ["2HWeapon"] = { - ["max"] = 80.5, - ["min"] = 10.5, - }, + ["max"] = 89.5, + ["min"] = 11.5, + }, ["Bow"] = { - ["max"] = 43.5, - ["min"] = 10.5, - }, + ["max"] = 48, + ["min"] = 11.5, + }, ["Claw"] = { - ["max"] = 43.5, - ["min"] = 10.5, - }, + ["max"] = 48, + ["min"] = 11.5, + }, ["Dagger"] = { - ["max"] = 43.5, - ["min"] = 10.5, - }, + ["max"] = 48, + ["min"] = 11.5, + }, ["Staff"] = { - ["max"] = 80.5, - ["min"] = 19.5, - }, + ["max"] = 89.5, + ["min"] = 21.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", - }, - }, - ["1371_LocalColdDamageRanged"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Cold Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage (Local)", - ["type"] = "explicit", - }, - }, - ["1371_LocalColdDamageTwoHand"] = { + ["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", + }, + }, + ["1367_LocalFireDamageRanged"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1367_LocalFireDamageTwoHand"] = { ["1HAxe"] = { - ["max"] = 276, - ["min"] = 4, - }, + ["max"] = 307.5, + ["min"] = 4.5, + }, ["1HMace"] = { - ["max"] = 276, - ["min"] = 4, - }, + ["max"] = 307.5, + ["min"] = 4.5, + }, ["1HSword"] = { - ["max"] = 276, - ["min"] = 4, - }, + ["max"] = 307.5, + ["min"] = 4.5, + }, ["1HWeapon"] = { - ["max"] = 276, - ["min"] = 4, - }, + ["max"] = 307.5, + ["min"] = 4.5, + }, ["2HAxe"] = { - ["max"] = 276, - ["min"] = 4, - }, + ["max"] = 307.5, + ["min"] = 4.5, + }, ["2HMace"] = { - ["max"] = 276, - ["min"] = 4, - }, + ["max"] = 307.5, + ["min"] = 4.5, + }, ["2HSword"] = { - ["max"] = 276, - ["min"] = 4, - }, + ["max"] = 307.5, + ["min"] = 4.5, + }, ["2HWeapon"] = { - ["max"] = 276, - ["min"] = 4, - }, + ["max"] = 307.5, + ["min"] = 4.5, + }, ["Bow"] = { - ["max"] = 276, - ["min"] = 4, - }, + ["max"] = 307.5, + ["min"] = 4.5, + }, ["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", - }, - }, - ["1371_LocalColdDamageTwoHandAndPen"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Cold Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage (Local)", - ["type"] = "explicit", - }, - }, - ["1373_AddedFireDamageSpellsAndAttacks"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3964634628", - ["text"] = "Adds # to # Fire Damage to Spells and Attacks", - ["type"] = "explicit", - }, - }, - ["1374_AddedColdDamageToSpellsAndAttacks"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1662717006", - ["text"] = "Adds # to # Cold Damage to Spells and Attacks", - ["type"] = "explicit", - }, - }, - ["1376_ColdGemCastSpeedForJewel"] = { + ["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", + }, + }, + ["1367_LocalFireDamageTwoHandAndPen"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1368_AddedColdAndLightningDamage"] = { + ["Amulet"] = { + ["max"] = 14, + ["min"] = 7.5, + }, + ["Quiver"] = { + ["max"] = 14, + ["min"] = 7.5, + }, + ["Ring"] = { + ["max"] = 14, + ["min"] = 7.5, + }, + ["Shield"] = { + ["max"] = 14, + ["min"] = 7.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "explicit", + }, + }, + ["1368_AddedFireAndColdDamage"] = { + ["Amulet"] = { + ["max"] = 14, + ["min"] = 7.5, + }, + ["Quiver"] = { + ["max"] = 14, + ["min"] = 7.5, + }, + ["Ring"] = { + ["max"] = 14, + ["min"] = 7.5, + }, + ["Shield"] = { + ["max"] = 14, + ["min"] = 7.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "explicit", + }, + }, + ["1369_ColdDamage"] = { + ["Amulet"] = { + ["max"] = 21, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 13, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 32.5, + ["min"] = 12.5, + }, + ["Ring"] = { + ["max"] = 21, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4067062424", + ["text"] = "Adds # to # Cold Damage to Attacks", + ["type"] = "explicit", + }, + }, + ["1370_FireGemCastSpeedForJewel"] = { ["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", - }, - }, - ["1377_IncreasedFireAndLightningDamage"] = { - ["Ring"] = { - ["max"] = 16, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", - }, - }, - ["1377_LightningDamageAndChanceToShock"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1476643878", + ["text"] = "#% increased Cast Speed with Fire Skills", + ["type"] = "explicit", + }, + }, + ["1371_ColdDamageAndBaseChanceToFreeze"] = { ["1HAxe"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 109, + ["min"] = 70, + }, ["1HMace"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 109, + ["min"] = 70, + }, ["1HSword"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 109, + ["min"] = 70, + }, ["1HWeapon"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 109, + ["min"] = 70, + }, ["2HAxe"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 109, + ["min"] = 70, + }, ["2HMace"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 109, + ["min"] = 70, + }, ["2HSword"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 109, + ["min"] = 70, + }, ["2HWeapon"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 109, + ["min"] = 70, + }, ["Bow"] = { - ["max"] = 109, - ["min"] = 70, - }, + ["max"] = 109, + ["min"] = 70, + }, ["Claw"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 109, + ["min"] = 70, + }, ["Dagger"] = { - ["max"] = 109, - ["min"] = 36, - }, + ["max"] = 109, + ["min"] = 70, + }, ["Staff"] = { - ["max"] = 109, - ["min"] = 60, - }, + ["max"] = 109, + ["min"] = 70, + }, ["Wand"] = { - ["max"] = 109, - ["min"] = 36, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", - }, - }, - ["1377_LightningDamageForJewel"] = { + ["max"] = 109, + ["min"] = 70, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, + ["1371_ColdDamageForJewel"] = { ["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", - }, - }, - ["1377_LightningDamagePercentage"] = { - ["1HAxe"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, + ["1371_ColdDamagePercentage"] = { ["1HMace"] = { - ["max"] = 30, - ["min"] = 9, - }, - ["1HSword"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 30, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 9, - }, - ["2HAxe"] = { - ["max"] = 16, - ["min"] = 9, - }, - ["2HMace"] = { - ["max"] = 16, - ["min"] = 9, - }, - ["2HSword"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 30, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 9, - }, + ["max"] = 50, + ["min"] = 18, + }, ["Amulet"] = { - ["max"] = 34, - ["min"] = 9, - }, - ["Bow"] = { - ["max"] = 16, - ["min"] = 9, - }, - ["Claw"] = { - ["max"] = 16, - ["min"] = 9, - }, - ["Dagger"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 34, + ["min"] = 6, + }, ["Ring"] = { - ["max"] = 34, - ["min"] = 9, - }, + ["max"] = 34, + ["min"] = 6, + }, ["Staff"] = { - ["max"] = 50, - ["min"] = 9, - }, + ["max"] = 50, + ["min"] = 18, + }, ["Wand"] = { - ["max"] = 30, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", - }, - }, - ["1377_LightningDamagePercentagePrefix"] = { + ["max"] = 30, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, + ["1371_ColdDamagePercentagePrefix"] = { ["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", - }, - }, - ["1377_LightningDamagePrefixLightningPenetration"] = { - ["1HMace"] = { - ["max"] = 60, - ["min"] = 45, - }, + ["max"] = 30, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, + ["1371_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_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", - }, - }, - ["1377_LightningDamageWeaponPrefix"] = { + ["max"] = 60, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, + ["1371_ColdDamageWeaponPrefix"] = { + ["1HMace"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, + ["1371_ColdDamageWeaponPrefixAndFlat"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, + ["1371_LocalColdDamage"] = { ["1HAxe"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 57, + ["min"] = 15, + }, ["1HMace"] = { - ["max"] = 109, - ["min"] = 10, - }, + ["max"] = 57, + ["min"] = 15, + }, ["1HSword"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 57, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 109, - ["min"] = 10, - }, + ["max"] = 57, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 57, + ["min"] = 15, + }, ["Dagger"] = { - ["max"] = 54, - ["min"] = 25, - }, - ["Shield"] = { - ["max"] = 109, - ["min"] = 10, - }, + ["max"] = 57, + ["min"] = 15, + }, ["Wand"] = { - ["max"] = 109, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", - }, - }, - ["1377_LightningDamageWeaponPrefixAndFlat"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", - }, - }, - ["1377_LocalLightningDamageHybrid"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", - }, - }, - ["1377_SpellAddedLightningDamageHybrid"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", - }, - }, - ["1377_TwoHandLightningDamageWeaponPrefix"] = { + ["max"] = 57, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1371_LocalColdDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, + ["1371_LocalColdDamageTwoHand"] = { ["2HAxe"] = { - ["max"] = 81, - ["min"] = 37, - }, + ["max"] = 100, + ["min"] = 25.5, + }, ["2HMace"] = { - ["max"] = 81, - ["min"] = 37, - }, + ["max"] = 100, + ["min"] = 25.5, + }, ["2HSword"] = { - ["max"] = 81, - ["min"] = 37, - }, + ["max"] = 100, + ["min"] = 25.5, + }, ["2HWeapon"] = { - ["max"] = 164, - ["min"] = 15, - }, + ["max"] = 100, + ["min"] = 25.5, + }, + ["Bow"] = { + ["max"] = 100, + ["min"] = 25.5, + }, ["Staff"] = { - ["max"] = 164, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", - }, - }, - ["1377_TwoHandLightningDamageWeaponPrefixAndFlat"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", - }, - }, - ["1378_SelfColdAndLightningDamageTaken"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2923069345", - ["text"] = "Adds # to # Lightning Damage to Hits against you", - ["type"] = "explicit", - }, - }, - ["1378_SelfFireAndLightningDamageTaken"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2923069345", - ["text"] = "Adds # to # Lightning Damage to Hits against you", - ["type"] = "explicit", - }, - }, - ["1379_AddedColdAndLightningDamage"] = { + ["max"] = 100, + ["min"] = 25.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1371_SpellAddedColdDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, + ["1371_TwoHandColdDamageWeaponPrefix"] = { + ["2HWeapon"] = { + ["max"] = 164, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 164, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, + ["1371_TwoHandColdDamageWeaponPrefixAndFlat"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, + ["1372_SelfColdAndLightningDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3482587079", + ["text"] = "Adds # to # Cold Damage to Hits against you", + ["type"] = "explicit", + }, + }, + ["1372_SelfFireAndColdDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3482587079", + ["text"] = "Adds # to # Cold Damage to Hits against you", + ["type"] = "explicit", + }, + }, + ["1373_AddedColdAndLightningDamage"] = { ["Amulet"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 19, + ["min"] = 17, + }, ["Quiver"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 19, + ["min"] = 17, + }, ["Ring"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 19, + ["min"] = 17, + }, ["Shield"] = { - ["max"] = 19, - ["min"] = 7.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1334060246", - ["text"] = "Adds # to # Lightning Damage", - ["type"] = "explicit", - }, - }, - ["1379_AddedFireAndLightningDamage"] = { + ["max"] = 19, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "explicit", + }, + }, + ["1373_AddedFireAndColdDamage"] = { ["Amulet"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 19, + ["min"] = 17, + }, ["Quiver"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 19, + ["min"] = 17, + }, ["Ring"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["max"] = 19, + ["min"] = 17, + }, ["Shield"] = { - ["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", - }, - }, - ["1380_AddedLightningSuffix"] = { + ["max"] = 19, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "explicit", + }, + }, + ["1373_GlobalAddedColdDamage"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "explicit", + }, + }, + ["1374_AddedColdSuffix"] = { ["AbyssJewel"] = { - ["max"] = 26, - ["min"] = 10, - }, + ["max"] = 19.5, + ["min"] = 6, + }, ["AnyJewel"] = { - ["max"] = 26, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1754445556", - ["text"] = "Adds # to # Lightning Damage to Attacks", - ["type"] = "explicit", - }, - }, - ["1380_LightningDamage"] = { + ["max"] = 19.5, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4067062424", + ["text"] = "Adds # to # Cold Damage to Attacks", + ["type"] = "explicit", + }, + }, + ["1374_ColdDamage"] = { ["Amulet"] = { - ["max"] = 42, - ["min"] = 3, - }, + ["max"] = 34, + ["min"] = 1.5, + }, ["Gloves"] = { - ["max"] = 23.5, - ["min"] = 3, - }, + ["max"] = 18.5, + ["min"] = 1.5, + }, ["Quiver"] = { - ["max"] = 84, - ["min"] = 2, - }, + ["max"] = 68, + ["min"] = 2, + }, ["Ring"] = { - ["max"] = 42, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1754445556", - ["text"] = "Adds # to # Lightning Damage to Attacks", - ["type"] = "explicit", - }, - }, - ["1380_LightningDamagePhysConvertedToLightning"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1754445556", - ["text"] = "Adds # to # Lightning Damage to Attacks", - ["type"] = "explicit", - }, - }, - ["1381_SelfLightningDamageTaken"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2491363440", - ["text"] = "Adds # to # Lightning Damage to Attacks against you", - ["type"] = "explicit", - }, - }, - ["1382_LocalLightningDamage"] = { + ["max"] = 34, + ["min"] = 1.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4067062424", + ["text"] = "Adds # to # Cold Damage to Attacks", + ["type"] = "explicit", + }, + }, + ["1374_ColdDamagePhysConvertedToCold"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4067062424", + ["text"] = "Adds # to # Cold Damage to Attacks", + ["type"] = "explicit", + }, + }, + ["1375_SelfColdDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_617462123", + ["text"] = "Adds # to # Cold Damage to Attacks against you", + ["type"] = "explicit", + }, + }, + ["1376_LocalColdDamage"] = { ["1HAxe"] = { - ["max"] = 182.5, - ["min"] = 3, - }, + ["max"] = 150, + ["min"] = 2, + }, ["1HMace"] = { - ["max"] = 182.5, - ["min"] = 3, - }, + ["max"] = 150, + ["min"] = 2, + }, ["1HSword"] = { - ["max"] = 182.5, - ["min"] = 3, - }, + ["max"] = 150, + ["min"] = 2, + }, ["1HWeapon"] = { - ["max"] = 182.5, - ["min"] = 3, - }, + ["max"] = 150, + ["min"] = 2, + }, ["2HAxe"] = { - ["max"] = 182.5, - ["min"] = 3, - }, + ["max"] = 150, + ["min"] = 2, + }, ["2HMace"] = { - ["max"] = 182.5, - ["min"] = 3, - }, + ["max"] = 150, + ["min"] = 2, + }, ["2HSword"] = { - ["max"] = 182.5, - ["min"] = 3, - }, + ["max"] = 150, + ["min"] = 2, + }, ["2HWeapon"] = { - ["max"] = 182.5, - ["min"] = 3, - }, + ["max"] = 150, + ["min"] = 2, + }, ["Claw"] = { - ["max"] = 182.5, - ["min"] = 3, - }, + ["max"] = 150, + ["min"] = 2, + }, ["Dagger"] = { - ["max"] = 182.5, - ["min"] = 3, - }, + ["max"] = 150, + ["min"] = 2, + }, ["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", - }, - }, - ["1382_LocalLightningDamageAndPen"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Lightning Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage (Local)", - ["type"] = "explicit", - }, - }, - ["1382_LocalLightningDamageHybrid"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Lightning Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage (Local)", - ["type"] = "explicit", - }, - }, - ["1382_LocalLightningDamagePenetrationHybrid"] = { + ["max"] = 150, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1376_LocalColdDamageAndPen"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1376_LocalColdDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1376_LocalColdDamagePenetrationHybrid"] = { ["1HAxe"] = { - ["max"] = 53.5, - ["min"] = 13.5, - }, + ["max"] = 43.5, + ["min"] = 10.5, + }, ["1HMace"] = { - ["max"] = 53.5, - ["min"] = 13.5, - }, + ["max"] = 43.5, + ["min"] = 10.5, + }, ["1HSword"] = { - ["max"] = 53.5, - ["min"] = 13.5, - }, + ["max"] = 43.5, + ["min"] = 10.5, + }, ["1HWeapon"] = { - ["max"] = 53.5, - ["min"] = 13.5, - }, + ["max"] = 43.5, + ["min"] = 10.5, + }, ["2HAxe"] = { - ["max"] = 99, - ["min"] = 13.5, - }, + ["max"] = 80.5, + ["min"] = 10.5, + }, ["2HMace"] = { - ["max"] = 99, - ["min"] = 13.5, - }, + ["max"] = 80.5, + ["min"] = 10.5, + }, ["2HSword"] = { - ["max"] = 99, - ["min"] = 13.5, - }, + ["max"] = 80.5, + ["min"] = 10.5, + }, ["2HWeapon"] = { - ["max"] = 99, - ["min"] = 13.5, - }, + ["max"] = 80.5, + ["min"] = 10.5, + }, ["Bow"] = { - ["max"] = 53.5, - ["min"] = 13.5, - }, + ["max"] = 43.5, + ["min"] = 10.5, + }, ["Claw"] = { - ["max"] = 53.5, - ["min"] = 13.5, - }, + ["max"] = 43.5, + ["min"] = 10.5, + }, ["Dagger"] = { - ["max"] = 53.5, - ["min"] = 13.5, - }, + ["max"] = 43.5, + ["min"] = 10.5, + }, ["Staff"] = { - ["max"] = 99, - ["min"] = 24.5, - }, + ["max"] = 80.5, + ["min"] = 19.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", - }, - }, - ["1382_LocalLightningDamageRanged"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Lightning Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage (Local)", - ["type"] = "explicit", - }, - }, - ["1382_LocalLightningDamageTwoHand"] = { + ["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", + }, + }, + ["1376_LocalColdDamageRanged"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1376_LocalColdDamageTwoHand"] = { ["1HAxe"] = { - ["max"] = 338, - ["min"] = 6, - }, + ["max"] = 276, + ["min"] = 4, + }, ["1HMace"] = { - ["max"] = 338, - ["min"] = 6, - }, + ["max"] = 276, + ["min"] = 4, + }, ["1HSword"] = { - ["max"] = 338, - ["min"] = 6, - }, + ["max"] = 276, + ["min"] = 4, + }, ["1HWeapon"] = { - ["max"] = 338, - ["min"] = 6, - }, + ["max"] = 276, + ["min"] = 4, + }, ["2HAxe"] = { - ["max"] = 338, - ["min"] = 6, - }, + ["max"] = 276, + ["min"] = 4, + }, ["2HMace"] = { - ["max"] = 338, - ["min"] = 6, - }, + ["max"] = 276, + ["min"] = 4, + }, ["2HSword"] = { - ["max"] = 338, - ["min"] = 6, - }, + ["max"] = 276, + ["min"] = 4, + }, ["2HWeapon"] = { - ["max"] = 338, - ["min"] = 6, - }, + ["max"] = 276, + ["min"] = 4, + }, ["Bow"] = { - ["max"] = 338, - ["min"] = 6, - }, + ["max"] = 276, + ["min"] = 4, + }, ["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", - }, - }, - ["1382_LocalLightningDamageTwoHandAndPen"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Lightning Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage (Local)", - ["type"] = "explicit", - }, - }, - ["1384_LightningGemCastSpeedForJewel"] = { - ["AnyJewel"] = { - ["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", - }, - }, - ["1385_ChaosDamageAndChaosSkillDuration"] = { + ["max"] = 276, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1376_LocalColdDamageTwoHandAndPen"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1377_IncreasedFireAndLightningDamage"] = { + ["Ring"] = { + ["max"] = 16, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1377_LightningDamageAndChanceToShock"] = { ["1HAxe"] = { - ["max"] = 99, - ["min"] = 35, - }, + ["max"] = 60, + ["min"] = 36, + }, ["1HMace"] = { - ["max"] = 99, - ["min"] = 35, - }, + ["max"] = 60, + ["min"] = 36, + }, ["1HSword"] = { - ["max"] = 99, - ["min"] = 35, - }, + ["max"] = 60, + ["min"] = 36, + }, ["1HWeapon"] = { - ["max"] = 99, - ["min"] = 35, - }, + ["max"] = 60, + ["min"] = 36, + }, ["2HAxe"] = { - ["max"] = 99, - ["min"] = 53, - }, + ["max"] = 80, + ["min"] = 60, + }, ["2HMace"] = { - ["max"] = 99, - ["min"] = 53, - }, + ["max"] = 80, + ["min"] = 60, + }, ["2HSword"] = { - ["max"] = 99, - ["min"] = 53, - }, + ["max"] = 80, + ["min"] = 60, + }, ["2HWeapon"] = { - ["max"] = 99, - ["min"] = 53, - }, - ["Bow"] = { - ["max"] = 99, - ["min"] = 60, - }, + ["max"] = 80, + ["min"] = 60, + }, ["Claw"] = { - ["max"] = 99, - ["min"] = 35, - }, + ["max"] = 60, + ["min"] = 36, + }, ["Dagger"] = { - ["max"] = 99, - ["min"] = 35, - }, + ["max"] = 60, + ["min"] = 36, + }, ["Staff"] = { - ["max"] = 99, - ["min"] = 53, - }, + ["max"] = 80, + ["min"] = 60, + }, ["Wand"] = { - ["max"] = 99, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "explicit", - }, - }, - ["1385_ChaosDamageForJewel"] = { - ["AnyJewel"] = { - ["max"] = 13, - ["min"] = 9, - }, - ["BaseJewel"] = { - ["max"] = 13, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "explicit", - }, - }, - ["1385_ChaosDamageWeaponPrefix"] = { + ["max"] = 60, + ["min"] = 36, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1377_LightningDamagePercentage"] = { ["1HAxe"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 16, + ["min"] = 9, + }, ["1HMace"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 16, + ["min"] = 9, + }, ["1HSword"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 16, + ["min"] = 9, + }, ["1HWeapon"] = { - ["max"] = 54, - ["min"] = 25, - }, - ["Claw"] = { - ["max"] = 54, - ["min"] = 25, - }, - ["Dagger"] = { - ["max"] = 54, - ["min"] = 25, - }, - ["Wand"] = { - ["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", - }, - }, - ["1385_IncreasedChaosDamage"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["2HAxe"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["2HMace"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["2HSword"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["2HWeapon"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["Amulet"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["Bow"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["Claw"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["Dagger"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["Ring"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["Staff"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["Wand"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1377_LightningDamageWeaponPrefix"] = { ["1HAxe"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 54, + ["min"] = 25, + }, ["1HMace"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 54, + ["min"] = 25, + }, ["1HSword"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 54, + ["min"] = 25, + }, ["1HWeapon"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 54, + ["min"] = 25, + }, + ["Claw"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["Dagger"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1377_TwoHandLightningDamageWeaponPrefix"] = { ["2HAxe"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 81, + ["min"] = 37, + }, ["2HMace"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 81, + ["min"] = 37, + }, ["2HSword"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 81, + ["min"] = 37, + }, ["2HWeapon"] = { - ["max"] = 16, - ["min"] = 9, - }, - ["AbyssJewel"] = { - ["max"] = 19, - ["min"] = 13, - }, + ["max"] = 81, + ["min"] = 37, + }, + ["Staff"] = { + ["max"] = 81, + ["min"] = 37, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1378_AddedFireDamageSpellsAndAttacks"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3964634628", + ["text"] = "Adds # to # Fire Damage to Spells and Attacks", + ["type"] = "explicit", + }, + }, + ["1379_AddedColdAndLightningDamage"] = { + ["Amulet"] = { + ["max"] = 12.5, + ["min"] = 7.5, + }, + ["Quiver"] = { + ["max"] = 12.5, + ["min"] = 7.5, + }, + ["Ring"] = { + ["max"] = 12.5, + ["min"] = 7.5, + }, + ["Shield"] = { + ["max"] = 12.5, + ["min"] = 7.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1334060246", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1379_AddedColdDamageToSpellsAndAttacks"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1662717006", + ["text"] = "Adds # to # Cold Damage to Spells and Attacks", + ["type"] = "explicit", + }, + }, + ["1379_AddedFireAndLightningDamage"] = { + ["Amulet"] = { + ["max"] = 12.5, + ["min"] = 7.5, + }, + ["Quiver"] = { + ["max"] = 12.5, + ["min"] = 7.5, + }, + ["Ring"] = { + ["max"] = 12.5, + ["min"] = 7.5, + }, + ["Shield"] = { + ["max"] = 12.5, + ["min"] = 7.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1334060246", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1380_LightningDamage"] = { ["Amulet"] = { - ["max"] = 34, - ["min"] = 9, - }, + ["max"] = 26.5, + ["min"] = 16.5, + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 16.5, + }, + ["Quiver"] = { + ["max"] = 38, + ["min"] = 16.5, + }, + ["Ring"] = { + ["max"] = 26.5, + ["min"] = 16.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1754445556", + ["text"] = "Adds # to # Lightning Damage to Attacks", + ["type"] = "explicit", + }, + }, + ["1381_ColdGemCastSpeedForJewel"] = { ["AnyJewel"] = { - ["max"] = 19, - ["min"] = 13, - }, + ["max"] = 5, + ["min"] = 3, + }, ["BaseJewel"] = { - ["max"] = 19, - ["min"] = 13, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_928238845", + ["text"] = "#% increased Cast Speed with Cold Skills", + ["type"] = "explicit", + }, + }, + ["1382_IncreasedFireAndLightningDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1382_LightningDamageAndChanceToShock"] = { + ["1HAxe"] = { + ["max"] = 109, + ["min"] = 70, + }, + ["1HMace"] = { + ["max"] = 109, + ["min"] = 70, + }, + ["1HSword"] = { + ["max"] = 109, + ["min"] = 70, + }, + ["1HWeapon"] = { + ["max"] = 109, + ["min"] = 70, + }, + ["2HAxe"] = { + ["max"] = 109, + ["min"] = 70, + }, + ["2HMace"] = { + ["max"] = 109, + ["min"] = 70, + }, + ["2HSword"] = { + ["max"] = 109, + ["min"] = 70, + }, + ["2HWeapon"] = { + ["max"] = 109, + ["min"] = 70, + }, ["Bow"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 109, + ["min"] = 70, + }, ["Claw"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 109, + ["min"] = 70, + }, ["Dagger"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 109, + ["min"] = 70, + }, + ["Staff"] = { + ["max"] = 109, + ["min"] = 70, + }, + ["Wand"] = { + ["max"] = 109, + ["min"] = 70, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1382_LightningDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1382_LightningDamagePercentage"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 18, + }, + ["Amulet"] = { + ["max"] = 34, + ["min"] = 10, + }, ["Ring"] = { - ["max"] = 34, - ["min"] = 9, - }, + ["max"] = 34, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 16, - ["min"] = 9, - }, + ["max"] = 50, + ["min"] = 18, + }, ["Wand"] = { - ["max"] = 16, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "explicit", - }, - }, - ["1385_IncreasedChaosDamagePrefix"] = { + ["max"] = 30, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1382_LightningDamagePercentagePrefix"] = { ["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", - }, - }, - ["1385_LocalChanceToPoisonOnHitChaosDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "explicit", - }, - }, - ["1385_LocalChaosDamageHybrid"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "explicit", - }, - }, - ["1385_PoisonDurationChaosDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "explicit", - }, - }, - ["1385_SpellAddedChaosDamageHybrid"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "explicit", - }, - }, - ["1385_TwoHandChaosDamageWeaponPrefix"] = { + ["max"] = 30, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1382_LightningDamagePrefixLightningPenetration"] = { + ["1HMace"] = { + ["max"] = 60, + ["min"] = 45, + }, + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 45, + }, + ["Dagger"] = { + ["max"] = 60, + ["min"] = 45, + }, + ["Wand"] = { + ["max"] = 60, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1382_LightningDamageWeaponPrefix"] = { + ["1HMace"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1382_LightningDamageWeaponPrefixAndFlat"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1382_LocalLightningDamage"] = { + ["1HAxe"] = { + ["max"] = 60.5, + ["min"] = 14, + }, + ["1HMace"] = { + ["max"] = 60.5, + ["min"] = 14, + }, + ["1HSword"] = { + ["max"] = 60.5, + ["min"] = 14, + }, + ["1HWeapon"] = { + ["max"] = 60.5, + ["min"] = 14, + }, + ["Claw"] = { + ["max"] = 60.5, + ["min"] = 14, + }, + ["Dagger"] = { + ["max"] = 60.5, + ["min"] = 14, + }, + ["Wand"] = { + ["max"] = 60.5, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1382_LocalLightningDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1382_LocalLightningDamageTwoHand"] = { ["2HAxe"] = { - ["max"] = 81, - ["min"] = 37, - }, + ["max"] = 105.5, + ["min"] = 24, + }, ["2HMace"] = { - ["max"] = 81, - ["min"] = 37, - }, + ["max"] = 105.5, + ["min"] = 24, + }, ["2HSword"] = { - ["max"] = 81, - ["min"] = 37, - }, + ["max"] = 105.5, + ["min"] = 24, + }, + ["2HWeapon"] = { + ["max"] = 105.5, + ["min"] = 24, + }, + ["Bow"] = { + ["max"] = 105.5, + ["min"] = 24, + }, + ["Staff"] = { + ["max"] = 105.5, + ["min"] = 24, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1382_SpellAddedLightningDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1382_TwoHandLightningDamageWeaponPrefix"] = { ["2HWeapon"] = { - ["max"] = 81, - ["min"] = 37, - }, + ["max"] = 164, + ["min"] = 15, + }, ["Staff"] = { - ["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", - }, - }, - ["1387_AddedChaosSuffix"] = { + ["max"] = 164, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1382_TwoHandLightningDamageWeaponPrefixAndFlat"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1383_SelfColdAndLightningDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2923069345", + ["text"] = "Adds # to # Lightning Damage to Hits against you", + ["type"] = "explicit", + }, + }, + ["1383_SelfFireAndLightningDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2923069345", + ["text"] = "Adds # to # Lightning Damage to Hits against you", + ["type"] = "explicit", + }, + }, + ["1384_AddedColdAndLightningDamage"] = { + ["Amulet"] = { + ["max"] = 19, + ["min"] = 17, + }, + ["Quiver"] = { + ["max"] = 19, + ["min"] = 17, + }, + ["Ring"] = { + ["max"] = 19, + ["min"] = 17, + }, + ["Shield"] = { + ["max"] = 19, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1334060246", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1384_AddedFireAndLightningDamage"] = { + ["Amulet"] = { + ["max"] = 19, + ["min"] = 17, + }, + ["Quiver"] = { + ["max"] = 19, + ["min"] = 17, + }, + ["Ring"] = { + ["max"] = 19, + ["min"] = 17, + }, + ["Shield"] = { + ["max"] = 19, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1334060246", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1384_GlobalAddedLightningDamage"] = { + ["Gloves"] = { + ["max"] = 30.5, + ["min"] = 24.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1334060246", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1385_AddedLightningSuffix"] = { ["AbyssJewel"] = { - ["max"] = 16, - ["min"] = 8.5, - }, + ["max"] = 26, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 8.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_674553446", - ["text"] = "Adds # to # Chaos 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", + }, + }, + ["1385_ChaosDamageAndChaosSkillDuration"] = { + ["1HAxe"] = { + ["max"] = 50, + ["min"] = 35, + }, + ["1HMace"] = { + ["max"] = 50, + ["min"] = 35, + }, + ["1HSword"] = { + ["max"] = 50, + ["min"] = 35, + }, + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 35, + }, + ["2HAxe"] = { + ["max"] = 75, + ["min"] = 53, + }, + ["2HMace"] = { + ["max"] = 75, + ["min"] = 53, + }, + ["2HSword"] = { + ["max"] = 75, + ["min"] = 53, + }, + ["2HWeapon"] = { + ["max"] = 75, + ["min"] = 53, + }, + ["Claw"] = { + ["max"] = 50, + ["min"] = 35, + }, + ["Dagger"] = { + ["max"] = 50, + ["min"] = 35, + }, + ["Staff"] = { + ["max"] = 75, + ["min"] = 53, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, + ["1385_ChaosDamageWeaponPrefix"] = { + ["1HAxe"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["1HMace"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["1HSword"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["1HWeapon"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["Claw"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["Dagger"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["Wand"] = { + ["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", + }, + }, + ["1385_IncreasedChaosDamage"] = { + ["1HAxe"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["1HMace"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["1HSword"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["1HWeapon"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["2HAxe"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["2HMace"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["2HSword"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["2HWeapon"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["Amulet"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["Bow"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["Claw"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["Dagger"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["Ring"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["Staff"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["Wand"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, + ["1385_LightningDamage"] = { + ["Amulet"] = { + ["max"] = 42, + ["min"] = 3, + }, + ["Gloves"] = { + ["max"] = 23.5, + ["min"] = 3, + }, + ["Quiver"] = { + ["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", + }, + }, + ["1385_LightningDamagePhysConvertedToLightning"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1754445556", + ["text"] = "Adds # to # Lightning Damage to Attacks", + ["type"] = "explicit", + }, + }, + ["1385_TwoHandChaosDamageWeaponPrefix"] = { + ["2HAxe"] = { + ["max"] = 81, + ["min"] = 37, + }, + ["2HMace"] = { + ["max"] = 81, + ["min"] = 37, + }, + ["2HSword"] = { + ["max"] = 81, + ["min"] = 37, + }, + ["2HWeapon"] = { + ["max"] = 81, + ["min"] = 37, + }, + ["Staff"] = { + ["max"] = 81, + ["min"] = 37, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, + ["1386_SelfLightningDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2491363440", + ["text"] = "Adds # to # Lightning Damage to Attacks against you", + ["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"] = 21, + ["min"] = 10, + }, ["Ring"] = { - ["max"] = 21, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_674553446", - ["text"] = "Adds # to # Chaos Damage to Attacks", - ["type"] = "explicit", - }, - }, - ["1390_LocalChaosDamage"] = { + ["max"] = 21, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", + ["type"] = "explicit", + }, + }, + ["1387_LocalLightningDamage"] = { ["1HAxe"] = { - ["max"] = 123.5, - ["min"] = 58, - }, + ["max"] = 182.5, + ["min"] = 3, + }, ["1HMace"] = { - ["max"] = 123.5, - ["min"] = 58, - }, + ["max"] = 182.5, + ["min"] = 3, + }, ["1HSword"] = { - ["max"] = 123.5, - ["min"] = 58, - }, + ["max"] = 182.5, + ["min"] = 3, + }, ["1HWeapon"] = { - ["max"] = 123.5, - ["min"] = 58, - }, + ["max"] = 182.5, + ["min"] = 3, + }, ["2HAxe"] = { - ["max"] = 123.5, - ["min"] = 80.5, - }, + ["max"] = 182.5, + ["min"] = 3, + }, ["2HMace"] = { - ["max"] = 123.5, - ["min"] = 80.5, - }, + ["max"] = 182.5, + ["min"] = 3, + }, ["2HSword"] = { - ["max"] = 123.5, - ["min"] = 80.5, - }, + ["max"] = 182.5, + ["min"] = 3, + }, ["2HWeapon"] = { - ["max"] = 123.5, - ["min"] = 80.5, - }, + ["max"] = 182.5, + ["min"] = 3, + }, ["Claw"] = { - ["max"] = 123.5, - ["min"] = 58, - }, + ["max"] = 182.5, + ["min"] = 3, + }, ["Dagger"] = { - ["max"] = 123.5, - ["min"] = 58, - }, + ["max"] = 182.5, + ["min"] = 3, + }, ["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"] = 182.5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1387_LocalLightningDamageAndPen"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1387_LocalLightningDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1387_LocalLightningDamagePenetrationHybrid"] = { + ["1HAxe"] = { + ["max"] = 53.5, + ["min"] = 13.5, + }, + ["1HMace"] = { + ["max"] = 53.5, + ["min"] = 13.5, + }, + ["1HSword"] = { + ["max"] = 53.5, + ["min"] = 13.5, + }, + ["1HWeapon"] = { + ["max"] = 53.5, + ["min"] = 13.5, + }, + ["2HAxe"] = { + ["max"] = 99, + ["min"] = 13.5, + }, + ["2HMace"] = { + ["max"] = 99, + ["min"] = 13.5, + }, + ["2HSword"] = { + ["max"] = 99, + ["min"] = 13.5, + }, + ["2HWeapon"] = { + ["max"] = 99, + ["min"] = 13.5, + }, + ["Bow"] = { + ["max"] = 53.5, + ["min"] = 13.5, + }, + ["Claw"] = { + ["max"] = 53.5, + ["min"] = 13.5, + }, + ["Dagger"] = { + ["max"] = 53.5, + ["min"] = 13.5, + }, + ["Staff"] = { + ["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", + }, + }, + ["1387_LocalLightningDamageRanged"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1387_LocalLightningDamageTwoHand"] = { + ["1HAxe"] = { + ["max"] = 338, + ["min"] = 6, + }, + ["1HMace"] = { + ["max"] = 338, + ["min"] = 6, + }, + ["1HSword"] = { + ["max"] = 338, + ["min"] = 6, + }, + ["1HWeapon"] = { + ["max"] = 338, + ["min"] = 6, + }, + ["2HAxe"] = { + ["max"] = 338, + ["min"] = 6, + }, + ["2HMace"] = { + ["max"] = 338, + ["min"] = 6, + }, + ["2HSword"] = { + ["max"] = 338, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 338, + ["min"] = 6, + }, + ["Bow"] = { + ["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", + }, + }, + ["1387_LocalLightningDamageTwoHandAndPen"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1389_LightningGemCastSpeedForJewel"] = { + ["AnyJewel"] = { + ["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", + }, + }, + ["1390_ChaosDamageAndChaosSkillDuration"] = { + ["1HAxe"] = { + ["max"] = 99, + ["min"] = 60, + }, + ["1HMace"] = { + ["max"] = 99, + ["min"] = 60, + }, + ["1HSword"] = { + ["max"] = 99, + ["min"] = 60, + }, + ["1HWeapon"] = { + ["max"] = 99, + ["min"] = 60, + }, + ["2HAxe"] = { + ["max"] = 99, + ["min"] = 60, + }, + ["2HMace"] = { + ["max"] = 99, + ["min"] = 60, + }, + ["2HSword"] = { + ["max"] = 99, + ["min"] = 60, + }, + ["2HWeapon"] = { + ["max"] = 99, + ["min"] = 60, + }, + ["Bow"] = { + ["max"] = 99, + ["min"] = 60, + }, + ["Claw"] = { + ["max"] = 99, + ["min"] = 60, + }, + ["Dagger"] = { + ["max"] = 99, + ["min"] = 60, + }, + ["Staff"] = { + ["max"] = 99, + ["min"] = 60, + }, + ["Wand"] = { + ["max"] = 99, + ["min"] = 60, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, + ["1390_ChaosDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 13, + ["min"] = 9, + }, + ["BaseJewel"] = { + ["max"] = 13, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, + ["1390_IncreasedChaosAndPhysicalDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, + ["1390_IncreasedChaosDamage"] = { + ["AbyssJewel"] = { + ["max"] = 19, + ["min"] = 13, + }, + ["Amulet"] = { + ["max"] = 34, + ["min"] = 23, + }, + ["AnyJewel"] = { + ["max"] = 19, + ["min"] = 13, + }, + ["BaseJewel"] = { + ["max"] = 19, + ["min"] = 13, + }, + ["Ring"] = { + ["max"] = 34, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, + ["1390_IncreasedChaosDamagePrefix"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Belt"] = { + ["max"] = 30, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, + ["1390_LocalChanceToPoisonOnHitChaosDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, ["1390_LocalChaosDamageHybrid"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Chaos Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2223678961", - ["text"] = "Adds # to # Chaos Damage (Local)", - ["type"] = "explicit", - }, - }, - ["1390_LocalChaosDamagePenetrationHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, + ["1390_PoisonDurationChaosDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, + ["1390_SpellAddedChaosDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, + ["1391_GlobalAddedChaosDamage"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3531280422", + ["text"] = "Adds # to # Chaos Damage", + ["type"] = "explicit", + }, + }, + ["1392_AddedChaosSuffix"] = { + ["AbyssJewel"] = { + ["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", + }, + }, + ["1392_ChaosDamage"] = { + ["Quiver"] = { + ["max"] = 55, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", + ["type"] = "explicit", + }, + }, + ["1395_LocalChaosDamage"] = { ["1HAxe"] = { - ["max"] = 34.5, - ["min"] = 8, - }, + ["max"] = 123.5, + ["min"] = 58, + }, ["1HMace"] = { - ["max"] = 34.5, - ["min"] = 8, - }, + ["max"] = 123.5, + ["min"] = 58, + }, ["1HSword"] = { - ["max"] = 34.5, - ["min"] = 8, - }, + ["max"] = 123.5, + ["min"] = 58, + }, ["1HWeapon"] = { - ["max"] = 34.5, - ["min"] = 8, - }, + ["max"] = 123.5, + ["min"] = 58, + }, ["2HAxe"] = { - ["max"] = 64.5, - ["min"] = 8, - }, + ["max"] = 123.5, + ["min"] = 80.5, + }, ["2HMace"] = { - ["max"] = 64.5, - ["min"] = 8, - }, + ["max"] = 123.5, + ["min"] = 80.5, + }, ["2HSword"] = { - ["max"] = 64.5, - ["min"] = 8, - }, + ["max"] = 123.5, + ["min"] = 80.5, + }, ["2HWeapon"] = { - ["max"] = 64.5, - ["min"] = 8, - }, + ["max"] = 123.5, + ["min"] = 80.5, + }, + ["Claw"] = { + ["max"] = 123.5, + ["min"] = 58, + }, + ["Dagger"] = { + ["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", + }, + }, + ["1395_LocalChaosDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1395_LocalChaosDamagePenetrationHybrid"] = { + ["1HAxe"] = { + ["max"] = 34.5, + ["min"] = 8, + }, + ["1HMace"] = { + ["max"] = 34.5, + ["min"] = 8, + }, + ["1HSword"] = { + ["max"] = 34.5, + ["min"] = 8, + }, + ["1HWeapon"] = { + ["max"] = 34.5, + ["min"] = 8, + }, + ["2HAxe"] = { + ["max"] = 64.5, + ["min"] = 8, + }, + ["2HMace"] = { + ["max"] = 64.5, + ["min"] = 8, + }, + ["2HSword"] = { + ["max"] = 64.5, + ["min"] = 8, + }, + ["2HWeapon"] = { + ["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", - }, - }, - ["1390_LocalChaosDamageTwoHand"] = { + ["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", + }, + }, + ["1395_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", + }, + }, + ["1395_LocalIncreasedAttackSpeedAddedChaos"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1395_PoisonDamageAddedChaosToAttacks"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3531280422", + ["text"] = "Adds # to # Chaos Damage", + ["type"] = "explicit", + }, + }, + ["1404_SpellAddedFireDamage"] = { + ["1HAxe"] = { + ["max"] = 56, + ["min"] = 17.5, + }, + ["1HMace"] = { + ["max"] = 56, + ["min"] = 17.5, + }, + ["1HSword"] = { + ["max"] = 56, + ["min"] = 17.5, + }, + ["1HWeapon"] = { + ["max"] = 56, + ["min"] = 17.5, + }, + ["Claw"] = { + ["max"] = 56, + ["min"] = 17.5, + }, + ["Dagger"] = { + ["max"] = 56, + ["min"] = 17.5, + }, + ["Wand"] = { + ["max"] = 56, + ["min"] = 17.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1404_SpellAddedFireDamageTwoHand"] = { + ["2HAxe"] = { + ["max"] = 75.5, + ["min"] = 23.5, + }, + ["2HMace"] = { + ["max"] = 75.5, + ["min"] = 23.5, + }, + ["2HSword"] = { + ["max"] = 75.5, + ["min"] = 23.5, + }, + ["2HWeapon"] = { + ["max"] = 75.5, + ["min"] = 23.5, + }, ["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", - }, - }, - ["1390_LocalIncreasedAttackSpeedAddedChaos"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Chaos Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2223678961", - ["text"] = "Adds # to # Chaos Damage (Local)", - ["type"] = "explicit", - }, - }, - ["1390_PoisonDamageAddedChaosToAttacks"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3531280422", - ["text"] = "Adds # to # Chaos Damage", - ["type"] = "explicit", - }, - }, - ["1403_SpellAddedPhysicalDamage"] = { + ["max"] = 75.5, + ["min"] = 23.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1405_SpellAddedColdDamage"] = { + ["1HAxe"] = { + ["max"] = 45.5, + ["min"] = 14.5, + }, ["1HMace"] = { - ["max"] = 60, - ["min"] = 34, - }, + ["max"] = 45.5, + ["min"] = 14.5, + }, + ["1HSword"] = { + ["max"] = 45.5, + ["min"] = 14.5, + }, ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 34, - }, + ["max"] = 45.5, + ["min"] = 14.5, + }, + ["Claw"] = { + ["max"] = 45.5, + ["min"] = 14.5, + }, + ["Dagger"] = { + ["max"] = 45.5, + ["min"] = 14.5, + }, + ["Wand"] = { + ["max"] = 45.5, + ["min"] = 14.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1405_SpellAddedColdDamageTwoHand"] = { + ["2HAxe"] = { + ["max"] = 69, + ["min"] = 21, + }, + ["2HMace"] = { + ["max"] = 69, + ["min"] = 21, + }, + ["2HSword"] = { + ["max"] = 69, + ["min"] = 21, + }, ["2HWeapon"] = { - ["max"] = 97.5, - ["min"] = 56, - }, + ["max"] = 69, + ["min"] = 21, + }, + ["Staff"] = { + ["max"] = 69, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1406_SpellAddedLightningDamage"] = { + ["1HAxe"] = { + ["max"] = 60.5, + ["min"] = 20, + }, + ["1HMace"] = { + ["max"] = 60.5, + ["min"] = 20, + }, + ["1HSword"] = { + ["max"] = 60.5, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 60.5, + ["min"] = 20, + }, + ["Claw"] = { + ["max"] = 60.5, + ["min"] = 20, + }, ["Dagger"] = { - ["max"] = 60, - ["min"] = 34, - }, + ["max"] = 60.5, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 60.5, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1406_SpellAddedLightningDamageTwoHand"] = { + ["2HAxe"] = { + ["max"] = 90.5, + ["min"] = 30, + }, + ["2HMace"] = { + ["max"] = 90.5, + ["min"] = 30, + }, + ["2HSword"] = { + ["max"] = 90.5, + ["min"] = 30, + }, + ["2HWeapon"] = { + ["max"] = 90.5, + ["min"] = 30, + }, + ["Staff"] = { + ["max"] = 90.5, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1408_SpellAddedPhysicalDamage"] = { + ["1HMace"] = { + ["max"] = 60, + ["min"] = 34, + }, + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 34, + }, + ["2HWeapon"] = { + ["max"] = 97.5, + ["min"] = 56, + }, + ["Dagger"] = { + ["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", - }, - }, - ["1403_SpellAddedPhysicalDamageHybrid"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2435536961", - ["text"] = "Adds # to # Physical Damage to Spells", - ["type"] = "explicit", - }, - }, - ["1403_SpellAddedPhysicalSuffix"] = { + ["max"] = 60, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2435536961", + ["text"] = "Adds # to # Physical Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1408_SpellAddedPhysicalDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2435536961", + ["text"] = "Adds # to # Physical Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1408_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", - }, - }, - ["1404_FireDamageWeaponPrefixAndFlat"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", - ["type"] = "explicit", - }, - }, - ["1404_SpellAddedFireDamage"] = { + ["max"] = 19, + ["min"] = 4.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2435536961", + ["text"] = "Adds # to # Physical Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1409_FireDamageWeaponPrefixAndFlat"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1409_SpellAddedFireDamage"] = { ["1HAxe"] = { - ["max"] = 90.5, - ["min"] = 17.5, - }, + ["max"] = 90.5, + ["min"] = 36, + }, ["1HMace"] = { - ["max"] = 90.5, - ["min"] = 2, - }, + ["max"] = 90.5, + ["min"] = 2, + }, ["1HSword"] = { - ["max"] = 90.5, - ["min"] = 17.5, - }, + ["max"] = 90.5, + ["min"] = 36, + }, ["1HWeapon"] = { - ["max"] = 90.5, - ["min"] = 2, - }, + ["max"] = 90.5, + ["min"] = 2, + }, ["Claw"] = { - ["max"] = 90.5, - ["min"] = 17.5, - }, + ["max"] = 90.5, + ["min"] = 36, + }, ["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", - }, - }, - ["1404_SpellAddedFireDamageHybrid"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", - ["type"] = "explicit", - }, - }, - ["1404_SpellAddedFireDamagePenetrationHybrid"] = { + ["max"] = 90.5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1409_SpellAddedFireDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1409_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", - }, - }, - ["1404_SpellAddedFireDamageTwoHand"] = { + ["max"] = 38.5, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1409_SpellAddedFireDamageTwoHand"] = { ["2HAxe"] = { - ["max"] = 121.5, - ["min"] = 23.5, - }, + ["max"] = 121.5, + ["min"] = 48.5, + }, ["2HMace"] = { - ["max"] = 121.5, - ["min"] = 23.5, - }, + ["max"] = 121.5, + ["min"] = 48.5, + }, ["2HSword"] = { - ["max"] = 121.5, - ["min"] = 23.5, - }, + ["max"] = 121.5, + ["min"] = 48.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", - }, - }, - ["1404_SpellAddedFireDamageUber"] = { + ["max"] = 121.5, + ["min"] = 2.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1409_SpellAddedFireDamageUber"] = { ["Helmet"] = { - ["max"] = 61, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", - ["type"] = "explicit", - }, - }, - ["1404_SpellAddedFireSuffix"] = { + ["max"] = 61, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1409_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", - }, - }, - ["1404_TwoHandFireDamageWeaponPrefixAndFlat"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", - ["type"] = "explicit", - }, - }, - ["1405_ColdDamageWeaponPrefixAndFlat"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", - ["type"] = "explicit", - }, - }, - ["1405_SpellAddedColdDamage"] = { + ["max"] = 27.5, + ["min"] = 7.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1409_TwoHandFireDamageWeaponPrefixAndFlat"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1410_ColdDamageWeaponPrefixAndFlat"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1410_IncreasedAttackSpeed"] = { + ["Gloves"] = { + ["max"] = 12, + ["min"] = 7, + }, + ["Quiver"] = { + ["max"] = 12, + ["min"] = 7, + }, + ["Ring"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["Shield"] = { + ["max"] = 12, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "explicit", + }, + }, + ["1410_SpellAddedColdDamage"] = { ["1HAxe"] = { - ["max"] = 73.5, - ["min"] = 14.5, - }, + ["max"] = 73.5, + ["min"] = 16.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"] = 16.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"] = 16.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", - }, - }, - ["1405_SpellAddedColdDamageHybrid"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", - ["type"] = "explicit", - }, - }, - ["1405_SpellAddedColdDamagePenetrationHybrid"] = { + ["max"] = 73.5, + ["min"] = 1.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1410_SpellAddedColdDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1410_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", - }, - }, - ["1405_SpellAddedColdDamageTwoHand"] = { + ["max"] = 31.5, + ["min"] = 7.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1410_SpellAddedColdDamageTwoHand"] = { ["2HAxe"] = { - ["max"] = 110.5, - ["min"] = 21, - }, + ["max"] = 110.5, + ["min"] = 24.5, + }, ["2HMace"] = { - ["max"] = 110.5, - ["min"] = 21, - }, + ["max"] = 110.5, + ["min"] = 24.5, + }, ["2HSword"] = { - ["max"] = 110.5, - ["min"] = 21, - }, + ["max"] = 110.5, + ["min"] = 24.5, + }, ["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", - }, - }, - ["1405_SpellAddedColdDamageUber"] = { + ["max"] = 110.5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1410_SpellAddedColdDamageUber"] = { ["Helmet"] = { - ["max"] = 50, - ["min"] = 20.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", - ["type"] = "explicit", - }, - }, - ["1405_SpellAddedColdSuffix"] = { + ["max"] = 50, + ["min"] = 20.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1410_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", - }, - }, - ["1405_TwoHandColdDamageWeaponPrefixAndFlat"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", - ["type"] = "explicit", - }, - }, - ["1406_LightningDamageWeaponPrefixAndFlat"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", - ["type"] = "explicit", - }, - }, - ["1406_SpellAddedLightningDamage"] = { + ["max"] = 27.5, + ["min"] = 7.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1410_TwoHandColdDamageWeaponPrefixAndFlat"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1411_LightningDamageWeaponPrefixAndFlat"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1411_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", - }, - }, - ["1406_SpellAddedLightningDamageHybrid"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", - ["type"] = "explicit", - }, - }, - ["1406_SpellAddedLightningDamagePenetrationHybrid"] = { + ["max"] = 96.5, + ["min"] = 2.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1411_SpellAddedLightningDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1411_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", - }, - }, - ["1406_SpellAddedLightningDamageTwoHand"] = { + ["max"] = 41.5, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1411_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", - }, - }, - ["1406_SpellAddedLightningDamageUber"] = { + ["max"] = 145, + ["min"] = 3.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1411_SpellAddedLightningDamageUber"] = { ["Helmet"] = { - ["max"] = 64.5, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", - ["type"] = "explicit", - }, - }, - ["1406_SpellAddedLightningSuffix"] = { + ["max"] = 64.5, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1411_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", - }, - }, - ["1406_TwoHandLightningDamageWeaponPrefixAndFlat"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", - ["type"] = "explicit", - }, - }, - ["1407_IncreasedCastSpeedAddedChaos"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2300399854", - ["text"] = "Adds # to # Chaos Damage to Spells", - ["type"] = "explicit", - }, - }, - ["1407_PoisonDamageAddedChaosToSpells"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2300399854", - ["text"] = "Adds # to # Chaos Damage to Spells", - ["type"] = "explicit", - }, - }, - ["1407_SpellAddedChaosDamage"] = { + ["max"] = 25.5, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1411_TwoHandLightningDamageWeaponPrefixAndFlat"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1412_IncreasedCastSpeedAddedChaos"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1412_PoisonDamageAddedChaosToSpells"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1412_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", - }, - }, - ["1407_SpellAddedChaosDamageHybrid"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2300399854", - ["text"] = "Adds # to # Chaos Damage to Spells", - ["type"] = "explicit", - }, - }, - ["1407_SpellAddedChaosSuffix"] = { + ["max"] = 60, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1412_SpellAddedChaosDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1412_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", - }, - }, - ["1409_AddedLightningDamageSpellsAndAttacks"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2885144362", - ["text"] = "Adds # to # Lightning Damage to Spells and Attacks", - ["type"] = "explicit", - }, - }, - ["1410_IncreasedAttackSpeed"] = { + ["max"] = 19, + ["min"] = 4.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1413_LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance"] = { + ["1HAxe"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["1HMace"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["1HSword"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["1HWeapon"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["2HAxe"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["2HMace"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["2HSword"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["2HWeapon"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["Claw"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["Dagger"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["Staff"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + }, + ["1413_LocalAttackSpeedDexterityIntelligence"] = { + ["1HAxe"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["1HMace"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["1HSword"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["1HWeapon"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["2HAxe"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["2HMace"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["2HSword"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["2HWeapon"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["Claw"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["Dagger"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["Staff"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + }, + ["1413_LocalIncreasedAttackSpeed"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["Bow"] = { + ["max"] = 13, + ["min"] = 8, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["Wand"] = { + ["max"] = 13, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + }, + ["1414_AddedLightningDamageSpellsAndAttacks"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2885144362", + ["text"] = "Adds # to # Lightning Damage to Spells and Attacks", + ["type"] = "explicit", + }, + }, + ["1415_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"] = 5, + }, ["Shield"] = { - ["max"] = 16, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "explicit", - }, - }, - ["1410_IncreasedAttackSpeedForJewel"] = { + ["max"] = 16, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "explicit", + }, + }, + ["1415_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", - }, - }, - ["1410_IncreasedAttackSpeedSupported"] = { - ["Gloves"] = { - ["max"] = 14, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "explicit", - }, - }, - ["1413_AttackSpeedDoubleDamage"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "explicit", + }, + }, + ["1415_IncreasedAttackSpeedSupported"] = { + ["Gloves"] = { + ["max"] = 14, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "explicit", + }, + }, + ["1418_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", - }, - }, - ["1413_AttackSpeedKilledRecently"] = { + ["max"] = 21, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "explicit", + }, + }, + ["1418_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", - }, - }, - ["1413_LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance"] = { + ["max"] = 21, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "explicit", + }, + }, + ["1418_LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance"] = { ["1HAxe"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 18, + }, ["1HMace"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 18, + }, ["1HSword"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 18, + }, ["1HWeapon"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 12, + }, ["2HAxe"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 18, + }, ["2HMace"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 18, + }, ["2HSword"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 18, + }, ["2HWeapon"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 12, + }, ["Bow"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 12, + }, ["Claw"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 18, + }, ["Dagger"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 18, + }, ["Staff"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 18, + }, ["Wand"] = { - ["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"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Attack Speed", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "explicit", - }, - }, - ["1413_LocalAttackSpeedDexterityIntelligence"] = { + ["max"] = 22, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + }, + ["1418_LocalAttackSpeedAndLocalItemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + }, + ["1418_LocalAttackSpeedDexterityIntelligence"] = { ["1HAxe"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 18, + }, ["1HMace"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 18, + }, ["1HSword"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 18, + }, ["1HWeapon"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 12, + }, ["2HAxe"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 18, + }, ["2HMace"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 18, + }, ["2HSword"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 18, + }, ["2HWeapon"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 12, + }, ["Bow"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 12, + }, ["Claw"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 18, + }, ["Dagger"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 18, + }, ["Staff"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 22, + ["min"] = 18, + }, ["Wand"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Attack Speed", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "explicit", - }, - }, - ["1413_LocalIncreasedAttackSpeed"] = { + ["max"] = 22, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + }, + ["1418_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", - }, - }, - ["1413_LocalIncreasedAttackSpeedAddedChaos"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Attack Speed", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "explicit", - }, - }, - ["1413_LocalIncreasedAttackSpeedFasterAttacks"] = { + ["max"] = 27, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + }, + ["1418_LocalIncreasedAttackSpeedAddedChaos"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + }, + ["1418_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", - }, - }, - ["1413_LocalIncreasedAttackSpeedMultistrike"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + }, + ["1418_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", - }, - }, - ["1413_LocalIncreasedAttackSpeedOnslaught"] = { - ["1HWeapon"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 21, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + }, + ["1418_LocalIncreasedAttackSpeedOnslaught"] = { + ["1HWeapon"] = { + ["max"] = 12, + ["min"] = 8, + }, ["Wand"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Attack Speed", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "explicit", - }, - }, - ["1413_LocalIncreasedPhysicalDamagePercentAndAttackSpeed"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + }, + ["1418_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, - }, - ["2HWeapon"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Attack Speed", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "explicit", - }, - }, - ["1415_AttackSpeedWhileDualWieldingForJewel"] = { + ["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", + }, + }, + ["1420_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", - }, - }, - ["1417_AttackSpeedWithAShieldForJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4249220643", + ["text"] = "#% increased Attack Speed while Dual Wielding", + ["type"] = "explicit", + }, + }, + ["1422_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", - }, - }, - ["1418_TwoHandedMeleeAttackSpeedForJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3805075944", + ["text"] = "#% increased Attack Speed while holding a Shield", + ["type"] = "explicit", + }, + }, + ["1423_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", - }, - }, - ["1419_OneHandedMeleeAttackSpeedForJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1917910910", + ["text"] = "#% increased Attack Speed with Two Handed Melee Weapons", + ["type"] = "explicit", + }, + }, + ["1424_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", - }, - }, - ["1420_AxeAttackSpeedForJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1813451228", + ["text"] = "#% increased Attack Speed with One Handed Melee Weapons", + ["type"] = "explicit", + }, + }, + ["1425_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", - }, - }, - ["1421_StaffAttackSpeedForJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3550868361", + ["text"] = "#% increased Attack Speed with Axes", + ["type"] = "explicit", + }, + }, + ["1426_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", - }, - }, - ["1422_ClawAttackSpeedForJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1394963553", + ["text"] = "#% increased Attack Speed with Staves", + ["type"] = "explicit", + }, + }, + ["1427_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", - }, - }, - ["1423_DaggerAttackSpeedForJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1421645223", + ["text"] = "#% increased Attack Speed with Claws", + ["type"] = "explicit", + }, + }, + ["1428_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", - }, - }, - ["1424_MaceAttackSpeedForJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2538566497", + ["text"] = "#% increased Attack Speed with Daggers", + ["type"] = "explicit", + }, + }, + ["1429_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", - }, - }, - ["1425_BowAttackSpeedForJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2515515064", + ["text"] = "#% increased Attack Speed with Maces or Sceptres", + ["type"] = "explicit", + }, + }, + ["1430_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", - }, - }, - ["1426_SwordAttackSpeedForJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", + ["type"] = "explicit", + }, + }, + ["1431_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", - }, - }, - ["1427_WandAttackSpeedForJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3293699237", + ["text"] = "#% increased Attack Speed with Swords", + ["type"] = "explicit", + }, + }, + ["1432_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"] = { + ["Amulet"] = { + ["max"] = 220, + ["min"] = 91, + }, + ["Gloves"] = { + ["max"] = 220, + ["min"] = 91, + }, + ["Helmet"] = { + ["max"] = 220, + ["min"] = 91, + }, + ["Quiver"] = { + ["max"] = 220, + ["min"] = 91, + }, + ["Ring"] = { + ["max"] = 220, + ["min"] = 91, + }, + ["Shield"] = { + ["max"] = 220, + ["min"] = 91, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_803737631", + ["text"] = "+# to Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["1438_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", - }, - }, - ["1433_IncreasedAccuracyForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_803737631", - ["text"] = "+# to Accuracy Rating", - ["type"] = "explicit", - }, - }, - ["1433_LightRadiusAndAccuracy"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_803737631", - ["text"] = "+# to Accuracy Rating", - ["type"] = "explicit", - }, - }, - ["1434_AccuracyAndCritsForJewel"] = { + ["max"] = 480, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_803737631", + ["text"] = "+# to Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["1438_IncreasedAccuracyForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_803737631", + ["text"] = "+# to Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["1438_LightRadiusAndAccuracy"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_803737631", + ["text"] = "+# to Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["1439_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", - }, - }, - ["1434_IncreasedAccuracyPercent"] = { - ["Gloves"] = { - ["max"] = 30, - ["min"] = 12, - }, + ["max"] = 10, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["1439_IncreasedAccuracyPercent"] = { + ["Gloves"] = { + ["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", - }, - }, - ["1434_IncreasedAccuracyPercentForJewel"] = { + ["max"] = 30, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["1439_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", - }, - }, - ["1434_IncreasedAccuracyPercentSupported"] = { - ["Gloves"] = { - ["max"] = 20, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", - ["type"] = "explicit", - }, - }, - ["1434_LightRadiusAndAccuracyPercent"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["1439_IncreasedAccuracyPercentSupported"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["1439_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", - }, - }, - ["1434_LocalLightRadiusAndAccuracyPercent"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["1439_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"] = 16, + ["min"] = 8, + }, ["1HMace"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 16, + ["min"] = 8, + }, ["1HSword"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 16, + ["min"] = 8, + }, ["1HWeapon"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 16, + ["min"] = 8, + }, ["2HAxe"] = { - ["max"] = 31, - ["min"] = 12, - }, + ["max"] = 24, + ["min"] = 12, + }, ["2HMace"] = { - ["max"] = 31, - ["min"] = 12, - }, + ["max"] = 24, + ["min"] = 12, + }, ["2HSword"] = { - ["max"] = 31, - ["min"] = 12, - }, + ["max"] = 24, + ["min"] = 12, + }, ["2HWeapon"] = { - ["max"] = 31, - ["min"] = 12, - }, + ["max"] = 24, + ["min"] = 12, + }, ["Bow"] = { - ["max"] = 31, - ["min"] = 12, - }, + ["max"] = 24, + ["min"] = 12, + }, ["Claw"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 16, + ["min"] = 8, + }, ["Dagger"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["max"] = 16, + ["min"] = 8, + }, ["Staff"] = { - ["max"] = 31, - ["min"] = 12, - }, + ["max"] = 24, + ["min"] = 12, + }, ["Wand"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 16, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, ["1446_IncreasedCastSpeed"] = { ["1HAxe"] = { - ["max"] = 32, - ["min"] = 10, - }, + ["max"] = 21, + ["min"] = 10, + }, + ["1HMace"] = { + ["max"] = 21, + ["min"] = 10, + }, + ["1HSword"] = { + ["max"] = 21, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 21, + ["min"] = 10, + }, + ["2HAxe"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["2HSword"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["Amulet"] = { + ["max"] = 9, + ["min"] = 6, + }, + ["Claw"] = { + ["max"] = 21, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 21, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 9, + ["min"] = 6, + }, + ["Staff"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["Wand"] = { + ["max"] = 21, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, + ["1451_CastSpeedAndGainArcaneSurgeOnKillChance"] = { + ["1HAxe"] = { + ["max"] = 22, + ["min"] = 18, + }, ["1HMace"] = { - ["max"] = 32, - ["min"] = 5, - }, + ["max"] = 22, + ["min"] = 18, + }, ["1HSword"] = { - ["max"] = 32, - ["min"] = 10, - }, + ["max"] = 22, + ["min"] = 18, + }, ["1HWeapon"] = { - ["max"] = 32, - ["min"] = 5, - }, + ["max"] = 22, + ["min"] = 18, + }, ["2HAxe"] = { - ["max"] = 49, - ["min"] = 15, - }, + ["max"] = 31, + ["min"] = 26, + }, ["2HMace"] = { - ["max"] = 49, - ["min"] = 15, - }, + ["max"] = 31, + ["min"] = 26, + }, ["2HSword"] = { - ["max"] = 49, - ["min"] = 15, - }, + ["max"] = 31, + ["min"] = 26, + }, ["2HWeapon"] = { - ["max"] = 49, - ["min"] = 8, - }, + ["max"] = 31, + ["min"] = 26, + }, + ["Bow"] = { + ["max"] = 31, + ["min"] = 26, + }, + ["Claw"] = { + ["max"] = 22, + ["min"] = 18, + }, + ["Dagger"] = { + ["max"] = 22, + ["min"] = 18, + }, + ["Staff"] = { + ["max"] = 31, + ["min"] = 26, + }, + ["Wand"] = { + ["max"] = 22, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, + ["1451_IncreasedCastSpeed"] = { + ["1HAxe"] = { + ["max"] = 32, + ["min"] = 21, + }, + ["1HMace"] = { + ["max"] = 32, + ["min"] = 5, + }, + ["1HSword"] = { + ["max"] = 32, + ["min"] = 21, + }, + ["1HWeapon"] = { + ["max"] = 32, + ["min"] = 5, + }, + ["2HAxe"] = { + ["max"] = 49, + ["min"] = 32, + }, + ["2HMace"] = { + ["max"] = 49, + ["min"] = 32, + }, + ["2HSword"] = { + ["max"] = 49, + ["min"] = 32, + }, + ["2HWeapon"] = { + ["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"] = 21, + }, ["Dagger"] = { - ["max"] = 32, - ["min"] = 5, - }, + ["max"] = 32, + ["min"] = 5, + }, ["Ring"] = { - ["max"] = 16, - ["min"] = 5, - }, - ["Shield"] = { - ["max"] = 9, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 5, + }, ["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", - }, - }, - ["1446_IncreasedCastSpeedAddedChaos"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "explicit", - }, - }, - ["1446_IncreasedCastSpeedFasterCasting"] = { + ["max"] = 32, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, + ["1451_IncreasedCastSpeedAddedChaos"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, + ["1451_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", - }, - }, - ["1446_IncreasedCastSpeedFishing"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, + ["1451_IncreasedCastSpeedFishing"] = { ["FishingRod"] = { - ["max"] = 28, - ["min"] = 24, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "explicit", - }, - }, - ["1446_IncreasedCastSpeedForJewel"] = { + ["max"] = 28, + ["min"] = 24, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, + ["1451_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", - }, - }, - ["1446_IncreasedCastSpeedSpellEcho"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, + ["1451_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", - }, - }, - ["1446_IncreasedCastSpeedSupported"] = { - ["Gloves"] = { - ["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, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, + ["1451_IncreasedCastSpeedSupported"] = { + ["Gloves"] = { + ["max"] = 14, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, + ["1451_IncreasedCastSpeedTwoHandedAvoidInterruption"] = { + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + }, ["Staff"] = { - ["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, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, + ["1451_IncreasedCastSpeedTwoHandedKilledRecently"] = { + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "explicit", - }, - }, - ["1447_CastSpeedWhileDualWieldingForJewel"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, + ["1452_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", - }, - }, - ["1448_CastSpeedWithAShieldForJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2382196858", + ["text"] = "#% increased Cast Speed while Dual Wielding", + ["type"] = "explicit", + }, + }, + ["1453_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", - }, - }, - ["1449_CastSpeedWithAStaffForJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1612163368", + ["text"] = "#% increased Cast Speed while holding a Shield", + ["type"] = "explicit", + }, + }, + ["1454_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", - }, - }, - ["1458_CriticalStrikeChanceSpellsSupported"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2066542501", + ["text"] = "#% increased Cast Speed while wielding a Staff", + ["type"] = "explicit", + }, + }, + ["1458_SpellCriticalStrikeChance"] = { + ["1HAxe"] = { + ["max"] = 69, + ["min"] = 30, + }, ["1HMace"] = { - ["max"] = 82, - ["min"] = 60, - }, + ["max"] = 69, + ["min"] = 30, + }, + ["1HSword"] = { + ["max"] = 69, + ["min"] = 30, + }, ["1HWeapon"] = { - ["max"] = 82, - ["min"] = 60, - }, + ["max"] = 69, + ["min"] = 30, + }, + ["2HAxe"] = { + ["max"] = 105, + ["min"] = 45, + }, + ["2HMace"] = { + ["max"] = 105, + ["min"] = 45, + }, + ["2HSword"] = { + ["max"] = 105, + ["min"] = 45, + }, + ["2HWeapon"] = { + ["max"] = 105, + ["min"] = 45, + }, + ["Claw"] = { + ["max"] = 69, + ["min"] = 30, + }, + ["Dagger"] = { + ["max"] = 69, + ["min"] = 30, + }, + ["Staff"] = { + ["max"] = 105, + ["min"] = 45, + }, + ["Wand"] = { + ["max"] = 69, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Spell 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", + }, + }, + ["1459_CriticalChanceAndAddedChaosDamageIfHaveCritRecently"] = { + ["Gloves"] = { + ["max"] = 16, + ["min"] = 11, + }, + ["Quiver"] = { + ["max"] = 16, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1459_CriticalChanceAndElementalDamagePercentIfHaveCritRecently"] = { + ["Gloves"] = { + ["max"] = 16, + ["min"] = 11, + }, + ["Quiver"] = { + ["max"] = 16, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1459_CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent"] = { + ["Quiver"] = { + ["max"] = 14, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1459_CriticalStrikeChance"] = { + ["Amulet"] = { + ["max"] = 27, + ["min"] = 17, + }, + ["Quiver"] = { + ["max"] = 27, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1463_CriticalStrikeChanceSpellsSupported"] = { + ["1HMace"] = { + ["max"] = 82, + ["min"] = 60, + }, + ["1HWeapon"] = { + ["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", - }, - }, - ["1458_CriticalStrikeChanceSpellsTwoHandedPowerCharge"] = { - ["2HWeapon"] = { - ["max"] = 82, - ["min"] = 60, - }, + ["max"] = 82, + ["min"] = 60, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Spell Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1463_CriticalStrikeChanceSpellsTwoHandedPowerCharge"] = { + ["2HWeapon"] = { + ["max"] = 82, + ["min"] = 60, + }, ["Staff"] = { - ["max"] = 82, - ["min"] = 60, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_737908626", - ["text"] = "#% increased Spell Critical Strike Chance", - ["type"] = "explicit", - }, - }, - ["1458_SpellCritChanceForJewel"] = { + ["max"] = 82, + ["min"] = 60, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Spell Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1463_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", - }, - }, - ["1458_SpellCriticalStrikeChance"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Spell Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1463_SpellCriticalStrikeChance"] = { ["1HAxe"] = { - ["max"] = 119, - ["min"] = 30, - }, + ["max"] = 119, + ["min"] = 80, + }, ["1HMace"] = { - ["max"] = 119, - ["min"] = 10, - }, + ["max"] = 119, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 119, - ["min"] = 30, - }, + ["max"] = 119, + ["min"] = 80, + }, ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 10, - }, + ["max"] = 119, + ["min"] = 10, + }, ["2HAxe"] = { - ["max"] = 119, - ["min"] = 45, - }, + ["max"] = 119, + ["min"] = 80, + }, ["2HMace"] = { - ["max"] = 119, - ["min"] = 45, - }, + ["max"] = 119, + ["min"] = 80, + }, ["2HSword"] = { - ["max"] = 119, - ["min"] = 45, - }, + ["max"] = 119, + ["min"] = 80, + }, ["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"] = 80, + }, ["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", - }, - }, - ["1459_AccuracyAndCritsForJewel"] = { + ["max"] = 119, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Spell Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1464_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", - }, - }, - ["1459_CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently"] = { - ["Ring"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", - ["type"] = "explicit", - }, - }, - ["1459_CritChanceForJewel"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1464_CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1464_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", - }, - }, - ["1459_CriticalChanceAndAddedChaosDamageIfHaveCritRecently"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1464_CriticalChanceAndAddedChaosDamageIfHaveCritRecently"] = { ["Gloves"] = { - ["max"] = 22, - ["min"] = 11, - }, + ["max"] = 22, + ["min"] = 20, + }, ["Quiver"] = { - ["max"] = 22, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", - ["type"] = "explicit", - }, - }, - ["1459_CriticalChanceAndElementalDamagePercentIfHaveCritRecently"] = { + ["max"] = 22, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1464_CriticalChanceAndElementalDamagePercentIfHaveCritRecently"] = { ["Gloves"] = { - ["max"] = 22, - ["min"] = 11, - }, + ["max"] = 22, + ["min"] = 20, + }, ["Quiver"] = { - ["max"] = 22, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", - ["type"] = "explicit", - }, - }, - ["1459_CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent"] = { + ["max"] = 22, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1464_CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent"] = { ["Quiver"] = { - ["max"] = 20, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", - ["type"] = "explicit", - }, - }, - ["1459_CriticalStrikeChance"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1464_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"] = 25, + }, ["Ring"] = { - ["max"] = 26, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", - ["type"] = "explicit", - }, - }, - ["1464_CriticalStrikeChanceSupported"] = { + ["max"] = 26, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1464_LocalCriticalStrikeChance"] = { + ["1HAxe"] = { + ["max"] = 27, + ["min"] = 17, + }, + ["1HMace"] = { + ["max"] = 27, + ["min"] = 17, + }, + ["1HSword"] = { + ["max"] = 27, + ["min"] = 17, + }, + ["1HWeapon"] = { + ["max"] = 27, + ["min"] = 17, + }, + ["2HAxe"] = { + ["max"] = 27, + ["min"] = 17, + }, + ["2HMace"] = { + ["max"] = 27, + ["min"] = 17, + }, + ["2HSword"] = { + ["max"] = 27, + ["min"] = 17, + }, + ["2HWeapon"] = { + ["max"] = 27, + ["min"] = 17, + }, + ["Bow"] = { + ["max"] = 27, + ["min"] = 17, + }, + ["Claw"] = { + ["max"] = 27, + ["min"] = 17, + }, + ["Dagger"] = { + ["max"] = 27, + ["min"] = 17, + }, + ["Staff"] = { + ["max"] = 27, + ["min"] = 17, + }, + ["Wand"] = { + ["max"] = 27, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1464_LocalCriticalStrikeChanceStrengthIntelligence"] = { + ["1HAxe"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["1HMace"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["1HSword"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["2HAxe"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["2HSword"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Dagger"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Wand"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1469_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", - }, - }, - ["1464_CriticalStrikeChanceTwoHandedCritChanceRecently"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1469_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", - }, - }, - ["1464_CriticalStrikeChanceTwoHandedCritMultiRecently"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1469_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", - }, - }, - ["1464_GainEnduranceChargeOnCritUber"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1469_GainEnduranceChargeOnCritUber"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 15, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", - ["type"] = "explicit", - }, - }, - ["1464_LocalCriticalStrikeChance"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1469_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", - }, - }, - ["1464_LocalCriticalStrikeChanceAndLocalItemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", - ["type"] = "explicit", - }, - }, - ["1464_LocalCriticalStrikeChanceStrengthIntelligence"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1469_LocalCriticalStrikeChanceAndLocalItemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1469_LocalCriticalStrikeChanceStrengthIntelligence"] = { ["1HAxe"] = { - ["max"] = 32, - ["min"] = 15, - }, + ["max"] = 32, + ["min"] = 28, + }, ["1HMace"] = { - ["max"] = 32, - ["min"] = 15, - }, + ["max"] = 32, + ["min"] = 28, + }, ["1HSword"] = { - ["max"] = 32, - ["min"] = 15, - }, + ["max"] = 32, + ["min"] = 28, + }, ["1HWeapon"] = { - ["max"] = 32, - ["min"] = 15, - }, + ["max"] = 32, + ["min"] = 28, + }, ["2HAxe"] = { - ["max"] = 32, - ["min"] = 15, - }, + ["max"] = 32, + ["min"] = 28, + }, ["2HMace"] = { - ["max"] = 32, - ["min"] = 15, - }, + ["max"] = 32, + ["min"] = 28, + }, ["2HSword"] = { - ["max"] = 32, - ["min"] = 15, - }, + ["max"] = 32, + ["min"] = 28, + }, ["2HWeapon"] = { - ["max"] = 32, - ["min"] = 15, - }, + ["max"] = 32, + ["min"] = 28, + }, ["Bow"] = { - ["max"] = 32, - ["min"] = 15, - }, + ["max"] = 32, + ["min"] = 28, + }, ["Claw"] = { - ["max"] = 32, - ["min"] = 15, - }, + ["max"] = 32, + ["min"] = 28, + }, ["Dagger"] = { - ["max"] = 32, - ["min"] = 15, - }, + ["max"] = 32, + ["min"] = 28, + }, ["Staff"] = { - ["max"] = 32, - ["min"] = 15, - }, + ["max"] = 32, + ["min"] = 28, + }, ["Wand"] = { - ["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"] = 32, + ["min"] = 28, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1469_LocalIncreasedPhysicalDamagePercentAndCritChance"] = { + ["1HWeapon"] = { + ["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", - }, - }, - ["1465_CritChanceWithBowForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2091591880", - ["text"] = "#% increased Critical Strike Chance with Bows", - ["type"] = "explicit", - }, - }, - ["1465_CriticalStrikeChanceWithBows"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1470_CritChanceWithBowForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2091591880", + ["text"] = "#% increased Critical Strike Chance with Bows", + ["type"] = "explicit", + }, + }, + ["1470_CriticalStrikeChanceWithBows"] = { ["Quiver"] = { - ["max"] = 44, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2091591880", - ["text"] = "#% increased Critical Strike Chance with Bows", - ["type"] = "explicit", - }, - }, - ["1474_TrapCritChanceForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1192661666", - ["text"] = "#% increased Critical Strike Chance with Traps", - ["type"] = "explicit", - }, - }, - ["1476_TwoHandedCritChanceForJewel"] = { + ["max"] = 44, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2091591880", + ["text"] = "#% increased Critical Strike Chance with Bows", + ["type"] = "explicit", + }, + }, + ["1479_TrapCritChanceForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1192661666", + ["text"] = "#% increased Critical Strike Chance with Traps", + ["type"] = "explicit", + }, + }, + ["1481_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", - }, - }, - ["1477_TwoHandCritMultiplierForJewel"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_764295120", + ["text"] = "#% increased Critical Strike Chance with Two Handed Melee Weapons", + ["type"] = "explicit", + }, + }, + ["1482_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", - }, - }, - ["1478_OneHandedCritChanceForJewel"] = { + ["max"] = 18, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_252507949", + ["text"] = "+#% to Critical Strike Multiplier with Two Handed Melee Weapons", + ["type"] = "explicit", + }, + }, + ["1483_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", - }, - }, - ["1479_MeleeCritChanceForJewel"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2381842786", + ["text"] = "#% increased Critical Strike Chance with One Handed Melee Weapons", + ["type"] = "explicit", + }, + }, + ["1484_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", - }, - }, - ["1480_DualWieldingCritChanceForJewel"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1199429645", + ["text"] = "#% increased Melee Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1485_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", - }, - }, - ["1481_FireCritChanceForJewel"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3702513529", + ["text"] = "#% increased Attack Critical Strike Chance while Dual Wielding", + ["type"] = "explicit", + }, + }, + ["1486_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", - }, - }, - ["1482_LightningCritChanceForJewel"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1104796138", + ["text"] = "#% increased Critical Strike Chance with Fire Skills", + ["type"] = "explicit", + }, + }, + ["1487_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", - }, - }, - ["1483_ColdCritChanceForJewel"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1186596295", + ["text"] = "#% increased Critical Strike Chance with Lightning Skills", + ["type"] = "explicit", + }, + }, + ["1488_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", - }, - }, - ["1484_ElementalCritChanceForJewel"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3337344042", + ["text"] = "#% increased Critical Strike Chance with Cold Skills", + ["type"] = "explicit", + }, + }, + ["1488_CriticalStrikeMultiplier"] = { + ["1HAxe"] = { + ["max"] = 28, + ["min"] = 17, + }, + ["1HMace"] = { + ["max"] = 28, + ["min"] = 17, + }, + ["1HSword"] = { + ["max"] = 28, + ["min"] = 17, + }, + ["1HWeapon"] = { + ["max"] = 28, + ["min"] = 17, + }, + ["2HAxe"] = { + ["max"] = 28, + ["min"] = 17, + }, + ["2HMace"] = { + ["max"] = 28, + ["min"] = 17, + }, + ["2HSword"] = { + ["max"] = 28, + ["min"] = 17, + }, + ["2HWeapon"] = { + ["max"] = 28, + ["min"] = 17, + }, + ["Bow"] = { + ["max"] = 28, + ["min"] = 17, + }, + ["Claw"] = { + ["max"] = 28, + ["min"] = 17, + }, + ["Dagger"] = { + ["max"] = 28, + ["min"] = 17, + }, + ["Staff"] = { + ["max"] = 28, + ["min"] = 17, + }, + ["Wand"] = { + ["max"] = 28, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", + ["type"] = "explicit", + }, + }, + ["1489_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", - }, - }, - ["1488_CritMultiplierForJewel"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_439950087", + ["text"] = "#% increased Critical Strike Chance with Elemental Skills", + ["type"] = "explicit", + }, + }, + ["1493_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", - }, - }, - ["1488_CriticalMultiplierSupportedTwoHanded"] = { - ["2HWeapon"] = { - ["max"] = 29, - ["min"] = 22, - }, + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", + ["type"] = "explicit", + }, + }, + ["1493_CriticalMultiplierSupportedTwoHanded"] = { + ["2HWeapon"] = { + ["max"] = 29, + ["min"] = 22, + }, ["Bow"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3556824919", - ["text"] = "+#% to Global Critical Strike Multiplier", - ["type"] = "explicit", - }, - }, - ["1488_CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber"] = { - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", + ["type"] = "explicit", + }, + }, + ["1493_CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber"] = { + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3556824919", - ["text"] = "+#% to Global Critical Strike Multiplier", - ["type"] = "explicit", - }, - }, - ["1488_CriticalStrikeMultiplier"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", + ["type"] = "explicit", + }, + }, + ["1493_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", - }, - }, - ["1488_CriticalStrikeMultiplierSupported"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", + ["type"] = "explicit", + }, + }, + ["1493_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", - }, - }, - ["1488_LocalIncreasedPhysicalDamagePercentAndCritMulti"] = { - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", + ["type"] = "explicit", + }, + }, + ["1493_LocalIncreasedPhysicalDamagePercentAndCritMulti"] = { + ["1HWeapon"] = { + ["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", - }, - }, - ["1492_SpellCritMultiplierForJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", + ["type"] = "explicit", + }, + }, + ["1497_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", - }, - }, - ["1496_CritMultiplierWithBowForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1712221299", - ["text"] = "+#% to Critical Strike Multiplier with Bows", - ["type"] = "explicit", - }, - }, - ["1496_CriticalStrikeMultiplierWithBows"] = { + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_274716455", + ["text"] = "+#% to Critical Strike Multiplier for Spell Damage", + ["type"] = "explicit", + }, + }, + ["1501_CritMultiplierWithBowForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1712221299", + ["text"] = "+#% to Critical Strike Multiplier with Bows", + ["type"] = "explicit", + }, + }, + ["1501_CriticalStrikeMultiplierWithBows"] = { ["Quiver"] = { - ["max"] = 38, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1712221299", - ["text"] = "+#% to Critical Strike Multiplier with Bows", - ["type"] = "explicit", - }, - }, - ["1501_OneHandCritMultiplierForJewel"] = { + ["max"] = 38, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1712221299", + ["text"] = "+#% to Critical Strike Multiplier with Bows", + ["type"] = "explicit", + }, + }, + ["1506_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", - }, - }, - ["1502_MeleeCritMultiplierForJewel"] = { + ["max"] = 18, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_670153687", + ["text"] = "+#% to Critical Strike Multiplier with One Handed Melee Weapons", + ["type"] = "explicit", + }, + }, + ["1507_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", - }, - }, - ["1507_FireCritMultiplierForJewel"] = { + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4237442815", + ["text"] = "+#% to Melee Critical Strike Multiplier", + ["type"] = "explicit", + }, + }, + ["1512_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", - }, - }, - ["1508_LightningCritMultiplierForJewel"] = { + ["max"] = 18, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2307547323", + ["text"] = "+#% to Critical Strike Multiplier with Fire Skills", + ["type"] = "explicit", + }, + }, + ["1513_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", - }, - }, - ["1509_ColdCritMultiplierForJewel"] = { + ["max"] = 18, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2441475928", + ["text"] = "+#% to Critical Strike Multiplier with Lightning Skills", + ["type"] = "explicit", + }, + }, + ["1514_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", - }, - }, - ["1510_ElementalCritMultiplierForJewel"] = { + ["max"] = 18, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_915908446", + ["text"] = "+#% to Critical Strike Multiplier with Cold Skills", + ["type"] = "explicit", + }, + }, + ["1515_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", - }, - }, - ["1512_ReducedCriticalStrikeDamageTaken"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3855016469", - ["text"] = "You take #% reduced Extra Damage from Critical Strikes", - ["type"] = "explicit", - }, - }, - ["1512_ReducedExtraDamageFromCrits"] = { + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1569407745", + ["text"] = "+#% to Critical Strike Multiplier with Elemental Skills", + ["type"] = "explicit", + }, + }, + ["1517_ReducedCriticalStrikeDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3855016469", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + ["type"] = "explicit", + }, + }, + ["1517_ReducedExtraDamageFromCrits"] = { ["Shield"] = { - ["max"] = 60, - ["min"] = 21, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3855016469", - ["text"] = "You take #% reduced Extra Damage from Critical Strikes", - ["type"] = "explicit", - }, - }, - ["1514_ReducedDamageFromCriticalStrikesPerEnduranceCharge"] = { + ["max"] = 60, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3855016469", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + ["type"] = "explicit", + }, + }, + ["1519_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", - }, - }, - ["1517_LocalIncreasedPhysicalDamagePercentAndStun"] = { + ["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", + }, + }, + ["1522_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", - }, - }, - ["1517_StunDurationAndThresholdUber"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", + ["type"] = "explicit", + }, + }, + ["1522_StunDurationAndThresholdUber"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 11, - }, + ["max"] = 20, + ["min"] = 11, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 11, - }, + ["max"] = 20, + ["min"] = 11, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1443060084", - ["text"] = "#% reduced Enemy Stun Threshold", - ["type"] = "explicit", - }, - }, - ["1517_StunThresholdReduction"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", + ["type"] = "explicit", + }, + }, + ["1522_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", - }, - }, - ["1528_LocalBaseWardAndLife"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_774059442", - ["text"] = "+# to Ward", - ["type"] = "explicit", - }, - }, - ["1528_LocalWard"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_774059442", - ["text"] = "+# to Ward", - ["type"] = "explicit", - }, - }, - ["1530_LocalWardAndStunRecoveryPercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_830161081", - ["text"] = "#% increased Ward", - ["type"] = "explicit", - }, - }, - ["1530_LocalWardPercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_830161081", - ["text"] = "#% increased Ward", - ["type"] = "explicit", - }, - }, - ["1531_WardDelayRecovery"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1130670241", - ["text"] = "#% faster Restoration of Ward", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", + ["type"] = "explicit", + }, + }, + ["1533_LocalBaseWardAndLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_774059442", + ["text"] = "+# to Ward", + ["type"] = "explicit", + }, + }, + ["1533_LocalWard"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_774059442", + ["text"] = "+# to Ward", + ["type"] = "explicit", + }, + }, + ["1535_LocalWardAndStunRecoveryPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_830161081", + ["text"] = "#% increased Ward", + ["type"] = "explicit", + }, + }, + ["1535_LocalWardPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_830161081", + ["text"] = "#% increased Ward", + ["type"] = "explicit", + }, + }, + ["1536_WardDelayRecovery"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", - }, - }, - ["1539_PhysicalDamageReductionRating"] = { + ["max"] = 285, + ["min"] = 105, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_809229260", + ["text"] = "+# to Armour", + ["type"] = "explicit", + }, + }, + ["1540_LocalPhysicalDamageReductionRating"] = { + ["Boots"] = { + ["max"] = 75, + ["min"] = 50, + }, + ["Chest"] = { + ["max"] = 320, + ["min"] = 50, + }, + ["Gloves"] = { + ["max"] = 75, + ["min"] = 50, + }, + ["Helmet"] = { + ["max"] = 150, + ["min"] = 50, + }, + ["Shield"] = { + ["max"] = 320, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Armour", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3484657501", + ["text"] = "+# to Armour (Local)", + ["type"] = "explicit", + }, + }, + ["1542_LocalIncreasedArmourAndLife"] = { + ["Boots"] = { + ["max"] = 21, + ["min"] = 12, + }, + ["Chest"] = { + ["max"] = 21, + ["min"] = 12, + }, + ["Gloves"] = { + ["max"] = 21, + ["min"] = 12, + }, + ["Helmet"] = { + ["max"] = 21, + ["min"] = 12, + }, + ["Shield"] = { + ["max"] = 21, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "explicit", + }, + }, + ["1542_LocalPhysicalDamageReductionRatingPercent"] = { + ["Boots"] = { + ["max"] = 74, + ["min"] = 26, + }, + ["Chest"] = { + ["max"] = 74, + ["min"] = 26, + }, + ["Gloves"] = { + ["max"] = 74, + ["min"] = 26, + }, + ["Helmet"] = { + ["max"] = 74, + ["min"] = 26, + }, + ["Shield"] = { + ["max"] = 74, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "explicit", + }, + }, + ["1544_ArmourAndEnergyShield"] = { + ["Belt"] = { + ["max"] = 400, + ["min"] = 365, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_809229260", + ["text"] = "+# to Armour", + ["type"] = "explicit", + }, + }, + ["1544_EvasionRatingAndEnergyShield"] = { + ["Belt"] = { + ["max"] = 285, + ["min"] = 105, + }, + ["Quiver"] = { + ["max"] = 285, + ["min"] = 105, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2144192055", + ["text"] = "+# to Evasion Rating", + ["type"] = "explicit", + }, + }, + ["1544_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", - }, - }, - ["1540_LocalBaseArmourAndEnergyShield"] = { + ["max"] = 300, + ["min"] = 80, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_809229260", + ["text"] = "+# to Armour", + ["type"] = "explicit", + }, + }, + ["1545_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", - }, - }, - ["1540_LocalBaseArmourAndEvasionRating"] = { + ["max"] = 375, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Armour", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3484657501", + ["text"] = "+# to Armour (Local)", + ["type"] = "explicit", + }, + }, + ["1545_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", - }, - }, - ["1540_LocalBaseArmourAndLife"] = { + ["max"] = 375, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Armour", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3484657501", + ["text"] = "+# to Armour (Local)", + ["type"] = "explicit", + }, + }, + ["1545_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", - }, - }, - ["1540_LocalBaseArmourEnergyShieldAndLife"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to Armour", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3484657501", - ["text"] = "+# to Armour (Local)", - ["type"] = "explicit", - }, - }, - ["1540_LocalBaseArmourEvasionRatingAndLife"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to Armour", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3484657501", - ["text"] = "+# to Armour (Local)", - ["type"] = "explicit", - }, - }, - ["1540_LocalPhysicalDamageReductionRating"] = { + ["max"] = 144, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Armour", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3484657501", + ["text"] = "+# to Armour (Local)", + ["type"] = "explicit", + }, + }, + ["1545_LocalBaseArmourEnergyShieldAndLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Armour", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3484657501", + ["text"] = "+# to Armour (Local)", + ["type"] = "explicit", + }, + }, + ["1545_LocalBaseArmourEvasionRatingAndLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Armour", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3484657501", + ["text"] = "+# to Armour (Local)", + ["type"] = "explicit", + }, + }, + ["1545_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", - }, - }, - ["1541_ArmourEnergyShieldForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "explicit", - }, - }, - ["1541_ArmourEvasionForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "explicit", - }, - }, - ["1541_GlobalPhysicalDamageReductionRatingPercent"] = { + ["max"] = 375, + ["min"] = 151, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Armour", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3484657501", + ["text"] = "+# to Armour (Local)", + ["type"] = "explicit", + }, + }, + ["1546_ArmourEnergyShieldForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "explicit", + }, + }, + ["1546_ArmourEvasionForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "explicit", + }, + }, + ["1546_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", - }, - }, - ["1541_IncreasedArmourForJewel"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "explicit", + }, + }, + ["1546_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", - }, - }, - ["1541_ReducedPhysicalDamageTakenMaven"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "explicit", + }, + }, + ["1546_ReducedPhysicalDamageTakenMaven"] = { ["Boots"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "explicit", - }, - }, - ["1542_LocalIncreasedArmourAndLife"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "explicit", + }, + }, + ["1547_LocalIncreasedArmourAndLife"] = { ["Boots"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 24, + }, ["Chest"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 24, + }, ["Gloves"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 24, + }, ["Helmet"] = { - ["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", - }, - }, - ["1542_LocalPhysicalDamageReductionRatingAndStunRecoveryPercent"] = { + ["max"] = 28, + ["min"] = 24, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "explicit", + }, + }, + ["1547_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", - }, - }, - ["1542_LocalPhysicalDamageReductionRatingPercent"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "explicit", + }, + }, + ["1547_LocalPhysicalDamageReductionRatingPercent"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 101, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "explicit", + }, + }, + ["1547_LocalPhysicalDamageReductionRatingPercentAndBlockChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "explicit", + }, + }, + ["1547_LocalPhysicalDamageReductionRatingPercentSuffix"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "explicit", + }, + }, + ["1548_LocalEvasionRating"] = { ["Boots"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 75, + ["min"] = 50, + }, ["Chest"] = { - ["max"] = 110, - ["min"] = 15, - }, + ["max"] = 320, + ["min"] = 50, + }, ["Gloves"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 75, + ["min"] = 50, + }, ["Helmet"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 150, + ["min"] = 50, + }, ["Shield"] = { - ["max"] = 110, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1062208444", - ["text"] = "#% increased Armour (Local)", - ["type"] = "explicit", - }, - }, - ["1542_LocalPhysicalDamageReductionRatingPercentAndBlockChance"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1062208444", - ["text"] = "#% increased Armour (Local)", - ["type"] = "explicit", - }, - }, - ["1542_LocalPhysicalDamageReductionRatingPercentSuffix"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1062208444", - ["text"] = "#% increased Armour (Local)", - ["type"] = "explicit", - }, - }, - ["1544_EvasionRating"] = { + ["max"] = 320, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_53045048", + ["text"] = "+# to Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, + ["1549_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", - }, - }, - ["1544_EvasionRatingAndEnergyShield"] = { + ["max"] = 180, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2144192055", + ["text"] = "+# to Evasion Rating", + ["type"] = "explicit", + }, + }, + ["1549_EvasionRatingAndEnergyShield"] = { ["Belt"] = { - ["max"] = 400, - ["min"] = 105, - }, + ["max"] = 400, + ["min"] = 365, + }, ["Quiver"] = { - ["max"] = 400, - ["min"] = 105, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2144192055", - ["text"] = "+# to Evasion Rating", - ["type"] = "explicit", - }, - }, - ["1548_LocalBaseArmourAndEvasionRating"] = { + ["max"] = 400, + ["min"] = 365, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2144192055", + ["text"] = "+# to Evasion Rating", + ["type"] = "explicit", + }, + }, + ["1550_LocalEvasionRatingIncreasePercent"] = { + ["Boots"] = { + ["max"] = 74, + ["min"] = 26, + }, + ["Chest"] = { + ["max"] = 74, + ["min"] = 26, + }, + ["Gloves"] = { + ["max"] = 74, + ["min"] = 26, + }, + ["Helmet"] = { + ["max"] = 74, + ["min"] = 26, + }, + ["Shield"] = { + ["max"] = 74, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, + ["1550_LocalIncreasedEvasionAndLife"] = { ["Boots"] = { - ["max"] = 375, - ["min"] = 5, - }, + ["max"] = 21, + ["min"] = 12, + }, ["Chest"] = { - ["max"] = 375, - ["min"] = 5, - }, + ["max"] = 21, + ["min"] = 12, + }, ["Gloves"] = { - ["max"] = 375, - ["min"] = 5, - }, + ["max"] = 21, + ["min"] = 12, + }, ["Helmet"] = { - ["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"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to Evasion Rating", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_53045048", - ["text"] = "+# to Evasion Rating (Local)", - ["type"] = "explicit", - }, - }, - ["1548_LocalBaseEvasionRatingAndEnergyShield"] = { + ["max"] = 21, + ["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", + }, + }, + ["1552_LocalArmourAndEnergyShield"] = { ["Boots"] = { - ["max"] = 375, - ["min"] = 5, - }, + ["max"] = 74, + ["min"] = 26, + }, ["Chest"] = { - ["max"] = 375, - ["min"] = 5, - }, + ["max"] = 74, + ["min"] = 26, + }, ["Gloves"] = { - ["max"] = 375, - ["min"] = 5, - }, + ["max"] = 74, + ["min"] = 26, + }, ["Helmet"] = { - ["max"] = 375, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to Evasion Rating", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_53045048", - ["text"] = "+# to Evasion Rating (Local)", - ["type"] = "explicit", - }, - }, - ["1548_LocalBaseEvasionRatingAndLife"] = { + ["max"] = 74, + ["min"] = 26, + }, + ["Shield"] = { + ["max"] = 74, + ["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_LocalIncreasedArmourAndEnergyShieldAndLife"] = { ["Boots"] = { - ["max"] = 120, - ["min"] = 14, - }, + ["max"] = 21, + ["min"] = 12, + }, ["Chest"] = { - ["max"] = 120, - ["min"] = 14, - }, + ["max"] = 21, + ["min"] = 12, + }, ["Gloves"] = { - ["max"] = 120, - ["min"] = 14, - }, + ["max"] = 21, + ["min"] = 12, + }, ["Helmet"] = { - ["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"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to Evasion Rating", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_53045048", - ["text"] = "+# to Evasion Rating (Local)", - ["type"] = "explicit", - }, - }, - ["1548_LocalEvasionRating"] = { + ["max"] = 21, + ["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", + }, + }, + ["1553_LocalArmourAndEvasion"] = { + ["Boots"] = { + ["max"] = 74, + ["min"] = 26, + }, + ["Chest"] = { + ["max"] = 74, + ["min"] = 26, + }, + ["Gloves"] = { + ["max"] = 74, + ["min"] = 26, + }, + ["Helmet"] = { + ["max"] = 74, + ["min"] = 26, + }, + ["Shield"] = { + ["max"] = 74, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Evasion", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion (Local)", + ["type"] = "explicit", + }, + }, + ["1553_LocalBaseArmourAndEvasionRating"] = { + ["Boots"] = { + ["max"] = 375, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 375, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 375, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 375, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_53045048", + ["text"] = "+# to Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, + ["1553_LocalBaseArmourEvasionRatingAndLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_53045048", + ["text"] = "+# to Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, + ["1553_LocalBaseEvasionRatingAndEnergyShield"] = { + ["Boots"] = { + ["max"] = 375, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 375, + ["min"] = 5, + }, + ["Gloves"] = { + ["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", + }, + }, + ["1553_LocalBaseEvasionRatingAndLife"] = { + ["Boots"] = { + ["max"] = 120, + ["min"] = 14, + }, + ["Chest"] = { + ["max"] = 120, + ["min"] = 14, + }, + ["Gloves"] = { + ["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", + }, + }, + ["1553_LocalBaseEvasionRatingEnergyShieldAndLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_53045048", + ["text"] = "+# to Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, + ["1553_LocalEvasionRating"] = { + ["Boots"] = { + ["max"] = 500, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 500, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 500, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 500, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 375, + ["min"] = 64, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_53045048", + ["text"] = "+# to Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, + ["1553_LocalIncreasedArmourAndEvasionAndLife"] = { ["Boots"] = { - ["max"] = 500, - ["min"] = 6, - }, + ["max"] = 21, + ["min"] = 12, + }, ["Chest"] = { - ["max"] = 500, - ["min"] = 6, - }, + ["max"] = 21, + ["min"] = 12, + }, ["Gloves"] = { - ["max"] = 500, - ["min"] = 6, - }, + ["max"] = 21, + ["min"] = 12, + }, ["Helmet"] = { - ["max"] = 500, - ["min"] = 6, - }, + ["max"] = 21, + ["min"] = 12, + }, ["Shield"] = { - ["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"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - ["type"] = "explicit", - }, - }, - ["1549_EvasionEnergyShieldForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - ["type"] = "explicit", - }, - }, - ["1549_GlobalEvasionRatingPercent"] = { + ["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_ArmourEvasionForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", + }, + }, + ["1554_EvasionEnergyShieldForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", + }, + }, + ["1554_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", - }, - }, - ["1549_IncreasedEvasionForJewel"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", + }, + }, + ["1554_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", - }, - }, - ["1550_LocalEvasionRatingAndStunRecoveryIncreasePercent"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", + }, + }, + ["1554_LocalEvasionAndEnergyShield"] = { ["Boots"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["max"] = 74, + ["min"] = 26, + }, ["Chest"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["max"] = 74, + ["min"] = 26, + }, ["Gloves"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["max"] = 74, + ["min"] = 26, + }, ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Evasion Rating", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", - ["type"] = "explicit", - }, - }, - ["1550_LocalEvasionRatingIncreasePercent"] = { + ["max"] = 74, + ["min"] = 26, + }, + ["Shield"] = { + ["max"] = 74, + ["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_LocalIncreasedEvasionAndEnergyShieldAndLife"] = { ["Boots"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 21, + ["min"] = 12, + }, ["Chest"] = { - ["max"] = 110, - ["min"] = 15, - }, + ["max"] = 21, + ["min"] = 12, + }, ["Gloves"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 21, + ["min"] = 12, + }, ["Helmet"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 21, + ["min"] = 12, + }, ["Shield"] = { - ["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"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Evasion Rating", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", - ["type"] = "explicit", - }, - }, - ["1550_LocalIncreasedEvasionAndLife"] = { + ["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_LocalEvasionRatingAndStunRecoveryIncreasePercent"] = { + ["Boots"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Gloves"] = { + ["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", + }, + }, + ["1555_LocalEvasionRatingIncreasePercent"] = { ["Boots"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 100, + ["min"] = 15, + }, ["Chest"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 110, + ["min"] = 15, + }, ["Gloves"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 100, + ["min"] = 15, + }, ["Helmet"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 100, + ["min"] = 15, + }, ["Shield"] = { - ["max"] = 21, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Evasion Rating", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", - ["type"] = "explicit", - }, - }, - ["1552_LocalArmourAndEnergyShield"] = { + ["max"] = 110, + ["min"] = 101, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, + ["1555_LocalEvasionRatingIncreasePercentSuffix"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, + ["1555_LocalIncreasedDefencesAndLife"] = { ["Boots"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 21, + ["min"] = 12, + }, ["Chest"] = { - ["max"] = 110, - ["min"] = 15, - }, + ["max"] = 21, + ["min"] = 12, + }, ["Gloves"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 21, + ["min"] = 12, + }, ["Helmet"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 21, + ["min"] = 12, + }, ["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", - }, - }, - ["1552_LocalArmourAndEnergyShieldAndStunRecovery"] = { + ["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", + }, + }, + ["1555_LocalIncreasedEvasionAndLife"] = { ["Boots"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["max"] = 28, + ["min"] = 24, + }, ["Chest"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["max"] = 28, + ["min"] = 24, + }, ["Gloves"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["max"] = 28, + ["min"] = 24, + }, ["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", - }, - }, - ["1552_LocalArmourAndEnergyShieldSuffix"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour and Energy Shield", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield (Local)", - ["type"] = "explicit", - }, - }, - ["1552_LocalIncreasedArmourAndEnergyShieldAndLife"] = { + ["max"] = 28, + ["min"] = 24, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, + ["1557_LocalArmourAndEnergyShield"] = { ["Boots"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 100, + ["min"] = 15, + }, ["Chest"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 110, + ["min"] = 15, + }, ["Gloves"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 100, + ["min"] = 15, + }, ["Helmet"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 100, + ["min"] = 15, + }, ["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", - }, - }, - ["1553_LocalArmourAndEvasion"] = { + ["max"] = 110, + ["min"] = 101, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield (Local)", + ["type"] = "explicit", + }, + }, + ["1557_LocalArmourAndEnergyShieldAndStunRecovery"] = { ["Boots"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 42, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 110, - ["min"] = 15, - }, + ["max"] = 42, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 42, + ["min"] = 6, + }, ["Helmet"] = { - ["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", - }, - }, - ["1553_LocalArmourAndEvasionAndStunRecovery"] = { + ["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", + }, + }, + ["1557_LocalArmourAndEnergyShieldSuffix"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield (Local)", + ["type"] = "explicit", + }, + }, + ["1557_LocalIncreasedArmourAndEnergyShieldAndLife"] = { ["Boots"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["max"] = 28, + ["min"] = 24, + }, ["Chest"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["max"] = 28, + ["min"] = 24, + }, ["Gloves"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["max"] = 28, + ["min"] = 24, + }, ["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", - }, - }, - ["1553_LocalArmourAndEvasionSuffix"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour and Evasion", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2451402625", - ["text"] = "#% increased Armour and Evasion (Local)", - ["type"] = "explicit", - }, - }, - ["1553_LocalIncreasedArmourAndEvasionAndLife"] = { + ["max"] = 28, + ["min"] = 24, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield (Local)", + ["type"] = "explicit", + }, + }, + ["1558_ArmourAndEnergyShield"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "+# to maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["1558_EnergyShield"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 21, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "+# to maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["1558_EvasionRatingAndEnergyShield"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 11, + }, + ["Quiver"] = { + ["max"] = 25, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "+# to maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["1558_LocalArmourAndEvasion"] = { ["Boots"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 100, + ["min"] = 15, + }, ["Chest"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 110, + ["min"] = 15, + }, ["Gloves"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 100, + ["min"] = 15, + }, ["Helmet"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 100, + ["min"] = 15, + }, ["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", - }, - }, - ["1554_LocalEvasionAndEnergyShield"] = { + ["max"] = 110, + ["min"] = 101, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Evasion", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion (Local)", + ["type"] = "explicit", + }, + }, + ["1558_LocalArmourAndEvasionAndStunRecovery"] = { ["Boots"] = { - ["max"] = 74, - ["min"] = 26, - }, + ["max"] = 42, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 110, - ["min"] = 26, - }, + ["max"] = 42, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 74, - ["min"] = 26, - }, + ["max"] = 42, + ["min"] = 6, + }, ["Helmet"] = { - ["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", - }, - }, - ["1554_LocalEvasionAndEnergyShieldAndStunRecovery"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Evasion and Energy Shield", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield (Local)", - ["type"] = "explicit", - }, - }, - ["1554_LocalEvasionAndEnergyShieldSuffix"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Evasion and Energy Shield", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield (Local)", - ["type"] = "explicit", - }, - }, - ["1554_LocalIncreasedEvasionAndEnergyShieldAndLife"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Evasion", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion (Local)", + ["type"] = "explicit", + }, + }, + ["1558_LocalArmourAndEvasionSuffix"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Evasion", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion (Local)", + ["type"] = "explicit", + }, + }, + ["1558_LocalIncreasedArmourAndEvasionAndLife"] = { + ["Boots"] = { + ["max"] = 28, + ["min"] = 24, + }, + ["Chest"] = { + ["max"] = 28, + ["min"] = 24, + }, + ["Gloves"] = { + ["max"] = 28, + ["min"] = 24, + }, + ["Helmet"] = { + ["max"] = 28, + ["min"] = 24, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Evasion", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion (Local)", + ["type"] = "explicit", + }, + }, + ["1559_LocalEnergyShield"] = { ["Boots"] = { - ["max"] = 21, - ["min"] = 12, - }, + ["max"] = 22, + ["min"] = 17, + }, ["Chest"] = { - ["max"] = 21, - ["min"] = 12, - }, + ["max"] = 69, + ["min"] = 17, + }, ["Gloves"] = { - ["max"] = 21, - ["min"] = 12, - }, + ["max"] = 22, + ["min"] = 17, + }, ["Helmet"] = { - ["max"] = 21, - ["min"] = 12, - }, + ["max"] = 45, + ["min"] = 17, + }, + ["Shield"] = { + ["max"] = 69, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to maximum Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4052037485", + ["text"] = "+# to maximum Energy Shield (Local)", + ["type"] = "explicit", + }, + }, + ["1559_LocalEvasionAndEnergyShield"] = { + ["Chest"] = { + ["max"] = 110, + ["min"] = 101, + }, ["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", - }, - }, - ["1555_LocalArmourAndEvasionAndEnergyShield"] = { + ["max"] = 110, + ["min"] = 101, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion and Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield (Local)", + ["type"] = "explicit", + }, + }, + ["1559_LocalEvasionAndEnergyShieldAndStunRecovery"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion and Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield (Local)", + ["type"] = "explicit", + }, + }, + ["1559_LocalEvasionAndEnergyShieldSuffix"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion and Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield (Local)", + ["type"] = "explicit", + }, + }, + ["1559_LocalIncreasedEvasionAndEnergyShieldAndLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion and Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield (Local)", + ["type"] = "explicit", + }, + }, + ["1560_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", - }, - }, - ["1555_LocalArmourAndEvasionAndEnergyShieldAndStunRecovery"] = { + ["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", + }, + }, + ["1560_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", - }, - }, - ["1555_LocalArmourAndEvasionAndEnergyShieldSuffix"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour, Evasion and Energy Shield", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3523867985", - ["text"] = "#% increased Armour, Evasion and Energy Shield (Local)", - ["type"] = "explicit", - }, - }, - ["1555_LocalIncreasedDefencesAndLife"] = { + ["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", + }, + }, + ["1560_LocalArmourAndEvasionAndEnergyShieldSuffix"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour, Evasion and Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield (Local)", + ["type"] = "explicit", + }, + }, + ["1560_LocalEnergyShieldPercent"] = { ["Boots"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 74, + ["min"] = 26, + }, ["Chest"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 74, + ["min"] = 26, + }, ["Gloves"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 74, + ["min"] = 26, + }, ["Helmet"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 74, + ["min"] = 26, + }, ["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", - }, - }, - ["1558_ArmourAndEnergyShield"] = { + ["max"] = 74, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield (Local)", + ["type"] = "explicit", + }, + }, + ["1560_LocalIncreasedDefencesAndLife"] = { + ["Boots"] = { + ["max"] = 28, + ["min"] = 24, + }, + ["Chest"] = { + ["max"] = 28, + ["min"] = 24, + }, + ["Gloves"] = { + ["max"] = 28, + ["min"] = 24, + }, + ["Helmet"] = { + ["max"] = 28, + ["min"] = 24, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour, Evasion and Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield (Local)", + ["type"] = "explicit", + }, + }, + ["1560_LocalIncreasedEnergyShieldAndLife"] = { + ["Boots"] = { + ["max"] = 21, + ["min"] = 12, + }, + ["Chest"] = { + ["max"] = 21, + ["min"] = 12, + }, + ["Gloves"] = { + ["max"] = 21, + ["min"] = 12, + }, + ["Helmet"] = { + ["max"] = 21, + ["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", + }, + }, + ["1561_GlobalEnergyShieldPercent"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["1562_EnergyShieldDelay"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["Shield"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "explicit", + }, + }, + ["1563_ArmourAndEnergyShield"] = { ["Belt"] = { - ["max"] = 35, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "+# to maximum Energy Shield", - ["type"] = "explicit", - }, - }, - ["1558_EnergyShield"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "+# to maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["1563_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", - }, - }, - ["1558_EnergyShieldAndDegenGracePeriod"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "+# to maximum Energy Shield", - ["type"] = "explicit", - }, - }, - ["1558_EnergyShieldAndPercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "+# to maximum Energy Shield", - ["type"] = "explicit", - }, - }, - ["1558_EnergyShieldAndRegen"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "+# to maximum Energy Shield", - ["type"] = "explicit", - }, - }, - ["1558_EvasionRatingAndEnergyShield"] = { + ["max"] = 47, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "+# to maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["1563_EnergyShieldAndDegenGracePeriod"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "+# to maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["1563_EnergyShieldAndPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "+# to maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["1563_EnergyShieldAndRegen"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "+# to maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["1563_EvasionRatingAndEnergyShield"] = { ["Belt"] = { - ["max"] = 35, - ["min"] = 11, - }, + ["max"] = 35, + ["min"] = 31, + }, ["Quiver"] = { - ["max"] = 35, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "+# to maximum Energy Shield", - ["type"] = "explicit", - }, - }, - ["1558_IncreasedEnergyShieldForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "+# to maximum Energy Shield", - ["type"] = "explicit", - }, - }, - ["1559_LocalBaseArmourAndEnergyShield"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "+# to maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["1563_IncreasedEnergyShieldForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "+# to maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["1564_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", - }, - }, - ["1559_LocalBaseArmourEnergyShieldAndLife"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to maximum Energy Shield", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4052037485", - ["text"] = "+# to maximum Energy Shield (Local)", - ["type"] = "explicit", - }, - }, - ["1559_LocalBaseEnergyShieldAndLife"] = { + ["max"] = 80, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to maximum Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4052037485", + ["text"] = "+# to maximum Energy Shield (Local)", + ["type"] = "explicit", + }, + }, + ["1564_LocalBaseArmourEnergyShieldAndLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to maximum Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4052037485", + ["text"] = "+# to maximum Energy Shield (Local)", + ["type"] = "explicit", + }, + }, + ["1564_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", - }, - }, - ["1559_LocalBaseEnergyShieldAndMana"] = { + ["max"] = 30, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to maximum Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4052037485", + ["text"] = "+# to maximum Energy Shield (Local)", + ["type"] = "explicit", + }, + }, + ["1564_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", - }, - }, - ["1559_LocalBaseEvasionRatingAndEnergyShield"] = { + ["max"] = 30, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to maximum Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4052037485", + ["text"] = "+# to maximum Energy Shield (Local)", + ["type"] = "explicit", + }, + }, + ["1564_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", - }, - }, - ["1559_LocalBaseEvasionRatingEnergyShieldAndLife"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to maximum Energy Shield", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4052037485", - ["text"] = "+# to maximum Energy Shield (Local)", - ["type"] = "explicit", - }, - }, - ["1559_LocalEnergyShield"] = { + ["max"] = 80, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to maximum Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4052037485", + ["text"] = "+# to maximum Energy Shield (Local)", + ["type"] = "explicit", + }, + }, + ["1564_LocalBaseEvasionRatingEnergyShieldAndLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to maximum Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4052037485", + ["text"] = "+# to maximum Energy Shield (Local)", + ["type"] = "explicit", + }, + }, + ["1564_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", - }, - }, - ["1560_LocalEnergyShieldAndStunRecoveryPercent"] = { + ["max"] = 85, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to maximum Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4052037485", + ["text"] = "+# to maximum Energy Shield (Local)", + ["type"] = "explicit", + }, + }, + ["1565_EnergyShieldRegeneration"] = { + ["Boots"] = { + ["max"] = 14, + ["min"] = 9, + }, + ["Gloves"] = { + ["max"] = 14, + ["min"] = 9, + }, + ["Helmet"] = { + ["max"] = 14, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "explicit", + }, + }, + ["1565_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", - }, - }, - ["1560_LocalEnergyShieldPercent"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield (Local)", + ["type"] = "explicit", + }, + }, + ["1565_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", - }, - }, - ["1560_LocalEnergyShieldPercentSuffix"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Energy Shield", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4015621042", - ["text"] = "#% increased Energy Shield (Local)", - ["type"] = "explicit", - }, - }, - ["1560_LocalIncreasedEnergyShieldAndLife"] = { + ["max"] = 110, + ["min"] = 101, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield (Local)", + ["type"] = "explicit", + }, + }, + ["1565_LocalEnergyShieldPercentSuffix"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield (Local)", + ["type"] = "explicit", + }, + }, + ["1565_LocalIncreasedEnergyShieldAndLife"] = { ["Boots"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 24, + }, ["Chest"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 24, + }, ["Gloves"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["max"] = 28, + ["min"] = 24, + }, ["Helmet"] = { - ["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", - }, - }, - ["1561_ArmourEnergyShieldForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "explicit", - }, - }, - ["1561_EnergyShieldAndManaForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "explicit", - }, - }, - ["1561_EnergyShieldAndPercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "explicit", - }, - }, - ["1561_EnergyShieldForJewel"] = { + ["max"] = 28, + ["min"] = 24, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield (Local)", + ["type"] = "explicit", + }, + }, + ["1566_ArmourEnergyShieldForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["1566_EnergyShieldAndManaForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["1566_EnergyShieldAndPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["1566_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", - }, - }, - ["1561_EvasionEnergyShieldForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "explicit", - }, - }, - ["1561_GlobalEnergyShieldPercent"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["1566_EvasionEnergyShieldForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["1566_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", - }, - }, - ["1561_LifeAndEnergyShieldForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "explicit", - }, - }, - ["1562_EnergyShieldDelay"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["1566_LifeAndEnergyShieldForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["1567_EnergyShieldDelay"] = { ["Boots"] = { - ["max"] = 66, - ["min"] = 27, - }, + ["max"] = 66, + ["min"] = 27, + }, ["Chest"] = { - ["max"] = 66, - ["min"] = 16, - }, + ["max"] = 66, + ["min"] = 27, + }, ["Gloves"] = { - ["max"] = 66, - ["min"] = 27, - }, + ["max"] = 66, + ["min"] = 27, + }, ["Helmet"] = { - ["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", - }, - }, - ["1562_EnergyShieldDelayForJewel"] = { + ["max"] = 66, + ["min"] = 27, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "explicit", + }, + }, + ["1567_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", - }, - }, - ["1565_EnergyShieldRechargeRateForJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "explicit", + }, + }, + ["1569_BaseLifeAndManaRegen"] = { + ["Amulet"] = { + ["max"] = 45, + ["min"] = 28, + }, + ["Belt"] = { + ["max"] = 45, + ["min"] = 28, + }, + ["Boots"] = { + ["max"] = 45, + ["min"] = 28, + }, + ["Gloves"] = { + ["max"] = 45, + ["min"] = 28, + }, + ["Helmet"] = { + ["max"] = 45, + ["min"] = 28, + }, + ["Quiver"] = { + ["max"] = 45, + ["min"] = 28, + }, + ["Ring"] = { + ["max"] = 45, + ["min"] = 28, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1569_IncreasedLife"] = { + ["Amulet"] = { + ["max"] = 55, + ["min"] = 15, + }, + ["Belt"] = { + ["max"] = 55, + ["min"] = 15, + }, + ["Boots"] = { + ["max"] = 70, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 85, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 70, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 70, + ["min"] = 15, + }, + ["Quiver"] = { + ["max"] = 55, + ["min"] = 15, + }, + ["Ring"] = { + ["max"] = 55, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 70, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1569_LocalIncreasedArmourAndEnergyShieldAndLife"] = { + ["Boots"] = { + ["max"] = 14, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 19, + ["min"] = 13, + }, + ["Gloves"] = { + ["max"] = 14, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 16, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 16, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1569_LocalIncreasedArmourAndEvasionAndLife"] = { + ["Boots"] = { + ["max"] = 14, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 19, + ["min"] = 13, + }, + ["Gloves"] = { + ["max"] = 14, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 16, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 16, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1569_LocalIncreasedArmourAndLife"] = { + ["Boots"] = { + ["max"] = 14, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 19, + ["min"] = 13, + }, + ["Gloves"] = { + ["max"] = 14, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 16, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 16, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1569_LocalIncreasedDefencesAndLife"] = { + ["Boots"] = { + ["max"] = 14, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 19, + ["min"] = 13, + }, + ["Gloves"] = { + ["max"] = 14, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 16, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 16, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1569_LocalIncreasedEnergyShieldAndLife"] = { + ["Boots"] = { + ["max"] = 14, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 19, + ["min"] = 13, + }, + ["Gloves"] = { + ["max"] = 14, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 16, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 16, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1569_LocalIncreasedEvasionAndEnergyShieldAndLife"] = { + ["Boots"] = { + ["max"] = 14, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 19, + ["min"] = 13, + }, + ["Gloves"] = { + ["max"] = 14, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 16, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 16, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1569_LocalIncreasedEvasionAndLife"] = { + ["Boots"] = { + ["max"] = 14, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 19, + ["min"] = 13, + }, + ["Gloves"] = { + ["max"] = 14, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 16, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 16, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1570_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", - }, - }, - ["1565_EnergyShieldRegeneration"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "explicit", + }, + }, + ["1570_EnergyShieldRegeneration"] = { ["Boots"] = { - ["max"] = 38, - ["min"] = 9, - }, + ["max"] = 38, + ["min"] = 24, + }, ["Chest"] = { - ["max"] = 38, - ["min"] = 24, - }, + ["max"] = 38, + ["min"] = 24, + }, ["Gloves"] = { - ["max"] = 38, - ["min"] = 9, - }, + ["max"] = 38, + ["min"] = 24, + }, ["Helmet"] = { - ["max"] = 38, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", - ["type"] = "explicit", - }, - }, - ["1565_EnergyShieldRegenerationPerMinuteMaven"] = { + ["max"] = 38, + ["min"] = 24, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "explicit", + }, + }, + ["1570_EnergyShieldRegenerationPerMinuteMaven"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", - ["type"] = "explicit", - }, - }, - ["1568_EnergyShieldRecoveryRate"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "explicit", + }, + }, + ["1571_PercentageLifeAndMana"] = { + ["Chest"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["1573_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", - }, - }, - ["1568_EnergyShieldRecoveryRateMaven"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_988575597", + ["text"] = "#% increased Energy Shield Recovery rate", + ["type"] = "explicit", + }, + }, + ["1573_EnergyShieldRecoveryRateMaven"] = { ["Chest"] = { - ["max"] = 15, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_988575597", - ["text"] = "#% increased Energy Shield Recovery rate", - ["type"] = "explicit", - }, - }, - ["1569_AbyssJewelLife"] = { + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_988575597", + ["text"] = "#% increased Energy Shield Recovery rate", + ["type"] = "explicit", + }, + }, + ["1574_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", - }, - }, - ["1569_BaseLifeAndMana"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, - ["1569_BaseLifeAndManaDegenGracePeriod"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, - ["1569_BaseLifeAndManaRegen"] = { + ["max"] = 40, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1574_BaseLifeAndMana"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1574_BaseLifeAndManaDegenGracePeriod"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1574_BaseLifeAndManaRegen"] = { ["Amulet"] = { - ["max"] = 60, - ["min"] = 28, - }, + ["max"] = 60, + ["min"] = 55, + }, ["Belt"] = { - ["max"] = 60, - ["min"] = 28, - }, + ["max"] = 60, + ["min"] = 55, + }, ["Boots"] = { - ["max"] = 60, - ["min"] = 28, - }, + ["max"] = 60, + ["min"] = 55, + }, ["Gloves"] = { - ["max"] = 60, - ["min"] = 28, - }, + ["max"] = 60, + ["min"] = 55, + }, ["Helmet"] = { - ["max"] = 60, - ["min"] = 28, - }, + ["max"] = 60, + ["min"] = 55, + }, ["Quiver"] = { - ["max"] = 60, - ["min"] = 28, - }, + ["max"] = 60, + ["min"] = 55, + }, ["Ring"] = { - ["max"] = 60, - ["min"] = 28, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, - ["1569_IncreasedLife"] = { + ["max"] = 60, + ["min"] = 55, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1574_BaseManaAndLifeRegen"] = { ["Amulet"] = { - ["max"] = 55, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Belt"] = { - ["max"] = 55, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Boots"] = { - ["max"] = 105, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 189, - ["min"] = 10, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Gloves"] = { - ["max"] = 105, - ["min"] = 5, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Helmet"] = { - ["max"] = 105, - ["min"] = 5, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Quiver"] = { - ["max"] = 55, - ["min"] = 15, - }, + ["max"] = 25, + ["min"] = 15, + }, ["Ring"] = { - ["max"] = 55, - ["min"] = 15, - }, - ["Shield"] = { - ["max"] = 159, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, - ["1569_IncreasedLifeAndPercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, - ["1569_IncreasedLifeForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, - ["1569_LifeAndManaForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, - ["1569_LifeAndPercentLife"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, - ["1569_LocalBaseArmourAndLife"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3325883026", + ["text"] = "Regenerate # Life per second", + ["type"] = "explicit", + }, + }, + ["1574_IncreasedLife"] = { ["Boots"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 105, + ["min"] = 5, + }, ["Chest"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 189, + ["min"] = 10, + }, ["Gloves"] = { - ["max"] = 38, - ["min"] = 18, - }, + ["max"] = 105, + ["min"] = 5, + }, ["Helmet"] = { - ["max"] = 38, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, - ["1569_LocalBaseArmourEnergyShieldAndLife"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, - ["1569_LocalBaseArmourEvasionRatingAndLife"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, - ["1569_LocalBaseEnergyShieldAndLife"] = { + ["max"] = 105, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 159, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1574_IncreasedLifeAndPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1574_IncreasedLifeForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1574_LifeAndManaForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1574_LifeAndPercentLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1574_LifeRegenerationAndManaRegeneration"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3325883026", + ["text"] = "Regenerate # Life per second", + ["type"] = "explicit", + }, + }, + ["1574_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", - }, - }, - ["1569_LocalBaseEvasionRatingAndLife"] = { + ["max"] = 38, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1574_LocalBaseArmourEnergyShieldAndLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1574_LocalBaseArmourEvasionRatingAndLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1574_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", - }, - }, - ["1569_LocalBaseEvasionRatingEnergyShieldAndLife"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, - ["1569_LocalBaseWardAndLife"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, - ["1569_LocalIncreasedArmourAndEnergyShieldAndLife"] = { + ["max"] = 38, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1574_LocalBaseEvasionRatingAndLife"] = { ["Boots"] = { - ["max"] = 26, - ["min"] = 8, - }, + ["max"] = 38, + ["min"] = 18, + }, ["Chest"] = { - ["max"] = 26, - ["min"] = 13, - }, + ["max"] = 38, + ["min"] = 18, + }, ["Gloves"] = { - ["max"] = 26, - ["min"] = 8, - }, + ["max"] = 38, + ["min"] = 18, + }, ["Helmet"] = { - ["max"] = 26, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 16, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, - ["1569_LocalIncreasedArmourAndEvasionAndLife"] = { + ["max"] = 38, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1574_LocalBaseEvasionRatingEnergyShieldAndLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1574_LocalBaseWardAndLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1574_LocalIncreasedArmourAndEnergyShieldAndLife"] = { ["Boots"] = { - ["max"] = 26, - ["min"] = 8, - }, + ["max"] = 26, + ["min"] = 17, + }, ["Chest"] = { - ["max"] = 26, - ["min"] = 13, - }, + ["max"] = 26, + ["min"] = 17, + }, ["Gloves"] = { - ["max"] = 26, - ["min"] = 8, - }, + ["max"] = 26, + ["min"] = 17, + }, ["Helmet"] = { - ["max"] = 26, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 16, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, - ["1569_LocalIncreasedArmourAndLife"] = { + ["max"] = 26, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1574_LocalIncreasedArmourAndEvasionAndLife"] = { ["Boots"] = { - ["max"] = 26, - ["min"] = 8, - }, + ["max"] = 26, + ["min"] = 17, + }, ["Chest"] = { - ["max"] = 26, - ["min"] = 13, - }, + ["max"] = 26, + ["min"] = 17, + }, ["Gloves"] = { - ["max"] = 26, - ["min"] = 8, - }, + ["max"] = 26, + ["min"] = 17, + }, ["Helmet"] = { - ["max"] = 26, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 16, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, - ["1569_LocalIncreasedDefencesAndLife"] = { + ["max"] = 26, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1574_LocalIncreasedArmourAndLife"] = { ["Boots"] = { - ["max"] = 26, - ["min"] = 8, - }, + ["max"] = 26, + ["min"] = 17, + }, ["Chest"] = { - ["max"] = 26, - ["min"] = 13, - }, + ["max"] = 26, + ["min"] = 17, + }, ["Gloves"] = { - ["max"] = 26, - ["min"] = 8, - }, + ["max"] = 26, + ["min"] = 17, + }, ["Helmet"] = { - ["max"] = 26, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 16, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, - ["1569_LocalIncreasedEnergyShieldAndLife"] = { + ["max"] = 26, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1574_LocalIncreasedDefencesAndLife"] = { ["Boots"] = { - ["max"] = 26, - ["min"] = 8, - }, + ["max"] = 26, + ["min"] = 17, + }, ["Chest"] = { - ["max"] = 26, - ["min"] = 13, - }, + ["max"] = 26, + ["min"] = 17, + }, ["Gloves"] = { - ["max"] = 26, - ["min"] = 8, - }, + ["max"] = 26, + ["min"] = 17, + }, ["Helmet"] = { - ["max"] = 26, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 16, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, - ["1569_LocalIncreasedEvasionAndEnergyShieldAndLife"] = { + ["max"] = 26, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1574_LocalIncreasedEnergyShieldAndLife"] = { ["Boots"] = { - ["max"] = 14, - ["min"] = 8, - }, + ["max"] = 26, + ["min"] = 17, + }, ["Chest"] = { - ["max"] = 19, - ["min"] = 13, - }, + ["max"] = 26, + ["min"] = 17, + }, ["Gloves"] = { - ["max"] = 14, - ["min"] = 8, - }, + ["max"] = 26, + ["min"] = 17, + }, ["Helmet"] = { - ["max"] = 16, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 16, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, - ["1569_LocalIncreasedEvasionAndLife"] = { + ["max"] = 26, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1574_LocalIncreasedEvasionAndEnergyShieldAndLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1574_LocalIncreasedEvasionAndLife"] = { ["Boots"] = { - ["max"] = 26, - ["min"] = 8, - }, + ["max"] = 26, + ["min"] = 17, + }, ["Chest"] = { - ["max"] = 26, - ["min"] = 13, - }, + ["max"] = 26, + ["min"] = 17, + }, ["Gloves"] = { - ["max"] = 26, - ["min"] = 8, - }, + ["max"] = 26, + ["min"] = 17, + }, ["Helmet"] = { - ["max"] = 26, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 16, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "explicit", - }, - }, - ["1571_IncreasedLifeAndPercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", - ["type"] = "explicit", - }, - }, - ["1571_LifeAndEnergyShieldForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", - ["type"] = "explicit", - }, - }, - ["1571_LifeAndPercentLife"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", - ["type"] = "explicit", - }, - }, - ["1571_MaximumLifeIncreasePercent"] = { + ["max"] = 26, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "explicit", + }, + }, + ["1576_IncreasedLifeAndPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["1576_LifeAndEnergyShieldForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["1576_LifeAndPercentLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["1576_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", - }, - }, - ["1571_PercentIncreasedLifeForJewel"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["1576_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", - }, - }, - ["1571_PercentageLifeAndMana"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["1576_PercentageLifeAndMana"] = { ["Chest"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", - ["type"] = "explicit", - }, - }, - ["1571_PercentageLifeAndManaForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", - ["type"] = "explicit", - }, - }, - ["1574_BaseManaAndLifeRegen"] = { + ["max"] = 10, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["1576_PercentageLifeAndManaForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["1577_LifeRegenerationRate"] = { + ["Boots"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "explicit", + }, + }, + ["1579_BaseManaAndLifeRegen"] = { + ["Amulet"] = { + ["max"] = 45, + ["min"] = 28, + }, + ["Belt"] = { + ["max"] = 45, + ["min"] = 28, + }, + ["Boots"] = { + ["max"] = 45, + ["min"] = 28, + }, + ["Gloves"] = { + ["max"] = 45, + ["min"] = 28, + }, + ["Helmet"] = { + ["max"] = 45, + ["min"] = 28, + }, + ["Quiver"] = { + ["max"] = 45, + ["min"] = 28, + }, + ["Ring"] = { + ["max"] = 45, + ["min"] = 28, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, + ["1579_IncreasedMana"] = { + ["1HAxe"] = { + ["max"] = 74, + ["min"] = 35, + }, + ["1HMace"] = { + ["max"] = 74, + ["min"] = 35, + }, + ["1HSword"] = { + ["max"] = 74, + ["min"] = 35, + }, + ["1HWeapon"] = { + ["max"] = 74, + ["min"] = 35, + }, + ["2HAxe"] = { + ["max"] = 94, + ["min"] = 55, + }, + ["2HMace"] = { + ["max"] = 94, + ["min"] = 55, + }, + ["2HSword"] = { + ["max"] = 94, + ["min"] = 55, + }, + ["2HWeapon"] = { + ["max"] = 94, + ["min"] = 55, + }, ["Amulet"] = { - ["max"] = 33.3, - ["min"] = 15, - }, + ["max"] = 54, + ["min"] = 25, + }, ["Belt"] = { - ["max"] = 33.3, - ["min"] = 15, - }, + ["max"] = 54, + ["min"] = 25, + }, ["Boots"] = { - ["max"] = 33.3, - ["min"] = 15, - }, + ["max"] = 54, + ["min"] = 25, + }, + ["Bow"] = { + ["max"] = 74, + ["min"] = 35, + }, + ["Chest"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["Claw"] = { + ["max"] = 74, + ["min"] = 35, + }, + ["Dagger"] = { + ["max"] = 74, + ["min"] = 35, + }, ["Gloves"] = { - ["max"] = 33.3, - ["min"] = 15, - }, + ["max"] = 54, + ["min"] = 25, + }, ["Helmet"] = { - ["max"] = 33.3, - ["min"] = 15, - }, + ["max"] = 54, + ["min"] = 25, + }, ["Quiver"] = { - ["max"] = 33.3, - ["min"] = 15, - }, + ["max"] = 54, + ["min"] = 25, + }, ["Ring"] = { - ["max"] = 33.3, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3325883026", - ["text"] = "Regenerate # Life per second", - ["type"] = "explicit", - }, - }, - ["1574_LifeRegeneration"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["Shield"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["Staff"] = { + ["max"] = 94, + ["min"] = 55, + }, + ["Wand"] = { + ["max"] = 74, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, + ["1579_IncreasedManaAndRegen"] = { + ["Amulet"] = { + ["max"] = 40, + ["min"] = 26, + }, + ["Ring"] = { + ["max"] = 40, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, + ["1579_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", - }, - }, - ["1574_LifeRegenerationAndManaRegeneration"] = { + ["max"] = 152, + ["min"] = 128.1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3325883026", + ["text"] = "Regenerate # Life per second", + ["type"] = "explicit", + }, + }, + ["1579_LifeRegenerationAndPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3325883026", + ["text"] = "Regenerate # Life per second", + ["type"] = "explicit", + }, + }, + ["1579_ManaAndDamageTakenGoesToManaPercent"] = { ["Amulet"] = { - ["max"] = 20, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3325883026", - ["text"] = "Regenerate # Life per second", - ["type"] = "explicit", - }, - }, - ["1574_LifeRegenerationAndPercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3325883026", - ["text"] = "Regenerate # Life per second", - ["type"] = "explicit", - }, - }, - ["1575_BaseManaAndLifeDegenGracePeriod"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_771127912", - ["text"] = "Lose # Life per second", - ["type"] = "explicit", - }, - }, - ["1575_LifeDegenerationAndPercentGracePeriod"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_771127912", - ["text"] = "Lose # Life per second", - ["type"] = "explicit", - }, - }, - ["1575_LifeDegenerationGracePeriod"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_771127912", - ["text"] = "Lose # Life per second", - ["type"] = "explicit", - }, - }, - ["1577_LifeRegenerationRate"] = { + ["max"] = 40, + ["min"] = 26, + }, + ["Ring"] = { + ["max"] = 40, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, + ["1579_ManaAndManaCostPercent"] = { + ["Amulet"] = { + ["max"] = 40, + ["min"] = 26, + }, + ["Ring"] = { + ["max"] = 40, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, + ["1580_BaseManaAndLifeDegenGracePeriod"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_771127912", + ["text"] = "Lose # Life per second", + ["type"] = "explicit", + }, + }, + ["1580_LifeDegenerationAndPercentGracePeriod"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_771127912", + ["text"] = "Lose # Life per second", + ["type"] = "explicit", + }, + }, + ["1580_LifeDegenerationGracePeriod"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_771127912", + ["text"] = "Lose # Life per second", + ["type"] = "explicit", + }, + }, + ["1580_PercentageLifeAndMana"] = { + ["Chest"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "explicit", + }, + }, + ["1582_BaseLifeAndManaRegen"] = { + ["Amulet"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["Belt"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["Boots"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["Gloves"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["Helmet"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["Quiver"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["Ring"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4291461939", + ["text"] = "Regenerate # Mana per second", + ["type"] = "explicit", + }, + }, + ["1582_IncreasedManaAndRegen"] = { + ["Amulet"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["Ring"] = { + ["max"] = 4, + ["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", + }, + }, + ["1582_LifeRegenerationRate"] = { ["Boots"] = { - ["max"] = 21, - ["min"] = 5, - }, + ["max"] = 21, + ["min"] = 9, + }, ["Chest"] = { - ["max"] = 21, - ["min"] = 9, - }, + ["max"] = 21, + ["min"] = 9, + }, ["Gloves"] = { - ["max"] = 21, - ["min"] = 5, - }, + ["max"] = 21, + ["min"] = 9, + }, ["Helmet"] = { - ["max"] = 21, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", - ["type"] = "explicit", - }, - }, - ["1578_LifeRecoveryRate"] = { + ["max"] = 21, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "explicit", + }, + }, + ["1583_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", - }, - }, - ["1578_LifeRecoveryRateMaven"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3240073117", + ["text"] = "#% increased Life Recovery rate", + ["type"] = "explicit", + }, + }, + ["1583_LifeRecoveryRateMaven"] = { ["Chest"] = { - ["max"] = 15, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3240073117", - ["text"] = "#% increased Life Recovery rate", - ["type"] = "explicit", - }, - }, - ["1579_AbyssJewelMana"] = { + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3240073117", + ["text"] = "#% increased Life Recovery rate", + ["type"] = "explicit", + }, + }, + ["1584_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", - }, - }, - ["1579_BaseLifeAndMana"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, - ["1579_BaseManaAndLifeDegenGracePeriod"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, - ["1579_BaseManaAndLifeRegen"] = { + ["max"] = 40, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, + ["1584_BaseLifeAndMana"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, + ["1584_BaseManaAndLifeDegenGracePeriod"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, + ["1584_BaseManaAndLifeRegen"] = { ["Amulet"] = { - ["max"] = 60, - ["min"] = 28, - }, + ["max"] = 60, + ["min"] = 55, + }, ["Belt"] = { - ["max"] = 60, - ["min"] = 28, - }, + ["max"] = 60, + ["min"] = 55, + }, ["Boots"] = { - ["max"] = 60, - ["min"] = 28, - }, + ["max"] = 60, + ["min"] = 55, + }, ["Gloves"] = { - ["max"] = 60, - ["min"] = 28, - }, + ["max"] = 60, + ["min"] = 55, + }, ["Helmet"] = { - ["max"] = 60, - ["min"] = 28, - }, + ["max"] = 60, + ["min"] = 55, + }, ["Quiver"] = { - ["max"] = 60, - ["min"] = 28, - }, + ["max"] = 60, + ["min"] = 55, + }, ["Ring"] = { - ["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"] = 60, + ["min"] = 55, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, + ["1584_IncreasedMana"] = { ["1HMace"] = { - ["max"] = 159, - ["min"] = 30, - }, - ["1HSword"] = { - ["max"] = 74, - ["min"] = 35, - }, + ["max"] = 159, + ["min"] = 30, + }, ["1HWeapon"] = { - ["max"] = 159, - ["min"] = 30, - }, - ["2HAxe"] = { - ["max"] = 94, - ["min"] = 55, - }, - ["2HMace"] = { - ["max"] = 94, - ["min"] = 55, - }, - ["2HSword"] = { - ["max"] = 94, - ["min"] = 55, - }, + ["max"] = 159, + ["min"] = 30, + }, ["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, - }, - ["Bow"] = { - ["max"] = 74, - ["min"] = 35, - }, + ["max"] = 77, + ["min"] = 15, + }, ["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, - }, - ["Quiver"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 77, + ["min"] = 15, + }, ["Ring"] = { - ["max"] = 78, - ["min"] = 15, - }, - ["Shield"] = { - ["max"] = 54, - ["min"] = 25, - }, + ["max"] = 78, + ["min"] = 15, + }, ["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", - }, - }, - ["1579_IncreasedManaAndBaseCost"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, - ["1579_IncreasedManaAndCost"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, - ["1579_IncreasedManaAndCostNew"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, - ["1579_IncreasedManaAndDegenGracePeriod"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, - ["1579_IncreasedManaAndOnHit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, - ["1579_IncreasedManaAndPercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, - ["1579_IncreasedManaAndRegen"] = { + ["max"] = 159, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, + ["1584_IncreasedManaAndBaseCost"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, + ["1584_IncreasedManaAndCost"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, + ["1584_IncreasedManaAndCostNew"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, + ["1584_IncreasedManaAndDegenGracePeriod"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, + ["1584_IncreasedManaAndOnHit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, + ["1584_IncreasedManaAndPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, + ["1584_IncreasedManaAndRegen"] = { ["Amulet"] = { - ["max"] = 55, - ["min"] = 26, - }, + ["max"] = 55, + ["min"] = 51, + }, ["Ring"] = { - ["max"] = 55, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, - ["1579_IncreasedManaAndReservation"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, - ["1579_IncreasedManaForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, - ["1579_LifeAndManaForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, - ["1579_LocalBaseEnergyShieldAndMana"] = { + ["max"] = 55, + ["min"] = 51, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, + ["1584_IncreasedManaAndReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, + ["1584_IncreasedManaForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, + ["1584_LifeAndManaForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, + ["1584_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", - }, - }, - ["1579_ManaAndDamageTakenGoesToManaPercent"] = { + ["max"] = 25, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, + ["1584_ManaAndDamageTakenGoesToManaPercent"] = { ["Amulet"] = { - ["max"] = 55, - ["min"] = 26, - }, + ["max"] = 55, + ["min"] = 51, + }, ["Ring"] = { - ["max"] = 55, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, - ["1579_ManaAndManaCostPercent"] = { + ["max"] = 55, + ["min"] = 51, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, + ["1584_ManaAndManaCostPercent"] = { + ["Amulet"] = { + ["max"] = 55, + ["min"] = 51, + }, + ["Ring"] = { + ["max"] = 55, + ["min"] = 51, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, + ["1584_ManaRegeneration"] = { + ["1HAxe"] = { + ["max"] = 40, + ["min"] = 20, + }, + ["1HMace"] = { + ["max"] = 40, + ["min"] = 20, + }, + ["1HSword"] = { + ["max"] = 40, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 20, + }, + ["2HAxe"] = { + ["max"] = 60, + ["min"] = 30, + }, + ["2HMace"] = { + ["max"] = 60, + ["min"] = 30, + }, + ["2HSword"] = { + ["max"] = 60, + ["min"] = 30, + }, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 30, + }, ["Amulet"] = { - ["max"] = 55, - ["min"] = 26, - }, + ["max"] = 40, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 60, + ["min"] = 30, + }, + ["Claw"] = { + ["max"] = 40, + ["min"] = 20, + }, + ["Dagger"] = { + ["max"] = 40, + ["min"] = 20, + }, ["Ring"] = { - ["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"] = 40, + ["min"] = 20, + }, + ["Shield"] = { + ["max"] = 40, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 60, + ["min"] = 30, + }, + ["Wand"] = { + ["max"] = 40, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + }, + ["1584_MinionDamageOnWeaponAndMana"] = { + ["1HWeapon"] = { + ["max"] = 45, + ["min"] = 17, + }, + ["Wand"] = { + ["max"] = 45, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, + ["1584_SpellDamageAndManaRegenerationRate"] = { + ["1HAxe"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["1HMace"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["1HSword"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["2HAxe"] = { + ["max"] = 30, + ["min"] = 16, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 16, + }, + ["2HSword"] = { + ["max"] = 30, + ["min"] = 16, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 16, + }, + ["Claw"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["Dagger"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 16, + }, ["Wand"] = { - ["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"] = 15, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + }, + ["1584_TwoHandWeaponSpellDamageAndMana"] = { + ["2HWeapon"] = { + ["max"] = 64, + ["min"] = 26, + }, ["Staff"] = { - ["max"] = 64, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "explicit", - }, - }, - ["1579_WeaponSpellDamageAndMana"] = { + ["max"] = 64, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, + ["1584_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", - }, - }, - ["1580_EnergyShieldAndManaForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", - ["type"] = "explicit", - }, - }, - ["1580_IncreasedManaAndPercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", - ["type"] = "explicit", - }, - }, - ["1580_MaximumManaIncreasePercent"] = { + ["max"] = 45, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "explicit", + }, + }, + ["1585_EnergyShieldAndManaForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "explicit", + }, + }, + ["1585_IncreasedManaAndPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "explicit", + }, + }, + ["1585_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", - }, - }, - ["1580_MaximumManaIncreasePercentMaven"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "explicit", + }, + }, + ["1585_MaximumManaIncreasePercentMaven"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", - ["type"] = "explicit", - }, - }, - ["1580_MaximumManaIncreaseShaper"] = { + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "explicit", + }, + }, + ["1585_MaximumManaIncreaseShaper"] = { ["Chest"] = { - ["max"] = 18, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", - ["type"] = "explicit", - }, - }, - ["1580_PercentIncreasedManaForJewel"] = { + ["max"] = 18, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "explicit", + }, + }, + ["1585_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", - }, - }, - ["1580_PercentageLifeAndMana"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "explicit", + }, + }, + ["1585_PercentageLifeAndMana"] = { ["Chest"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", - ["type"] = "explicit", - }, - }, - ["1580_PercentageLifeAndManaForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", - ["type"] = "explicit", - }, - }, - ["1581_BaseManaRegeneration"] = { + ["max"] = 10, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "explicit", + }, + }, + ["1585_PercentageLifeAndManaForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "explicit", + }, + }, + ["1586_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", - }, - }, - ["1582_AddedManaRegeneration"] = { + ["max"] = 0.4, + ["min"] = 0.3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3188455409", + ["text"] = "Regenerate #% of Mana per second", + ["type"] = "explicit", + }, + }, + ["1587_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", - }, - }, - ["1582_AddedManaRegenerationMaven"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4291461939", + ["text"] = "Regenerate # Mana per second", + ["type"] = "explicit", + }, + }, + ["1587_AddedManaRegenerationMaven"] = { ["Helmet"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4291461939", - ["text"] = "Regenerate # Mana per second", - ["type"] = "explicit", - }, - }, - ["1582_BaseLifeAndManaRegen"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4291461939", + ["text"] = "Regenerate # Mana per second", + ["type"] = "explicit", + }, + }, + ["1587_BaseLifeAndManaRegen"] = { ["Amulet"] = { - ["max"] = 5.3, - ["min"] = 2, - }, + ["max"] = 5.3, + ["min"] = 5.3, + }, ["Belt"] = { - ["max"] = 5.3, - ["min"] = 2, - }, + ["max"] = 5.3, + ["min"] = 5.3, + }, ["Boots"] = { - ["max"] = 5.3, - ["min"] = 2, - }, + ["max"] = 5.3, + ["min"] = 5.3, + }, ["Gloves"] = { - ["max"] = 5.3, - ["min"] = 2, - }, + ["max"] = 5.3, + ["min"] = 5.3, + }, ["Helmet"] = { - ["max"] = 5.3, - ["min"] = 2, - }, + ["max"] = 5.3, + ["min"] = 5.3, + }, ["Quiver"] = { - ["max"] = 5.3, - ["min"] = 2, - }, + ["max"] = 5.3, + ["min"] = 5.3, + }, ["Ring"] = { - ["max"] = 5.3, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4291461939", - ["text"] = "Regenerate # Mana per second", - ["type"] = "explicit", - }, - }, - ["1582_IncreasedManaAndRegen"] = { + ["max"] = 5.3, + ["min"] = 5.3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4291461939", + ["text"] = "Regenerate # Mana per second", + ["type"] = "explicit", + }, + }, + ["1587_IncreasedManaAndRegen"] = { ["Amulet"] = { - ["max"] = 5.3, - ["min"] = 2, - }, + ["max"] = 5.3, + ["min"] = 5.3, + }, ["Ring"] = { - ["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", - }, - }, - ["1583_BaseLifeAndManaDegenGracePeriod"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_838272676", - ["text"] = "Lose # Mana per second", - ["type"] = "explicit", - }, - }, - ["1583_IncreasedManaAndDegenGracePeriod"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_838272676", - ["text"] = "Lose # Mana per second", - ["type"] = "explicit", - }, - }, - ["1583_ManaDegenerationGracePeriod"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_838272676", - ["text"] = "Lose # Mana per second", - ["type"] = "explicit", - }, - }, - ["1584_IncreasedManaRegenForJewel"] = { + ["max"] = 5.3, + ["min"] = 5.3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4291461939", + ["text"] = "Regenerate # Mana per second", + ["type"] = "explicit", + }, + }, + ["1588_BaseLifeAndManaDegenGracePeriod"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_838272676", + ["text"] = "Lose # Mana per second", + ["type"] = "explicit", + }, + }, + ["1588_IncreasedManaAndDegenGracePeriod"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_838272676", + ["text"] = "Lose # Mana per second", + ["type"] = "explicit", + }, + }, + ["1588_ManaDegenerationGracePeriod"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_838272676", + ["text"] = "Lose # Mana per second", + ["type"] = "explicit", + }, + }, + ["1589_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", - }, - }, - ["1584_ManaRegeneration"] = { - ["1HAxe"] = { - ["max"] = 40, - ["min"] = 20, - }, + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + }, + ["1589_ManaRegeneration"] = { ["1HMace"] = { - ["max"] = 69, - ["min"] = 10, - }, - ["1HSword"] = { - ["max"] = 40, - ["min"] = 20, - }, + ["max"] = 69, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 10, - }, - ["2HAxe"] = { - ["max"] = 60, - ["min"] = 30, - }, - ["2HMace"] = { - ["max"] = 60, - ["min"] = 30, - }, - ["2HSword"] = { - ["max"] = 60, - ["min"] = 30, - }, + ["max"] = 69, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 105, - ["min"] = 20, - }, + ["max"] = 105, + ["min"] = 20, + }, ["Amulet"] = { - ["max"] = 76, - ["min"] = 10, - }, - ["Bow"] = { - ["max"] = 60, - ["min"] = 30, - }, + ["max"] = 76, + ["min"] = 10, + }, ["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", - }, - }, - ["1584_ManaRegenerationMaven"] = { + ["max"] = 69, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + }, + ["1589_ManaRegenerationMaven"] = { ["Helmet"] = { - ["max"] = 70, - ["min"] = 56, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "explicit", - }, - }, - ["1584_SpellDamageAndManaRegenerationRate"] = { + ["max"] = 70, + ["min"] = 56, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + }, + ["1589_SpellDamageAndManaRegenerationRate"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HAxe"] = { - ["max"] = 40, - ["min"] = 16, - }, + ["max"] = 40, + ["min"] = 18, + }, ["2HMace"] = { - ["max"] = 40, - ["min"] = 16, - }, + ["max"] = 40, + ["min"] = 18, + }, ["2HSword"] = { - ["max"] = 40, - ["min"] = 16, - }, + ["max"] = 40, + ["min"] = 18, + }, ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 16, - }, + ["max"] = 40, + ["min"] = 18, + }, ["Bow"] = { - ["max"] = 40, - ["min"] = 18, - }, + ["max"] = 40, + ["min"] = 18, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Staff"] = { - ["max"] = 40, - ["min"] = 16, - }, + ["max"] = 40, + ["min"] = 18, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "explicit", - }, - }, - ["1586_ManaRecoveryRate"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + }, + ["1591_ManaRecoveryRate"] = { ["Amulet"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["Belt"] = { - ["max"] = 12, - ["min"] = 7, - }, - ["Chest"] = { - ["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", - }, - }, - ["158_DelveStrengthGemLevel"] = { - ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 12, + ["min"] = 7, + }, ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_916797432", - ["text"] = "+# to Level of Socketed Strength Gems", - ["type"] = "explicit", - }, - }, - ["158_PercentageStrengthMaven"] = { - ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3513180117", + ["text"] = "#% increased Mana Recovery rate", + ["type"] = "explicit", + }, + }, + ["1591_ManaRecoveryRateMaven"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_916797432", - ["text"] = "+# to Level of Socketed Strength Gems", - ["type"] = "explicit", - }, - }, - ["1592_ItemFoundQuantityIncrease"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_884586851", - ["text"] = "#% increased Quantity of Items found", - ["type"] = "explicit", - }, - }, - ["1596_ItemFoundRarityIncrease"] = { + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3513180117", + ["text"] = "#% increased Mana Recovery rate", + ["type"] = "explicit", + }, + }, + ["1597_ItemFoundQuantityIncrease"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_884586851", + ["text"] = "#% increased Quantity of Items found", + ["type"] = "explicit", + }, + }, + ["1601_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", - }, - }, - ["1596_ItemFoundRarityIncreasePrefix"] = { + ["max"] = 26, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "explicit", + }, + }, + ["1601_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", - }, - }, - ["1596_ItemRarityForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "explicit", - }, - }, - ["1603_ExperienceIncrease"] = { + ["max"] = 28, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "explicit", + }, + }, + ["1601_ItemRarityForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "explicit", + }, + }, + ["1608_ExperienceIncrease"] = { ["Ring"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3666934677", - ["text"] = "#% increased Experience gain", - ["type"] = "explicit", - }, - }, - ["1608_GlobalIncreaseSpellSkillGemLevel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3666934677", + ["text"] = "#% increased Experience gain", + ["type"] = "explicit", + }, + }, + ["1613_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", - }, - }, - ["1609_GlobalIncreasePhysicalSpellSkillGemLevel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_124131830", + ["text"] = "+# to Level of all Spell Skill Gems", + ["type"] = "explicit", + }, + }, + ["1614_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", - }, - }, - ["160_DelveDexterityGemLevel"] = { - ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1600707273", + ["text"] = "+# to Level of all Physical Spell Skill Gems", + ["type"] = "explicit", + }, + }, + ["1615_GlobalIncreaseFireSpellSkillGemLevel"] = { ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 3, + ["min"] = 1, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 3, + ["min"] = 1, + }, ["Wand"] = { - ["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, - }, - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2718698372", - ["text"] = "+# to Level of Socketed Dexterity Gems", - ["type"] = "explicit", - }, - }, - ["1610_GlobalIncreaseFireSpellSkillGemLevel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_591105508", + ["text"] = "+# to Level of all Fire Spell Skill Gems", + ["type"] = "explicit", + }, + }, + ["1616_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_591105508", - ["text"] = "+# to Level of all Fire Spell Skill Gems", - ["type"] = "explicit", - }, - }, - ["1611_GlobalIncreaseColdSpellSkillGemLevel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2254480358", + ["text"] = "+# to Level of all Cold Spell Skill Gems", + ["type"] = "explicit", + }, + }, + ["1617_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_2254480358", - ["text"] = "+# to Level of all Cold Spell Skill Gems", - ["type"] = "explicit", - }, - }, - ["1612_GlobalIncreaseLightningSpellSkillGemLevel"] = { - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1545858329", + ["text"] = "+# to Level of all Lightning Spell Skill Gems", + ["type"] = "explicit", + }, + }, + ["1618_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_1545858329", - ["text"] = "+# to Level of all Lightning Spell Skill Gems", - ["type"] = "explicit", - }, - }, - ["1613_GlobalIncreaseChaosSpellSkillGemLevel"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["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, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4226189338", + ["text"] = "+# to Level of all Chaos Spell Skill Gems", + ["type"] = "explicit", + }, + }, + ["1619_AllResistances"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 12, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2901986750", + ["text"] = "+#% to all Elemental Resistances", + ["type"] = "explicit", + }, + }, + ["1619_AllResistancesMinionResistances"] = { + ["Amulet"] = { + ["max"] = 9, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 9, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2901986750", + ["text"] = "+#% to all Elemental Resistances", + ["type"] = "explicit", + }, + }, + ["1619_GlobalIncreaseMinionSpellSkillGemLevel"] = { + ["1HWeapon"] = { + ["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", - }, - }, - ["1616_MinionGlobalSkillLevel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2162097452", + ["text"] = "+# to Level of all Minion Skill Gems", + ["type"] = "explicit", + }, + }, + ["1621_MinionGlobalSkillLevel"] = { ["Boots"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3235814433", - ["text"] = "+# to Level of all Raise Spectre Gems", - ["type"] = "explicit", - }, - }, - ["1619_AllResistances"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_skill_29", + ["text"] = "+# to Level of all Raise Spectre Gems", + ["type"] = "explicit", + }, + }, + ["1624_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", - }, - }, - ["1619_AllResistancesForJewel"] = { + ["max"] = 18, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2901986750", + ["text"] = "+#% to all Elemental Resistances", + ["type"] = "explicit", + }, + }, + ["1624_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", - }, - }, - ["1619_AllResistancesMaven"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2901986750", + ["text"] = "+#% to all Elemental Resistances", + ["type"] = "explicit", + }, + }, + ["1624_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", - }, - }, - ["1619_AllResistancesMinionResistances"] = { + ["max"] = 22, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2901986750", + ["text"] = "+#% to all Elemental Resistances", + ["type"] = "explicit", + }, + }, + ["1625_FireResistance"] = { ["Amulet"] = { - ["max"] = 9, - ["min"] = 4, - }, - ["Ring"] = { - ["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, - }, - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 28, + ["min"] = 16, + }, + ["Belt"] = { + ["max"] = 35, + ["min"] = 16, + }, ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 35, + ["min"] = 16, + }, ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 35, + ["min"] = 16, + }, ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 35, + ["min"] = 16, + }, ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Staff"] = { - ["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", - }, - }, - ["161_PercentageIntelligenceMaven"] = { - ["Amulet"] = { - ["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", - }, - }, - ["1623_MaximumFireResist"] = { + ["max"] = 35, + ["min"] = 16, + }, + ["Quiver"] = { + ["max"] = 35, + ["min"] = 16, + }, + ["Ring"] = { + ["max"] = 28, + ["min"] = 16, + }, + ["Shield"] = { + ["max"] = 35, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3372524247", + ["text"] = "+#% to Fire Resistance", + ["type"] = "explicit", + }, + }, + ["1628_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", - }, - }, - ["1623_MaximumFireResistanceForJewel"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4095671657", + ["text"] = "+#% to maximum Fire Resistance", + ["type"] = "explicit", + }, + }, + ["1628_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", - }, - }, - ["1625_FireDamageAvoidanceMaven"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4095671657", + ["text"] = "+#% to maximum Fire Resistance", + ["type"] = "explicit", + }, + }, + ["1630_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", - }, - }, - ["1625_FireResistance"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3372524247", + ["text"] = "+#% to Fire Resistance", + ["type"] = "explicit", + }, + }, + ["1630_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", - }, - }, - ["1625_FireResistanceAilments"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3372524247", - ["text"] = "+#% to Fire Resistance", - ["type"] = "explicit", - }, - }, - ["1625_FireResistanceEnemyLeech"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3372524247", - ["text"] = "+#% to Fire Resistance", - ["type"] = "explicit", - }, - }, - ["1625_FireResistanceForJewel"] = { + ["max"] = 48, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3372524247", + ["text"] = "+#% to Fire Resistance", + ["type"] = "explicit", + }, + }, + ["1630_FireResistanceAilments"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3372524247", + ["text"] = "+#% to Fire Resistance", + ["type"] = "explicit", + }, + }, + ["1630_FireResistanceEnemyLeech"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3372524247", + ["text"] = "+#% to Fire Resistance", + ["type"] = "explicit", + }, + }, + ["1630_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", - }, - }, - ["1625_FireResistanceLeech"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3372524247", - ["text"] = "+#% to Fire Resistance", - ["type"] = "explicit", - }, - }, - ["1625_FireResistancePhysTakenAsFire"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3372524247", - ["text"] = "+#% to Fire Resistance", - ["type"] = "explicit", - }, - }, - ["1625_FireResistancePrefix"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3372524247", - ["text"] = "+#% to Fire Resistance", - ["type"] = "explicit", - }, - }, - ["1629_MaximumColdResist"] = { - ["Gloves"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3372524247", + ["text"] = "+#% to Fire Resistance", + ["type"] = "explicit", + }, + }, + ["1630_FireResistanceLeech"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3372524247", + ["text"] = "+#% to Fire Resistance", + ["type"] = "explicit", + }, + }, + ["1630_FireResistancePhysTakenAsFire"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3372524247", + ["text"] = "+#% to Fire Resistance", + ["type"] = "explicit", + }, + }, + ["1630_FireResistancePrefix"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3372524247", + ["text"] = "+#% to Fire Resistance", + ["type"] = "explicit", + }, + }, + ["1631_ColdResistance"] = { + ["Amulet"] = { + ["max"] = 28, + ["min"] = 16, + }, + ["Belt"] = { + ["max"] = 35, + ["min"] = 16, + }, + ["Boots"] = { + ["max"] = 35, + ["min"] = 16, + }, + ["Chest"] = { + ["max"] = 35, + ["min"] = 16, + }, + ["Gloves"] = { + ["max"] = 35, + ["min"] = 16, + }, + ["Helmet"] = { + ["max"] = 35, + ["min"] = 16, + }, + ["Quiver"] = { + ["max"] = 35, + ["min"] = 16, + }, + ["Ring"] = { + ["max"] = 28, + ["min"] = 16, + }, ["Shield"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3676141501", - ["text"] = "+#% to maximum Cold Resistance", - ["type"] = "explicit", - }, - }, - ["1629_MaximumColdResistanceForJewel"] = { + ["max"] = 35, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4220027924", + ["text"] = "+#% to Cold Resistance", + ["type"] = "explicit", + }, + }, + ["1634_MaximumColdResist"] = { + ["Gloves"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3676141501", + ["text"] = "+#% to maximum Cold Resistance", + ["type"] = "explicit", + }, + }, + ["1634_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", - }, - }, - ["162_LocalIncreaseSocketedGemLevel"] = { - ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2843100721", - ["text"] = "+# to Level of Socketed Gems", - ["type"] = "explicit", - }, - }, - ["1631_ColdDamageAvoidanceMaven"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3676141501", + ["text"] = "+#% to maximum Cold Resistance", + ["type"] = "explicit", + }, + }, + ["1636_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", - }, - }, - ["1631_ColdResistance"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4220027924", + ["text"] = "+#% to Cold Resistance", + ["type"] = "explicit", + }, + }, + ["1636_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", - }, - }, - ["1631_ColdResistanceAilments"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4220027924", - ["text"] = "+#% to Cold Resistance", - ["type"] = "explicit", - }, - }, - ["1631_ColdResistanceEnemyLeech"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4220027924", - ["text"] = "+#% to Cold Resistance", - ["type"] = "explicit", - }, - }, - ["1631_ColdResistanceForJewel"] = { + ["max"] = 48, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4220027924", + ["text"] = "+#% to Cold Resistance", + ["type"] = "explicit", + }, + }, + ["1636_ColdResistanceAilments"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4220027924", + ["text"] = "+#% to Cold Resistance", + ["type"] = "explicit", + }, + }, + ["1636_ColdResistanceEnemyLeech"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4220027924", + ["text"] = "+#% to Cold Resistance", + ["type"] = "explicit", + }, + }, + ["1636_ColdResistanceForJewel"] = { ["AbyssJewel"] = { - ["max"] = 15, - ["min"] = 12, - }, + ["max"] = 15, + ["min"] = 12, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 12, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4220027924", + ["text"] = "+#% to Cold Resistance", + ["type"] = "explicit", + }, + }, + ["1636_ColdResistanceLeech"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4220027924", + ["text"] = "+#% to Cold Resistance", + ["type"] = "explicit", + }, + }, + ["1636_ColdResistancePhysTakenAsCold"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4220027924", + ["text"] = "+#% to Cold Resistance", + ["type"] = "explicit", + }, + }, + ["1636_ColdResistancePrefix"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4220027924", + ["text"] = "+#% to Cold Resistance", + ["type"] = "explicit", + }, + }, + ["1636_LightningResistance"] = { + ["Amulet"] = { + ["max"] = 28, + ["min"] = 16, + }, + ["Belt"] = { + ["max"] = 35, + ["min"] = 16, + }, + ["Boots"] = { + ["max"] = 35, + ["min"] = 16, + }, + ["Chest"] = { + ["max"] = 35, + ["min"] = 16, + }, + ["Gloves"] = { + ["max"] = 35, + ["min"] = 16, + }, + ["Helmet"] = { + ["max"] = 35, + ["min"] = 16, + }, + ["Quiver"] = { + ["max"] = 35, + ["min"] = 16, + }, + ["Ring"] = { + ["max"] = 28, + ["min"] = 16, + }, + ["Shield"] = { + ["max"] = 35, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1671376347", + ["text"] = "+#% to Lightning Resistance", + ["type"] = "explicit", + }, + }, + ["1639_MaximumLightningResistance"] = { + ["Helmet"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1011760251", + ["text"] = "+#% to maximum Lightning Resistance", + ["type"] = "explicit", + }, + }, + ["1639_MaximumLightningResistanceForJewel"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 12, - }, + ["max"] = 2, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4220027924", - ["text"] = "+#% to Cold Resistance", - ["type"] = "explicit", - }, - }, - ["1631_ColdResistanceLeech"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4220027924", - ["text"] = "+#% to Cold Resistance", - ["type"] = "explicit", - }, - }, - ["1631_ColdResistancePhysTakenAsCold"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4220027924", - ["text"] = "+#% to Cold Resistance", - ["type"] = "explicit", - }, - }, - ["1631_ColdResistancePrefix"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4220027924", - ["text"] = "+#% to Cold Resistance", - ["type"] = "explicit", - }, - }, - ["1634_MaximumLightningResistance"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1011760251", + ["text"] = "+#% to maximum Lightning Resistance", + ["type"] = "explicit", + }, + }, + ["163_DelveStrengthGemLevel"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, ["Helmet"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["Shield"] = { - ["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, - }, - ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1011760251", - ["text"] = "+#% to maximum Lightning Resistance", - ["type"] = "explicit", - }, - }, - ["1636_LightningDamageAvoidanceMaven"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_916797432", + ["text"] = "+# to Level of Socketed Strength Gems", + ["type"] = "explicit", + }, + }, + ["163_PercentageStrengthMaven"] = { + ["Amulet"] = { + ["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", + }, + }, + ["1641_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", - }, - }, - ["1636_LightningResistance"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1671376347", + ["text"] = "+#% to Lightning Resistance", + ["type"] = "explicit", + }, + }, + ["1641_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"] = 18, + }, ["Chest"] = { - ["max"] = 48, - ["min"] = 16, - }, + ["max"] = 48, + ["min"] = 18, + }, ["Gloves"] = { - ["max"] = 48, - ["min"] = 16, - }, + ["max"] = 48, + ["min"] = 18, + }, ["Helmet"] = { - ["max"] = 48, - ["min"] = 16, - }, + ["max"] = 48, + ["min"] = 18, + }, ["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", - }, - }, - ["1636_LightningResistanceAilments"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1671376347", - ["text"] = "+#% to Lightning Resistance", - ["type"] = "explicit", - }, - }, - ["1636_LightningResistanceEnemyLeech"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1671376347", - ["text"] = "+#% to Lightning Resistance", - ["type"] = "explicit", - }, - }, - ["1636_LightningResistanceForJewel"] = { + ["max"] = 48, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1671376347", + ["text"] = "+#% to Lightning Resistance", + ["type"] = "explicit", + }, + }, + ["1641_LightningResistanceAilments"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1671376347", + ["text"] = "+#% to Lightning Resistance", + ["type"] = "explicit", + }, + }, + ["1641_LightningResistanceEnemyLeech"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1671376347", + ["text"] = "+#% to Lightning Resistance", + ["type"] = "explicit", + }, + }, + ["1641_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", - }, - }, - ["1636_LightningResistanceLeech"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1671376347", - ["text"] = "+#% to Lightning Resistance", - ["type"] = "explicit", - }, - }, - ["1636_LightningResistancePhysTakenAsLightning"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1671376347", - ["text"] = "+#% to Lightning Resistance", - ["type"] = "explicit", - }, - }, - ["1636_LightningResistancePrefix"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1671376347", - ["text"] = "+#% to Lightning Resistance", - ["type"] = "explicit", - }, - }, - ["1640_MaximumChaosResistance"] = { + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1671376347", + ["text"] = "+#% to Lightning Resistance", + ["type"] = "explicit", + }, + }, + ["1641_LightningResistanceLeech"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1671376347", + ["text"] = "+#% to Lightning Resistance", + ["type"] = "explicit", + }, + }, + ["1641_LightningResistancePhysTakenAsLightning"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1671376347", + ["text"] = "+#% to Lightning Resistance", + ["type"] = "explicit", + }, + }, + ["1641_LightningResistancePrefix"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1671376347", + ["text"] = "+#% to Lightning Resistance", + ["type"] = "explicit", + }, + }, + ["1645_ChillEffectivenessOnSelf"] = { + ["Ring"] = { + ["max"] = 60, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1478653032", + ["text"] = "#% reduced Effect of Chill on you", + ["type"] = "explicit", + }, + }, + ["1645_MaximumChaosResistance"] = { ["Shield"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1301765461", - ["text"] = "+#% to maximum Chaos Resistance", - ["type"] = "explicit", - }, - }, - ["1640_PhysicalDamageTakenAsChaosUberMaven"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1301765461", + ["text"] = "+#% to maximum Chaos Resistance", + ["type"] = "explicit", + }, + }, + ["1645_PhysicalDamageTakenAsChaosUberMaven"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1301765461", - ["text"] = "+#% to maximum Chaos Resistance", - ["type"] = "explicit", - }, - }, - ["1641_ChaosResistance"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1301765461", + ["text"] = "+#% to maximum Chaos Resistance", + ["type"] = "explicit", + }, + }, + ["1646_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", - }, - }, - ["1641_ChaosResistanceDamageOverTime"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2923486259", - ["text"] = "+#% to Chaos Resistance", - ["type"] = "explicit", - }, - }, - ["1641_ChaosResistanceForJewel"] = { + ["max"] = 35, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2923486259", + ["text"] = "+#% to Chaos Resistance", + ["type"] = "explicit", + }, + }, + ["1646_ChaosResistanceDamageOverTime"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2923486259", + ["text"] = "+#% to Chaos Resistance", + ["type"] = "explicit", + }, + }, + ["1646_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", - }, - }, - ["1641_ChaosResistancePrefix"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2923486259", - ["text"] = "+#% to Chaos Resistance", - ["type"] = "explicit", - }, - }, - ["1642_MaximumResistances"] = { + ["max"] = 13, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2923486259", + ["text"] = "+#% to Chaos Resistance", + ["type"] = "explicit", + }, + }, + ["1646_ChaosResistancePrefix"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2923486259", + ["text"] = "+#% to Chaos Resistance", + ["type"] = "explicit", + }, + }, + ["1647_MaximumResistances"] = { ["Shield"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_569299859", - ["text"] = "+#% to all maximum Resistances", - ["type"] = "explicit", - }, - }, - ["1643_AllResistancesMaven"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_569299859", + ["text"] = "+#% to all maximum Resistances", + ["type"] = "explicit", + }, + }, + ["1648_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", - }, - }, - ["1645_ChillEffectivenessOnSelf"] = { - ["AnyJewel"] = { - ["max"] = 35, - ["min"] = 30, - }, - ["BaseJewel"] = { - ["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", - }, - }, - ["1647_LifeLeech"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3593843976", - ["text"] = "#% of Physical Attack Damage Leeched as Life", - ["type"] = "explicit", - }, - }, - ["1648_EnemyLifeLeechPermyriad"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2693705594", - ["text"] = "#% of Physical Attack Damage Leeched by Enemy as Life", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1978899297", + ["text"] = "+#% to all maximum Elemental Resistances", + ["type"] = "explicit", + }, + }, ["1649_LifeLeechPermyriad"] = { ["Amulet"] = { - ["max"] = 1.2, - ["min"] = 0.2, - }, + ["max"] = 0.8, + ["min"] = 0.3, + }, ["Gloves"] = { - ["max"] = 0.5, - ["min"] = 0.2, - }, + ["max"] = 0.5, + ["min"] = 0.3, + }, ["Quiver"] = { - ["max"] = 1.3, - ["min"] = 0.2, - }, + ["max"] = 0.5, + ["min"] = 0.3, + }, ["Ring"] = { - ["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"] = { + ["max"] = 0.5, + ["min"] = 0.3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3593843976", + ["text"] = "#% of Physical Attack Damage Leeched as Life", + ["type"] = "explicit", + }, + }, + ["1650_ChillEffectivenessOnSelf"] = { ["AnyJewel"] = { - ["max"] = 0.4, - ["min"] = 0.2, - }, + ["max"] = 35, + ["min"] = 30, + }, ["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"] = 35, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1478653032", + ["text"] = "#% reduced Effect of Chill on you", + ["type"] = "explicit", + }, + }, ["1651_LifeLeechLocalPermyriad"] = { ["1HAxe"] = { - ["max"] = 4.5, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, + ["1HMace"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["1HSword"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["1HWeapon"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["2HAxe"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["2HMace"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["2HSword"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["2HWeapon"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["Bow"] = { + ["max"] = 2.4, + ["min"] = 2, + }, + ["Claw"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["Dagger"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["Staff"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["Wand"] = { + ["max"] = 2.4, + ["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", + }, + }, + ["1652_LifeLeech"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3593843976", + ["text"] = "#% of Physical Attack Damage Leeched as Life", + ["type"] = "explicit", + }, + }, + ["1653_EnemyLifeLeechPermyriad"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2693705594", + ["text"] = "#% of Physical Attack Damage Leeched by Enemy as Life", + ["type"] = "explicit", + }, + }, + ["1654_LifeLeechPermyriad"] = { + ["Amulet"] = { + ["max"] = 1.2, + ["min"] = 0.2, + }, + ["Gloves"] = { + ["max"] = 0.4, + ["min"] = 0.2, + }, + ["Quiver"] = { + ["max"] = 1.3, + ["min"] = 0.2, + }, + ["Ring"] = { + ["max"] = 0.4, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3593843976", + ["text"] = "#% of Physical Attack Damage Leeched as Life", + ["type"] = "explicit", + }, + }, + ["1654_LifeLeechPermyriadForJewel"] = { + ["AnyJewel"] = { + ["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", + }, + }, + ["1656_LifeLeechLocalPermyriad"] = { + ["1HAxe"] = { + ["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", - }, - }, - ["1651_LocalIncreasedPhysicalDamagePercentAndLeech"] = { + ["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", + }, + }, + ["1656_LocalIncreasedPhysicalDamagePercentAndLeech"] = { + ["1HAxe"] = { + ["max"] = 0.6, + ["min"] = 0.6, + }, + ["1HSword"] = { + ["max"] = 0.6, + ["min"] = 0.6, + }, + ["1HWeapon"] = { + ["max"] = 0.6, + ["min"] = 0.6, + }, + ["2HAxe"] = { + ["max"] = 0.6, + ["min"] = 0.6, + }, + ["2HSword"] = { + ["max"] = 0.6, + ["min"] = 0.6, + }, + ["2HWeapon"] = { + ["max"] = 0.6, + ["min"] = 0.6, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Life", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_55876295", + ["text"] = "#% of Physical Attack Damage Leeched as Life (Local)", + ["type"] = "explicit", + }, + }, + ["165_DelveDexterityGemLevel"] = { ["1HAxe"] = { - ["max"] = 0.6, - ["min"] = 0.6, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, ["1HSword"] = { - ["max"] = 0.6, - ["min"] = 0.6, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 0.6, - ["min"] = 0.6, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 0.6, - ["min"] = 0.6, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 0.6, - ["min"] = 0.6, - }, - ["2HWeapon"] = { - ["max"] = 0.6, - ["min"] = 0.6, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Life", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_55876295", - ["text"] = "#% of Physical Attack Damage Leeched as Life (Local)", - ["type"] = "explicit", - }, - }, - ["1664_LifeLeechFromAttacksPermyriad"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["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", + }, + }, + ["165_PercentageDexterityMaven"] = { + ["Amulet"] = { + ["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", + }, + }, + ["1669_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", - }, - }, - ["1666_PhysicalDamageLifeLeechPermyriad"] = { + ["max"] = 0.3, + ["min"] = 0.3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_141810208", + ["text"] = "#% of Attack Damage Leeched as Life", + ["type"] = "explicit", + }, + }, + ["166_DelveIntelligenceGemLevel"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["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", + }, + }, + ["166_PercentageIntelligenceMaven"] = { + ["Amulet"] = { + ["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", + }, + }, + ["1671_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", - }, - }, - ["1667_EnemyPhysicalDamageLifeLeechPermyriad"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3423022686", - ["text"] = "#% of Physical Damage Leeched by Enemy as Life", - ["type"] = "explicit", - }, - }, - ["1670_FireDamageLifeLeechPermyriad"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3764265320", + ["text"] = "#% of Physical Damage Leeched as Life", + ["type"] = "explicit", + }, + }, + ["1672_EnemyPhysicalDamageLifeLeechPermyriad"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3423022686", + ["text"] = "#% of Physical Damage Leeched by Enemy as Life", + ["type"] = "explicit", + }, + }, + ["1675_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", - }, - }, - ["1670_FireResistanceLeech"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3848282610", - ["text"] = "#% of Fire Damage Leeched as Life", - ["type"] = "explicit", - }, - }, - ["1671_EnemyFireDamageLifeLeechPermyriad"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_45548764", - ["text"] = "#% of Fire Damage Leeched by Enemy as Life", - ["type"] = "explicit", - }, - }, - ["1671_FireResistanceEnemyLeech"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_45548764", - ["text"] = "#% of Fire Damage Leeched by Enemy as Life", - ["type"] = "explicit", - }, - }, - ["1675_ColdDamageLifeLeechPermyriad"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3848282610", + ["text"] = "#% of Fire Damage Leeched as Life", + ["type"] = "explicit", + }, + }, + ["1675_FireResistanceLeech"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3848282610", + ["text"] = "#% of Fire Damage Leeched as Life", + ["type"] = "explicit", + }, + }, + ["1676_EnemyFireDamageLifeLeechPermyriad"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_45548764", + ["text"] = "#% of Fire Damage Leeched by Enemy as Life", + ["type"] = "explicit", + }, + }, + ["1676_FireResistanceEnemyLeech"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_45548764", + ["text"] = "#% of Fire Damage Leeched by Enemy as Life", + ["type"] = "explicit", + }, + }, + ["167_LocalIncreaseSocketedGemLevel"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2843100721", + ["text"] = "+# to Level of Socketed Gems", + ["type"] = "explicit", + }, + }, + ["1680_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", - }, - }, - ["1675_ColdResistanceLeech"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3999401129", - ["text"] = "#% of Cold Damage Leeched as Life", - ["type"] = "explicit", - }, - }, - ["1676_ColdResistanceEnemyLeech"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3271464175", - ["text"] = "#% of Cold Damage Leeched by Enemy as Life", - ["type"] = "explicit", - }, - }, - ["1676_EnemyColdDamageLifeLeechPermyriad"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3271464175", - ["text"] = "#% of Cold Damage Leeched by Enemy as Life", - ["type"] = "explicit", - }, - }, - ["1679_LightningDamageLifeLeechPermyriad"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3999401129", + ["text"] = "#% of Cold Damage Leeched as Life", + ["type"] = "explicit", + }, + }, + ["1680_ColdResistanceLeech"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3999401129", + ["text"] = "#% of Cold Damage Leeched as Life", + ["type"] = "explicit", + }, + }, + ["1681_ColdResistanceEnemyLeech"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3271464175", + ["text"] = "#% of Cold Damage Leeched by Enemy as Life", + ["type"] = "explicit", + }, + }, + ["1681_EnemyColdDamageLifeLeechPermyriad"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3271464175", + ["text"] = "#% of Cold Damage Leeched by Enemy as Life", + ["type"] = "explicit", + }, + }, + ["1684_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", - }, - }, - ["1679_LightningResistanceLeech"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_80079005", - ["text"] = "#% of Lightning Damage Leeched as Life", - ["type"] = "explicit", - }, - }, - ["167_LocalIncreaseSocketedFireGemLevel"] = { - ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Boots"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Dagger"] = { - ["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", - }, - }, - ["167_LocalIncreaseSocketedFireGemLevelMaven"] = { - ["Boots"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_339179093", - ["text"] = "+# to Level of Socketed Fire Gems", - ["type"] = "explicit", - }, - }, - ["1680_EnemyLightningDamageLifeLeechPermyriad"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3925004212", - ["text"] = "#% of Lightning Damage Leeched by Enemy as Life", - ["type"] = "explicit", - }, - }, - ["1680_LightningResistanceEnemyLeech"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3925004212", - ["text"] = "#% of Lightning Damage Leeched by Enemy as Life", - ["type"] = "explicit", - }, - }, - ["1682_ChaosDamageLifeLeechPermyriad"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_80079005", + ["text"] = "#% of Lightning Damage Leeched as Life", + ["type"] = "explicit", + }, + }, + ["1684_LightningResistanceLeech"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_80079005", + ["text"] = "#% of Lightning Damage Leeched as Life", + ["type"] = "explicit", + }, + }, + ["1685_EnemyLightningDamageLifeLeechPermyriad"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3925004212", + ["text"] = "#% of Lightning Damage Leeched by Enemy as Life", + ["type"] = "explicit", + }, + }, + ["1685_LightningResistanceEnemyLeech"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3925004212", + ["text"] = "#% of Lightning Damage Leeched by Enemy as Life", + ["type"] = "explicit", + }, + }, + ["1687_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", - }, - }, - ["1683_EnemyChaosDamageLifeLeechPermyriad"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_334180828", - ["text"] = "#% of Chaos Damage Leeched by Enemy as Life", - ["type"] = "explicit", - }, - }, - ["168_LocalIncreaseSocketedColdGemLevel"] = { - ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Boots"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_744082851", + ["text"] = "#% of Chaos Damage Leeched as Life", + ["type"] = "explicit", + }, + }, + ["1688_EnemyChaosDamageLifeLeechPermyriad"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_334180828", + ["text"] = "#% of Chaos Damage Leeched by Enemy as Life", + ["type"] = "explicit", + }, + }, + ["1701_ManaLeechLocalPermyriad"] = { + ["1HAxe"] = { + ["max"] = 2.4, + ["min"] = 2, + }, + ["1HMace"] = { + ["max"] = 2.4, + ["min"] = 2, + }, + ["1HSword"] = { + ["max"] = 2.4, + ["min"] = 2, + }, + ["1HWeapon"] = { + ["max"] = 2.4, + ["min"] = 2, + }, + ["2HAxe"] = { + ["max"] = 2.4, + ["min"] = 2, + }, + ["2HMace"] = { + ["max"] = 2.4, + ["min"] = 2, + }, + ["2HSword"] = { + ["max"] = 2.4, + ["min"] = 2, + }, + ["2HWeapon"] = { + ["max"] = 2.4, + ["min"] = 2, + }, + ["Bow"] = { + ["max"] = 2.4, + ["min"] = 2, + }, + ["Claw"] = { + ["max"] = 2.4, + ["min"] = 2, + }, ["Dagger"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2.4, + ["min"] = 2, + }, ["Staff"] = { - ["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", - }, - }, - ["1697_ManaLeech"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3237948413", - ["text"] = "#% of Physical Attack Damage Leeched as Mana", - ["type"] = "explicit", - }, - }, - ["1698_EnemyManaLeechPermyriad"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_407390981", - ["text"] = "#% of Physical Attack Damage Leeched by Enemy as Mana", - ["type"] = "explicit", - }, - }, - ["1699_ManaLeechPermyriad"] = { + ["max"] = 2.4, + ["min"] = 2, + }, + ["Wand"] = { + ["max"] = 2.4, + ["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", + }, + }, + ["1702_ManaLeech"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3237948413", + ["text"] = "#% of Physical Attack Damage Leeched as Mana", + ["type"] = "explicit", + }, + }, + ["1703_EnemyManaLeechPermyriad"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_407390981", + ["text"] = "#% of Physical Attack Damage Leeched by Enemy as Mana", + ["type"] = "explicit", + }, + }, + ["1704_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", - }, - }, - ["1699_ManaLeechPermyriadForJewel"] = { + ["max"] = 0.4, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3237948413", + ["text"] = "#% of Physical Attack Damage Leeched as Mana", + ["type"] = "explicit", + }, + }, + ["1704_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", - }, - }, - ["169_LocalIncreaseSocketedLightningGemLevel"] = { - ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Boots"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Dagger"] = { - ["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", - }, - }, - ["169_LocalIncreaseSocketedLightningGemLevelMaven"] = { - ["Boots"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4043416969", - ["text"] = "+# to Level of Socketed Lightning Gems", - ["type"] = "explicit", - }, - }, - ["1701_ManaLeechLocalPermyriad"] = { + ["max"] = 0.4, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3237948413", + ["text"] = "#% of Physical Attack Damage Leeched as Mana", + ["type"] = "explicit", + }, + }, + ["1706_ManaLeechLocalPermyriad"] = { ["1HAxe"] = { - ["max"] = 3.2, - ["min"] = 2, - }, + ["max"] = 3.2, + ["min"] = 2.6, + }, ["1HMace"] = { - ["max"] = 3.2, - ["min"] = 2, - }, + ["max"] = 3.2, + ["min"] = 2.6, + }, ["1HSword"] = { - ["max"] = 3.2, - ["min"] = 2, - }, + ["max"] = 3.2, + ["min"] = 2.6, + }, ["1HWeapon"] = { - ["max"] = 3.2, - ["min"] = 2, - }, + ["max"] = 3.2, + ["min"] = 2.6, + }, ["2HAxe"] = { - ["max"] = 3.2, - ["min"] = 2, - }, + ["max"] = 3.2, + ["min"] = 2.6, + }, ["2HMace"] = { - ["max"] = 3.2, - ["min"] = 2, - }, + ["max"] = 3.2, + ["min"] = 2.6, + }, ["2HSword"] = { - ["max"] = 3.2, - ["min"] = 2, - }, + ["max"] = 3.2, + ["min"] = 2.6, + }, ["2HWeapon"] = { - ["max"] = 3.2, - ["min"] = 2, - }, + ["max"] = 3.2, + ["min"] = 2.6, + }, ["Bow"] = { - ["max"] = 3.2, - ["min"] = 2, - }, + ["max"] = 3.2, + ["min"] = 2.6, + }, ["Claw"] = { - ["max"] = 3.2, - ["min"] = 2, - }, + ["max"] = 3.2, + ["min"] = 2.6, + }, ["Dagger"] = { - ["max"] = 3.2, - ["min"] = 2, - }, + ["max"] = 3.2, + ["min"] = 2.6, + }, ["Staff"] = { - ["max"] = 3.2, - ["min"] = 2, - }, + ["max"] = 3.2, + ["min"] = 2.6, + }, ["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", - }, - }, - ["170_LocalIncreaseSocketedChaosGemLevel"] = { - ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Boots"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Dagger"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2675603254", - ["text"] = "+# to Level of Socketed Chaos Gems", - ["type"] = "explicit", - }, - }, - ["170_LocalIncreaseSocketedChaosGemLevelMaven"] = { - ["Boots"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2675603254", - ["text"] = "+# to Level of Socketed Chaos Gems", - ["type"] = "explicit", - }, - }, - ["1722_EnergyShieldLeechPermyriad"] = { + ["max"] = 3.2, + ["min"] = 2.6, + }, + ["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", + }, + }, + ["1727_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", - }, - }, - ["1731_MaximumLifeLeechRate"] = { + ["max"] = 0.3, + ["min"] = 0.3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_11106713", + ["text"] = "#% of Spell Damage Leeched as Energy Shield", + ["type"] = "explicit", + }, + }, + ["172_LocalIncreaseSocketedFireGemLevel"] = { + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Dagger"] = { + ["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", + }, + }, + ["172_LocalIncreaseSocketedFireGemLevelMaven"] = { + ["Boots"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_339179093", + ["text"] = "+# to Level of Socketed Fire Gems", + ["type"] = "explicit", + }, + }, + ["1736_MaximumLifeLeechRate"] = { ["Amulet"] = { - ["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", - }, - }, - ["1732_MaximumLifeLeechRateOldFix"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4118987751", - ["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", - }, - }, - ["1734_MaximumEnergyShieldLeechRate"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2916634441", + ["text"] = "#% increased Maximum total Life Recovery per second from Leech", + ["type"] = "explicit", + }, + }, + ["1737_MaximumLifeLeechRateOldFix"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2916634441", + ["text"] = "#% increased Maximum total Life Recovery per second from Leech", + ["type"] = "explicit", + }, + }, + ["1738_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", + }, + }, + ["1739_MaximumEnergyShieldLeechRate"] = { ["Amulet"] = { - ["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", - }, - }, - ["1738_LifeGainPerTargetLocal"] = { + ["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", + }, + }, + ["173_LocalIncreaseSocketedColdGemLevel"] = { + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Dagger"] = { + ["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", + }, + }, + ["173_LocalIncreaseSocketedColdGemLevelMaven"] = { + ["Boots"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1645459191", + ["text"] = "+# to Level of Socketed Cold Gems", + ["type"] = "explicit", + }, + }, + ["1743_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", - }, - }, - ["1739_LifeGainedOnSpellHit"] = { + ["max"] = 30, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", + ["type"] = "explicit", + }, + }, + ["1744_LifeGainedOnSpellHit"] = { ["Ring"] = { - ["max"] = 15, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2018035324", - ["text"] = "Gain # Life per Enemy Hit with Spells", - ["type"] = "explicit", - }, - }, - ["1740_LifeGainPerTarget"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2018035324", + ["text"] = "Gain # Life per Enemy Hit with Spells", + ["type"] = "explicit", + }, + }, + ["1745_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", - }, - }, - ["1740_LifeGainPerTargetForJewel"] = { + ["max"] = 20, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["1745_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", - }, - }, - ["1743_LifeGainOnHitVsIgnitedEnemies"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_120895749", - ["text"] = "Gain # Life for each Ignited Enemy hit with Attacks", - ["type"] = "explicit", - }, - }, - ["1744_IncreasedManaAndOnHit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_820939409", - ["text"] = "Gain # Mana per Enemy Hit with Attacks", - ["type"] = "explicit", - }, - }, - ["1744_ManaGainPerTarget"] = { - ["Gloves"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["1748_LifeGainOnHitVsIgnitedEnemies"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_120895749", + ["text"] = "Gain # Life for each Ignited Enemy hit with Attacks", + ["type"] = "explicit", + }, + }, + ["1749_IncreasedManaAndOnHit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["1749_ManaGainPerTarget"] = { + ["Gloves"] = { + ["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", - }, - }, - ["1744_ManaGainPerTargetForJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["1749_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", - }, - }, - ["1744_ManaGainPerTargetMaven"] = { - ["Gloves"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["1749_ManaGainPerTargetMaven"] = { + ["Gloves"] = { + ["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", - }, - }, - ["1747_EnergyShieldGainPerTargetForJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["174_LocalIncreaseSocketedLightningGemLevel"] = { + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Dagger"] = { + ["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", + }, + }, + ["174_LocalIncreaseSocketedLightningGemLevelMaven"] = { + ["Boots"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4043416969", + ["text"] = "+# to Level of Socketed Lightning Gems", + ["type"] = "explicit", + }, + }, + ["1752_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", - }, - }, - ["1748_LifeGainedFromEnemyDeath"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_211381198", + ["text"] = "Gain # Energy Shield per Enemy Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["1753_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", - }, - }, - ["1749_MaximumLifeOnKillPercent"] = { + ["max"] = 110, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3695891184", + ["text"] = "Gain # Life per Enemy Killed", + ["type"] = "explicit", + }, + }, + ["1754_MaximumLifeOnKillPercent"] = { ["Chest"] = { - ["max"] = 6, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2023107756", - ["text"] = "Recover #% of Life on Kill", - ["type"] = "explicit", - }, - }, - ["1749_MaximumLifeOnKillPercentMaven"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2023107756", + ["text"] = "Recover #% of Life on Kill", + ["type"] = "explicit", + }, + }, + ["1754_MaximumLifeOnKillPercentMaven"] = { ["Chest"] = { - ["max"] = 6, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2023107756", - ["text"] = "Recover #% of Life on Kill", - ["type"] = "explicit", - }, - }, - ["174_LocalIncreaseSocketedSpellGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_446733281", - ["text"] = "+# to Level of Socketed Spell Gems", - ["type"] = "explicit", - }, - }, - ["1750_MaximumEnergyShieldOnKillPercent"] = { + ["max"] = 6, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2023107756", + ["text"] = "Recover #% of Life on Kill", + ["type"] = "explicit", + }, + }, + ["1755_MaximumEnergyShieldOnKillPercent"] = { ["Chest"] = { - ["max"] = 6, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2406605753", - ["text"] = "Recover #% of Energy Shield on Kill", - ["type"] = "explicit", - }, - }, - ["1750_MaximumEnergyShieldOnKillPercentMaven"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2406605753", + ["text"] = "Recover #% of Energy Shield on Kill", + ["type"] = "explicit", + }, + }, + ["1755_MaximumEnergyShieldOnKillPercentMaven"] = { ["Chest"] = { - ["max"] = 6, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2406605753", - ["text"] = "Recover #% of Energy Shield on Kill", - ["type"] = "explicit", - }, - }, - ["1751_MaximumManaOnKillPercent"] = { + ["max"] = 6, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2406605753", + ["text"] = "Recover #% of Energy Shield on Kill", + ["type"] = "explicit", + }, + }, + ["1756_MaximumManaOnKillPercent"] = { ["Chest"] = { - ["max"] = 6, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1030153674", - ["text"] = "Recover #% of Mana on Kill", - ["type"] = "explicit", - }, - }, - ["1751_MaximumManaOnKillPercentMaven"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1030153674", + ["text"] = "Recover #% of Mana on Kill", + ["type"] = "explicit", + }, + }, + ["1756_MaximumManaOnKillPercentMaven"] = { ["Chest"] = { - ["max"] = 6, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1030153674", - ["text"] = "Recover #% of Mana on Kill", - ["type"] = "explicit", - }, - }, - ["1757_GainLifeOnBlock"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_762600725", - ["text"] = "# Life gained when you Block", - ["type"] = "explicit", - }, - }, - ["1758_GainManaOnBlock"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2122183138", - ["text"] = "# Mana gained when you Block", - ["type"] = "explicit", - }, - }, - ["1763_ManaGainedFromEnemyDeath"] = { + ["max"] = 6, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1030153674", + ["text"] = "Recover #% of Mana on Kill", + ["type"] = "explicit", + }, + }, + ["175_LocalIncreaseSocketedChaosGemLevel"] = { + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Dagger"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2675603254", + ["text"] = "+# to Level of Socketed Chaos Gems", + ["type"] = "explicit", + }, + }, + ["175_LocalIncreaseSocketedChaosGemLevelMaven"] = { + ["Boots"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2675603254", + ["text"] = "+# to Level of Socketed Chaos Gems", + ["type"] = "explicit", + }, + }, + ["1762_GainLifeOnBlock"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_762600725", + ["text"] = "# Life gained when you Block", + ["type"] = "explicit", + }, + }, + ["1763_GainManaOnBlock"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2122183138", + ["text"] = "# Mana gained when you Block", + ["type"] = "explicit", + }, + }, + ["1766_MinionDamageAndMinionMaximumLife"] = { + ["1HAxe"] = { + ["max"] = 28, + ["min"] = 16, + }, + ["1HMace"] = { + ["max"] = 28, + ["min"] = 16, + }, + ["1HSword"] = { + ["max"] = 28, + ["min"] = 16, + }, + ["1HWeapon"] = { + ["max"] = 28, + ["min"] = 16, + }, + ["2HAxe"] = { + ["max"] = 45, + ["min"] = 26, + }, + ["2HMace"] = { + ["max"] = 45, + ["min"] = 26, + }, + ["2HSword"] = { + ["max"] = 45, + ["min"] = 26, + }, + ["2HWeapon"] = { + ["max"] = 45, + ["min"] = 26, + }, + ["Bow"] = { + ["max"] = 45, + ["min"] = 26, + }, + ["Claw"] = { + ["max"] = 28, + ["min"] = 16, + }, + ["Dagger"] = { + ["max"] = 28, + ["min"] = 16, + }, + ["Staff"] = { + ["max"] = 45, + ["min"] = 26, + }, + ["Wand"] = { + ["max"] = 28, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["1766_MinionLife"] = { + ["Ring"] = { + ["max"] = 15, + ["min"] = 11, + }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["1768_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", - }, - }, - ["1766_MaximumMinionCountAndMinionLife"] = { + ["max"] = 50, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1368271171", + ["text"] = "Gain # Mana per Enemy Killed", + ["type"] = "explicit", + }, + }, + ["1769_MinionRunSpeed"] = { + ["Amulet"] = { + ["max"] = 22, + ["min"] = 13, + }, + ["Ring"] = { + ["max"] = 22, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", + ["type"] = "explicit", + }, + }, + ["176_SkillAreaOfEffectPercentAndAreaOfEffectGemLevel"] = { ["Helmet"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "explicit", - }, - }, - ["1766_MinionDamageAndMinionMaximumLife"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2551600084", + ["text"] = "+# to Level of Socketed AoE Gems", + ["type"] = "explicit", + }, + }, + ["1771_MaximumMinionCountAndMinionLife"] = { + ["Helmet"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["1771_MinionDamageAndMinionMaximumLife"] = { ["1HAxe"] = { - ["max"] = 59, - ["min"] = 16, - }, + ["max"] = 59, + ["min"] = 34, + }, ["1HMace"] = { - ["max"] = 59, - ["min"] = 16, - }, + ["max"] = 59, + ["min"] = 34, + }, ["1HSword"] = { - ["max"] = 59, - ["min"] = 16, - }, + ["max"] = 59, + ["min"] = 34, + }, ["1HWeapon"] = { - ["max"] = 59, - ["min"] = 16, - }, + ["max"] = 59, + ["min"] = 34, + }, ["2HAxe"] = { - ["max"] = 59, - ["min"] = 26, - }, + ["max"] = 59, + ["min"] = 34, + }, ["2HMace"] = { - ["max"] = 59, - ["min"] = 26, - }, + ["max"] = 59, + ["min"] = 34, + }, ["2HSword"] = { - ["max"] = 59, - ["min"] = 26, - }, + ["max"] = 59, + ["min"] = 34, + }, ["2HWeapon"] = { - ["max"] = 59, - ["min"] = 26, - }, + ["max"] = 59, + ["min"] = 34, + }, ["Bow"] = { - ["max"] = 59, - ["min"] = 26, - }, + ["max"] = 59, + ["min"] = 34, + }, ["Claw"] = { - ["max"] = 59, - ["min"] = 16, - }, + ["max"] = 59, + ["min"] = 34, + }, ["Dagger"] = { - ["max"] = 59, - ["min"] = 16, - }, + ["max"] = 59, + ["min"] = 34, + }, ["Staff"] = { - ["max"] = 59, - ["min"] = 26, - }, + ["max"] = 59, + ["min"] = 34, + }, ["Wand"] = { - ["max"] = 59, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "explicit", - }, - }, - ["1766_MinionLife"] = { + ["max"] = 59, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["1771_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"] = 13, + }, ["Shield"] = { - ["max"] = 40, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "explicit", - }, - }, - ["1766_MinionLifeForJewel"] = { + ["max"] = 40, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["1771_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", - }, - }, - ["1766_MinionLifeMaven"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["1771_MinionLifeMaven"] = { ["Helmet"] = { - ["max"] = 40, - ["min"] = 36, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "explicit", - }, - }, - ["1766_MinionLifeSupported"] = { + ["max"] = 40, + ["min"] = 36, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["1771_MinionLifeSupported"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "explicit", - }, - }, - ["1769_MinionMovementSpeed"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["1774_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", - }, - }, - ["1769_MinionRunSpeed"] = { + ["max"] = 30, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", + ["type"] = "explicit", + }, + }, + ["1774_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", - }, - }, - ["176_SkillAreaOfEffectPercentAndAreaOfEffectGemLevel"] = { - ["Helmet"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2551600084", - ["text"] = "+# to Level of Socketed AoE Gems", - ["type"] = "explicit", - }, - }, - ["1774_TotemLifeForJewel"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", + ["type"] = "explicit", + }, + }, + ["1779_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", - }, - }, - ["1781_CurseEffectReduceCurseDuration"] = { - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3824372849", - ["text"] = "#% increased Curse Duration", - ["type"] = "explicit", - }, - }, - ["178_LocalIncreaseSocketedBowGemLevel"] = { - ["2HWeapon"] = { - ["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", - }, - }, - ["1790_AdditionalPierce"] = { - ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2176571093", + ["text"] = "+# to Level of Socketed Projectile Gems", + ["type"] = "explicit", + }, + }, + ["1786_CurseEffectReduceCurseDuration"] = { + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3824372849", + ["text"] = "#% increased Curse Duration", + ["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", + }, + }, + ["1795_AdditionalPierce"] = { + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["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", - }, - }, - ["1790_LocalIncreasedPhysicalDamagePercentAndPierce"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLineSingular"] = "Projectiles Pierce an additional Target", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + ["type"] = "explicit", + }, + }, + ["1795_LocalIncreasedPhysicalDamagePercentAndPierce"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["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", - }, - }, - ["1790_ProjectilePierceAndProjectileGemLevel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLineSingular"] = "Projectiles Pierce an additional Target", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + ["type"] = "explicit", + }, + }, + ["1795_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", - }, - }, - ["1792_AdditionalProjectiles"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLineSingular"] = "Projectiles Pierce an additional Target", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + ["type"] = "explicit", + }, + }, + ["1796_ProjectileDamageAndProjectileSpeed"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "explicit", + }, + }, + ["1797_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, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_74338099", - ["text"] = "Skills fire an additional Projectile", - ["type"] = "explicit", - }, - }, - ["1794_AdditionalArrows"] = { - ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_74338099", + ["text"] = "Skills fire an additional Projectile", + ["type"] = "explicit", + }, + }, + ["1798_MovementVelocity"] = { + ["Boots"] = { + ["max"] = 24, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + }, + }, + ["1798_MovementVelocityAndCannotBeChilled"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + }, + }, + ["1798_MovementVelocityAndMovementVelocityIfNotHitRecently"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + }, + }, + ["1798_MovementVelocityAndOnslaughtOnKill"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + }, + }, + ["1799_AdditionalArrows"] = { + ["2HWeapon"] = { + ["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", - }, - }, - ["1796_IncreasedProjectileSpeedForJewel"] = { + ["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", + }, + }, + ["179_LocalIncreaseSocketedSpellGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_446733281", + ["text"] = "+# to Level of Socketed Spell Gems", + ["type"] = "explicit", + }, + }, + ["179_MeleeRangeAndMeleeGemLevel"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_829382474", + ["text"] = "+# to Level of Socketed Melee Gems", + ["type"] = "explicit", + }, + }, + ["1801_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", - }, - }, - ["1796_LocalIncreasedPhysicalDamagePercentAndProjSpeed"] = { - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "explicit", + }, + }, + ["1801_LocalIncreasedPhysicalDamagePercentAndProjSpeed"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["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", - }, - }, - ["1796_ProjectileDamageAndProjectileSpeed"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "explicit", + }, + }, + ["1801_ProjectileDamageAndProjectileSpeed"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - ["type"] = "explicit", - }, - }, - ["1796_ProjectileSpeed"] = { + ["max"] = 25, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "explicit", + }, + }, + ["1801_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", - }, - }, - ["1796_ProjectileSpeedSupported"] = { - ["Gloves"] = { - ["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"] = 52, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "explicit", + }, + }, + ["1801_ProjectileSpeedSupported"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "explicit", + }, + }, + ["1801_SupportedByVolleySpeed"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 15, + }, ["Wand"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - ["type"] = "explicit", - }, - }, - ["1798_MovementVelocity"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "explicit", + }, + }, + ["1803_MinimumEnduranceCharges"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3706959521", + ["text"] = "+# to Minimum Endurance Charges", + ["type"] = "explicit", + }, + }, + ["1803_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", - }, - }, - ["1798_MovementVelocityAndCannotBeChilled"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + }, + }, + ["1803_MovementVelocityAndCannotBeChilled"] = { ["Boots"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "explicit", - }, - }, - ["1798_MovementVelocityAndMovementVelocityIfNotHitRecently"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + }, + }, + ["1803_MovementVelocityAndMovementVelocityIfNotHitRecently"] = { ["Boots"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "explicit", - }, - }, - ["1798_MovementVelocityAndOnslaughtOnKill"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + }, + }, + ["1803_MovementVelocityAndOnslaughtOnKill"] = { ["Boots"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "explicit", - }, - }, - ["1798_MovementVelocityDodge"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "explicit", - }, - }, - ["1798_MovementVelocitySpeed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "explicit", - }, - }, - ["1798_MovementVelocitySpellDodge"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "explicit", - }, - }, - ["179_LocalIncreaseSocketedMeleeGemLevel"] = { - ["1HAxe"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["1HMace"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["1HSword"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["2HAxe"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["2HMace"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["2HSword"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Claw"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Dagger"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Shield"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_829382474", - ["text"] = "+# to Level of Socketed Melee Gems", - ["type"] = "explicit", - }, - }, - ["179_MeleeRangeAndMeleeGemLevel"] = { - ["Helmet"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_829382474", - ["text"] = "+# to Level of Socketed Melee Gems", - ["type"] = "explicit", - }, - }, - ["1802_FrenzyChargeOnHitChanceMaven"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + }, + }, + ["1803_MovementVelocityDodge"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + }, + }, + ["1803_MovementVelocitySpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + }, + }, + ["1803_MovementVelocitySpellDodge"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + }, + }, + ["1807_FrenzyChargeOnHitChanceMaven"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1541516339", - ["text"] = "#% increased Movement Speed per Frenzy Charge", - ["type"] = "explicit", - }, - }, - ["1803_MinimumEnduranceCharges"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1541516339", + ["text"] = "#% increased Movement Speed per Frenzy Charge", + ["type"] = "explicit", + }, + }, + ["1808_MinimumEnduranceCharges"] = { + ["Shield"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3706959521", + ["text"] = "+# to Minimum Endurance Charges", + ["type"] = "explicit", + }, + }, + ["1808_MinimumEnduranceChargesAndOnKillChance"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Shield"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3706959521", - ["text"] = "+# to Minimum Endurance Charges", - ["type"] = "explicit", - }, - }, - ["1803_MinimumEnduranceChargesAndOnKillChance"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3706959521", + ["text"] = "+# to Minimum Endurance Charges", + ["type"] = "explicit", + }, + }, + ["1808_MinimumEnduranceChargesAndOnKillLose"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3706959521", + ["text"] = "+# to Minimum Endurance Charges", + ["type"] = "explicit", + }, + }, + ["1808_MinimumFrenzyCharges"] = { ["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", - }, - }, - ["1803_MinimumEnduranceChargesAndOnKillLose"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3706959521", - ["text"] = "+# to Minimum Endurance Charges", - ["type"] = "explicit", - }, - }, - ["1804_MaximumEnduranceCharges"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_658456881", + ["text"] = "+# to Minimum Frenzy Charges", + ["type"] = "explicit", + }, + }, + ["1809_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", - }, - }, - ["1804_MaximumEnduranceChargesMaven"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1515657623", + ["text"] = "+# to Maximum Endurance Charges", + ["type"] = "explicit", + }, + }, + ["1809_MaximumEnduranceChargesMaven"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1515657623", - ["text"] = "+# to Maximum Endurance Charges", - ["type"] = "explicit", - }, - }, - ["1808_MinimumFrenzyCharges"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1515657623", + ["text"] = "+# to Maximum Endurance Charges", + ["type"] = "explicit", + }, + }, + ["1813_MinimumFrenzyCharges"] = { + ["Shield"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_658456881", + ["text"] = "+# to Minimum Frenzy Charges", + ["type"] = "explicit", + }, + }, + ["1813_MinimumFrenzyChargesAndOnKillChance"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Shield"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_658456881", - ["text"] = "+# to Minimum Frenzy Charges", - ["type"] = "explicit", - }, - }, - ["1808_MinimumFrenzyChargesAndOnKillChance"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_658456881", + ["text"] = "+# to Minimum Frenzy Charges", + ["type"] = "explicit", + }, + }, + ["1813_MinimumFrenzyChargesAndOnKillLose"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_658456881", + ["text"] = "+# to Minimum Frenzy Charges", + ["type"] = "explicit", + }, + }, + ["1813_MinimumPowerCharges"] = { ["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", - }, - }, - ["1808_MinimumFrenzyChargesAndOnKillLose"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_658456881", - ["text"] = "+# to Minimum Frenzy Charges", - ["type"] = "explicit", - }, - }, - ["1809_MaximumFrenzyCharges"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1999711879", + ["text"] = "+# to Minimum Power Charges", + ["type"] = "explicit", + }, + }, + ["1814_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, - }, - ["Gloves"] = { - ["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", - }, - }, - ["180_LocalIncreaseSocketedMinionGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3604946673", - ["text"] = "+# to Level of Socketed Minion Gems", - ["type"] = "explicit", - }, - }, - ["1813_MinimumPowerCharges"] = { - ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Ring"] = { - ["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", + }, + }, + ["1814_MaximumFrenzyChargesMaven"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4078695", + ["text"] = "+# to Maximum Frenzy Charges", + ["type"] = "explicit", + }, + }, + ["1818_MinimumPowerCharges"] = { ["Shield"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1999711879", - ["text"] = "+# to Minimum Power Charges", - ["type"] = "explicit", - }, - }, - ["1813_MinimumPowerChargesAndOnKillChance"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1999711879", + ["text"] = "+# to Minimum Power Charges", + ["type"] = "explicit", + }, + }, + ["1818_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", - }, - }, - ["1813_MinimumPowerChargesAndOnKillLose"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1999711879", - ["text"] = "+# to Minimum Power Charges", - ["type"] = "explicit", - }, - }, - ["1814_IncreasedMaximumPowerCharges"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1999711879", + ["text"] = "+# to Minimum Power Charges", + ["type"] = "explicit", + }, + }, + ["1818_MinimumPowerChargesAndOnKillLose"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1999711879", + ["text"] = "+# to Minimum Power Charges", + ["type"] = "explicit", + }, + }, + ["1819_IncreasedMaximumPowerCharges"] = { + ["2HWeapon"] = { + ["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", - }, - }, - ["1814_IncreasedMaximumPowerChargesMaven"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_227523295", + ["text"] = "+# to Maximum Power Charges", + ["type"] = "explicit", + }, + }, + ["1819_IncreasedMaximumPowerChargesMaven"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_227523295", + ["text"] = "+# to Maximum Power Charges", + ["type"] = "explicit", + }, + }, + ["181_SkillAreaOfEffectPercentAndAreaOfEffectGemLevel"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_227523295", - ["text"] = "+# to Maximum Power Charges", - ["type"] = "explicit", - }, - }, - ["1819_GainEnduranceChargeOnCritUber"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2551600084", + ["text"] = "+# to Level of Socketed AoE Gems", + ["type"] = "explicit", + }, + }, + ["1824_GainEnduranceChargeOnCritUber"] = { ["1HAxe"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["2HAxe"] = { - ["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", - }, - }, - ["181_LocalIncreaseSocketedAuraLevel"] = { + ["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", + }, + }, + ["1829_GainPowerChargeOnKillingFrozenEnemy"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3607154250", + ["text"] = "#% chance to gain a Power Charge on Killing a Frozen Enemy", + ["type"] = "explicit", + }, + }, + ["182_ProjectilePierceAndProjectileGemLevel"] = { ["Helmet"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2452998583", - ["text"] = "+# to Level of Socketed Aura Gems", - ["type"] = "explicit", - }, - }, - ["1824_GainPowerChargeOnKillingFrozenEnemy"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2176571093", + ["text"] = "+# to Level of Socketed Projectile Gems", + ["type"] = "explicit", + }, + }, + ["1835_CriticalMultiplierSupportedTwoHanded"] = { + ["2HWeapon"] = { + ["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", - }, - }, - ["1830_CriticalStrikeChanceSpellsTwoHandedPowerCharge"] = { - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Strike", + ["type"] = "explicit", + }, + }, + ["1835_CriticalStrikeChanceSpellsTwoHandedPowerCharge"] = { + ["2HWeapon"] = { + ["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", - }, - }, - ["1830_PowerChargeOnCriticalStrikeChance"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Strike", + ["type"] = "explicit", + }, + }, + ["1835_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", - }, - }, - ["1830_PowerChargeOnCriticalStrikeChanceMaven"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Strike", + ["type"] = "explicit", + }, + }, + ["1835_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", - }, - }, - ["1833_FrenzyChargeOnHitChance"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Strike", + ["type"] = "explicit", + }, + }, + ["1838_FrenzyChargeOnHitChance"] = { ["Chest"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2323242761", - ["text"] = "#% chance to gain a Frenzy Charge on Hit", - ["type"] = "explicit", - }, - }, - ["1833_FrenzyChargeOnHitChanceMaven"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2323242761", + ["text"] = "#% chance to gain a Frenzy Charge on Hit", + ["type"] = "explicit", + }, + }, + ["1838_FrenzyChargeOnHitChanceMaven"] = { ["Chest"] = { - ["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", - }, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2323242761", + ["text"] = "#% chance to gain a Frenzy Charge on Hit", + ["type"] = "explicit", + }, + }, + ["183_LocalIncreaseSocketedBowGemLevel"] = { + ["2HWeapon"] = { + ["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", + }, + }, ["1843_AvoidElementalStatusAilments"] = { ["Boots"] = { - ["max"] = 45, - ["min"] = 16, - }, + ["max"] = 25, + ["min"] = 16, + }, ["Shield"] = { - ["max"] = 35, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3005472710", - ["text"] = "#% chance to Avoid Elemental Ailments", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["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", - }, - }, - ["1844_AvoidChillForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3483999943", - ["text"] = "#% chance to Avoid being Chilled", - ["type"] = "explicit", - }, - }, - ["1844_AvoidFreezeAndChill"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3483999943", - ["text"] = "#% chance to Avoid being Chilled", - ["type"] = "explicit", - }, - }, - ["1844_MovementVelocityAndCannotBeChilled"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3005472710", + ["text"] = "#% chance to Avoid Elemental Ailments", + ["type"] = "explicit", + }, + }, + ["1843_CannotBeFrozen"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_876831634", + ["text"] = "Cannot be Frozen", + ["type"] = "explicit", + }, + }, + ["1844_MovementVelocityAndCannotBeChilled"] = { + ["Boots"] = { + ["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"] = 80, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "explicit", + }, + }, + ["1845_DexterityAndAvoidFreeze"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 21, + }, + ["Shield"] = { + ["max"] = 25, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "explicit", + }, + }, + ["1846_StrengthAndAvoidIgnite"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 21, + }, + ["Shield"] = { + ["max"] = 25, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", + ["type"] = "explicit", + }, + }, + ["1848_AvoidElementalStatusAilments"] = { + ["Boots"] = { + ["max"] = 45, + ["min"] = 16, + }, + ["Shield"] = { + ["max"] = 35, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3005472710", + ["text"] = "#% chance to Avoid Elemental Ailments", + ["type"] = "explicit", + }, + }, + ["1848_AvoidStunAndElementalStatusAilments"] = { + ["Chest"] = { + ["max"] = 35, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3005472710", + ["text"] = "#% chance to Avoid Elemental Ailments", + ["type"] = "explicit", + }, + }, + ["1848_IntelligenceAndAvoidShock"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 21, + }, + ["Shield"] = { + ["max"] = 25, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "explicit", + }, + }, + ["1849_AvoidChillForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", + ["type"] = "explicit", + }, + }, + ["1849_AvoidFreezeAndChill"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", + ["type"] = "explicit", + }, + }, + ["1849_MovementVelocityAndCannotBeChilled"] = { ["Boots"] = { - ["max"] = 100, - ["min"] = 100, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3483999943", - ["text"] = "#% chance to Avoid being Chilled", - ["type"] = "explicit", - }, - }, - ["1845_AvoidFreeze"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", + ["type"] = "explicit", + }, + }, + ["184_LocalIncreaseSocketedMeleeGemLevel"] = { + ["1HAxe"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_829382474", + ["text"] = "+# to Level of Socketed Melee Gems", + ["type"] = "explicit", + }, + }, + ["184_MeleeRangeAndMeleeGemLevel"] = { + ["Helmet"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_829382474", + ["text"] = "+# to Level of Socketed Melee Gems", + ["type"] = "explicit", + }, + }, + ["1850_AvoidFreeze"] = { ["Boots"] = { - ["max"] = 100, - ["min"] = 51, - }, + ["max"] = 80, + ["min"] = 51, + }, ["Quiver"] = { - ["max"] = 80, - ["min"] = 51, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", - ["type"] = "explicit", - }, - }, - ["1845_AvoidFreezeAndChill"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", - ["type"] = "explicit", - }, - }, - ["1845_AvoidFreezeForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", - ["type"] = "explicit", - }, - }, - ["1845_ChanceToAvoidFreezeAndChill"] = { + ["max"] = 80, + ["min"] = 51, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "explicit", + }, + }, + ["1850_AvoidFreezeAndChill"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "explicit", + }, + }, + ["1850_AvoidFreezeForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "explicit", + }, + }, + ["1850_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", - }, - }, - ["1845_DexterityAndAvoidFreeze"] = { + ["max"] = 60, + ["min"] = 39, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "explicit", + }, + }, + ["1850_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", - }, - }, - ["1846_AvoidIgnite"] = { + ["max"] = 25, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "explicit", + }, + }, + ["1851_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", - }, - }, - ["1846_AvoidIgniteForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1783006896", - ["text"] = "#% chance to Avoid being Ignited", - ["type"] = "explicit", - }, - }, - ["1846_StrengthAndAvoidIgnite"] = { + ["max"] = 80, + ["min"] = 51, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", + ["type"] = "explicit", + }, + }, + ["1851_AvoidIgniteForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", + ["type"] = "explicit", + }, + }, + ["1851_AvoidStun"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "explicit", + }, + }, + ["1851_AvoidStunAndElementalStatusAilments"] = { ["Chest"] = { - ["max"] = 25, - ["min"] = 21, - }, + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "explicit", + }, + }, + ["1851_StrengthAndAvoidIgnite"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 21, + }, ["Shield"] = { - ["max"] = 25, - ["min"] = 21, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1783006896", - ["text"] = "#% chance to Avoid being Ignited", - ["type"] = "explicit", - }, - }, - ["1848_AvoidShock"] = { + ["max"] = 25, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", + ["type"] = "explicit", + }, + }, + ["1853_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", - }, - }, - ["1848_AvoidShockForJewel"] = { + ["max"] = 80, + ["min"] = 51, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "explicit", + }, + }, + ["1853_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", - }, - }, - ["1848_IntelligenceAndAvoidShock"] = { + ["max"] = 50, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "explicit", + }, + }, + ["1853_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", - }, - }, - ["1848_ReducedShockChance"] = { + ["max"] = 25, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "explicit", + }, + }, + ["1853_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", - }, - }, - ["1849_AvoidBleedAndPoison"] = { + ["max"] = 60, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "explicit", + }, + }, + ["1854_AvoidBleedAndPoison"] = { ["Boots"] = { - ["max"] = 70, - ["min"] = 41, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4053951709", - ["text"] = "#% chance to Avoid being Poisoned", - ["type"] = "explicit", - }, - }, - ["1849_ChanceToAvoidPoison"] = { + ["max"] = 70, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", + ["type"] = "explicit", + }, + }, + ["1854_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", - }, - }, - ["1849_MovementVelocitySpellDodge"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4053951709", - ["text"] = "#% chance to Avoid being Poisoned", - ["type"] = "explicit", - }, - }, - ["184_IncreaseSocketedCurseGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3691695237", - ["text"] = "+# to Level of Socketed Curse Gems", - ["type"] = "explicit", - }, - }, - ["1851_AvoidStun"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", + ["type"] = "explicit", + }, + }, + ["1854_MovementVelocitySpellDodge"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", + ["type"] = "explicit", + }, + }, + ["1856_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"] = 23, + }, ["Helmet"] = { - ["max"] = 44, - ["min"] = 15, - }, + ["max"] = 44, + ["min"] = 23, + }, ["Quiver"] = { - ["max"] = 50, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4262448838", - ["text"] = "#% chance to Avoid being Stunned", - ["type"] = "explicit", - }, - }, - ["1851_AvoidStunAndElementalStatusAilments"] = { + ["max"] = 50, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "explicit", + }, + }, + ["1856_AvoidStunAndElementalStatusAilments"] = { ["Chest"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4262448838", - ["text"] = "#% chance to Avoid being Stunned", - ["type"] = "explicit", - }, - }, - ["1851_AvoidStunForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4262448838", - ["text"] = "#% chance to Avoid being Stunned", - ["type"] = "explicit", - }, - }, - ["1856_ChillingConfluxMaven"] = { + ["max"] = 35, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "explicit", + }, + }, + ["1856_AvoidStunForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "explicit", + }, + }, + ["185_LocalIncreaseSocketedMinionGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3604946673", + ["text"] = "+# to Level of Socketed Minion Gems", + ["type"] = "explicit", + }, + }, + ["1861_ChillingConfluxMaven"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3485067555", - ["text"] = "#% increased Chill Duration on Enemies", - ["type"] = "explicit", - }, - }, - ["1857_ShockChanceAndDurationForJewel"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3485067555", + ["text"] = "#% increased Chill Duration on Enemies", + ["type"] = "explicit", + }, + }, + ["1862_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", - }, - }, - ["1857_ShockDurationForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3668351662", - ["text"] = "#% increased Shock Duration on Enemies", - ["type"] = "explicit", - }, - }, - ["1857_ShockingConfluxMaven"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3668351662", + ["text"] = "#% increased Shock Duration on Enemies", + ["type"] = "explicit", + }, + }, + ["1862_ShockDurationForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3668351662", + ["text"] = "#% increased Shock Duration on Enemies", + ["type"] = "explicit", + }, + }, + ["1862_ShockingConfluxMaven"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3668351662", - ["text"] = "#% increased Shock Duration on Enemies", - ["type"] = "explicit", - }, - }, - ["1858_FreezeChanceAndDuration"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3668351662", + ["text"] = "#% increased Shock Duration on Enemies", + ["type"] = "explicit", + }, + }, + ["1863_FreezeChanceAndDuration"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1073942215", - ["text"] = "#% increased Freeze Duration on Enemies", - ["type"] = "explicit", - }, - }, - ["1858_FreezeChanceAndDurationForJewel"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1073942215", + ["text"] = "#% increased Freeze Duration on Enemies", + ["type"] = "explicit", + }, + }, + ["1863_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", - }, - }, - ["1859_BurnDurationForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1086147743", - ["text"] = "#% increased Ignite Duration on Enemies", - ["type"] = "explicit", - }, - }, - ["1859_FasterIgniteDamageMaven"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1073942215", + ["text"] = "#% increased Freeze Duration on Enemies", + ["type"] = "explicit", + }, + }, + ["1864_BurnDurationForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", + ["type"] = "explicit", + }, + }, + ["1864_FasterIgniteDamageMaven"] = { ["Boots"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1086147743", - ["text"] = "#% increased Ignite Duration on Enemies", - ["type"] = "explicit", - }, - }, - ["1859_IgniteChanceAndDurationForJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", + ["type"] = "explicit", + }, + }, + ["1864_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", - }, - }, - ["1859_IgniteDurationSupported"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", + ["type"] = "explicit", + }, + }, + ["1864_IgniteDurationSupported"] = { ["Helmet"] = { - ["max"] = 20, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1086147743", - ["text"] = "#% increased Ignite Duration on Enemies", - ["type"] = "explicit", - }, - }, - ["1859_IgnitingConfluxMaven"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", + ["type"] = "explicit", + }, + }, + ["1864_IgnitingConfluxMaven"] = { ["Helmet"] = { - ["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", - }, - }, - ["1860_IncreasedAilmentDurationMaven"] = { - ["Gloves"] = { - ["max"] = 15, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2419712247", - ["text"] = "#% increased Duration of Ailments on Enemies", - ["type"] = "explicit", - }, - }, - ["1863_StunDurationAndThresholdUber"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", + ["type"] = "explicit", + }, + }, + ["1865_IncreasedAilmentDuration"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2419712247", + ["text"] = "#% increased Duration of Ailments on Enemies", + ["type"] = "explicit", + }, + }, + ["1865_IncreasedAilmentDurationMaven"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2419712247", + ["text"] = "#% increased Duration of Ailments on Enemies", + ["type"] = "explicit", + }, + }, + ["1868_StunDurationAndThresholdUber"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 11, - }, + ["max"] = 20, + ["min"] = 11, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 11, - }, + ["max"] = 20, + ["min"] = 11, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2517001139", - ["text"] = "#% increased Stun Duration on Enemies", - ["type"] = "explicit", - }, - }, - ["1863_StunDurationForJewel"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2517001139", + ["text"] = "#% increased Stun Duration on Enemies", + ["type"] = "explicit", + }, + }, + ["1868_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", - }, - }, - ["1863_StunDurationIncreasePercent"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2517001139", + ["text"] = "#% increased Stun Duration on Enemies", + ["type"] = "explicit", + }, + }, + ["1868_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", - }, - }, - ["1867_SelfStatusAilmentDuration"] = { + ["max"] = 35, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2517001139", + ["text"] = "#% increased Stun Duration on Enemies", + ["type"] = "explicit", + }, + }, + ["186_LocalIncreaseSocketedAuraLevel"] = { + ["Helmet"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2452998583", + ["text"] = "+# to Level of Socketed Aura Gems", + ["type"] = "explicit", + }, + }, + ["1872_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", - }, - }, - ["186_LocalIncreaseSocketedTrapGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_407139870", - ["text"] = "+# to Level of Socketed Trap Gems", - ["type"] = "explicit", - }, - }, - ["1874_ReducedFreezeDuration"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1745952865", + ["text"] = "#% reduced Elemental Ailment Duration on you", + ["type"] = "explicit", + }, + }, + ["1875_ReducedIgniteDurationOnSelf"] = { + ["Ring"] = { + ["max"] = 60, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "explicit", + }, + }, + ["1879_ReducedFreezeDuration"] = { ["Helmet"] = { - ["max"] = 60, - ["min"] = 51, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", - ["type"] = "explicit", - }, - }, - ["1874_ReducedFreezeDurationMaven"] = { + ["max"] = 60, + ["min"] = 51, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "explicit", + }, + }, + ["1879_ReducedFreezeDurationMaven"] = { ["Helmet"] = { - ["max"] = 60, - ["min"] = 51, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", - ["type"] = "explicit", - }, - }, - ["1875_ReducedBurnDuration"] = { + ["max"] = 60, + ["min"] = 51, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "explicit", + }, + }, + ["1880_AreaDamageAndAreaOfEffect"] = { + ["Gloves"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["1880_ReducedBurnDuration"] = { ["Helmet"] = { - ["max"] = 60, - ["min"] = 51, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", - ["type"] = "explicit", - }, - }, - ["1875_ReducedBurnDurationMaven"] = { + ["max"] = 60, + ["min"] = 51, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "explicit", + }, + }, + ["1880_ReducedBurnDurationMaven"] = { ["Helmet"] = { - ["max"] = 60, - ["min"] = 51, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", - ["type"] = "explicit", - }, - }, - ["1875_ReducedIgniteDurationOnSelf"] = { + ["max"] = 60, + ["min"] = 51, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "explicit", + }, + }, + ["1880_ReducedIgniteDurationOnSelf"] = { ["AnyJewel"] = { - ["max"] = 35, - ["min"] = 30, - }, + ["max"] = 35, + ["min"] = 30, + }, ["BaseJewel"] = { - ["max"] = 35, - ["min"] = 30, - }, - ["Ring"] = { - ["max"] = 60, - ["min"] = 41, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", - ["type"] = "explicit", - }, - }, - ["1877_BurnDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1175385867", - ["text"] = "#% increased Burning Damage", - ["type"] = "explicit", - }, - }, - ["1877_BurnDamagePrefix"] = { + ["max"] = 35, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "explicit", + }, + }, + ["1880_SkillAreaOfEffectPercentAndAreaOfEffectGemLevel"] = { + ["Helmet"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["1882_BurnDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", + ["type"] = "explicit", + }, + }, + ["1882_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", - }, - }, - ["1877_BurningDamageForJewel"] = { + ["max"] = 94, + ["min"] = 60, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", + ["type"] = "explicit", + }, + }, + ["1882_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", - }, - }, - ["1877_BurningDamageSupported"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", + ["type"] = "explicit", + }, + }, + ["1882_BurningDamageSupported"] = { ["Helmet"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1175385867", - ["text"] = "#% increased Burning Damage", - ["type"] = "explicit", - }, - }, - ["1877_IgniteChanceAndDamage"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", + ["type"] = "explicit", + }, + }, + ["1882_IgniteChanceAndDamage"] = { ["Helmet"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1175385867", - ["text"] = "#% increased Burning Damage", - ["type"] = "explicit", - }, - }, - ["187_IncreasedSocketedTrapOrMineGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_150668988", - ["text"] = "+# to Level of Socketed Trap or Mine Gems", - ["type"] = "explicit", - }, - }, - ["1880_AreaDamageAndAreaOfEffect"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", + ["type"] = "explicit", + }, + }, + ["1883_ManaAndManaCostPercent"] = { + ["Amulet"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["Ring"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_474294393", + ["text"] = "#% reduced Mana Cost of Skills", + ["type"] = "explicit", + }, + }, + ["1885_AreaDamageAndAreaOfEffect"] = { ["Gloves"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "explicit", - }, - }, - ["1880_AreaOfEffect"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["1885_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", - }, - }, - ["1880_AreaOfEffectSupported"] = { + ["max"] = 20, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["1885_AreaOfEffectSupported"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "explicit", - }, - }, - ["1880_EnemiesExplodeOnDeathPhysicalChanceMaven"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["1885_EnemiesExplodeOnDeathPhysicalChanceMaven"] = { ["Chest"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "explicit", - }, - }, - ["1880_EnemiesExplodeOnDeathPhysicalMaven"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["1885_EnemiesExplodeOnDeathPhysicalMaven"] = { ["Chest"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "explicit", - }, - }, - ["1880_LocalIncreasedPhysicalDamagePercentAndArea"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["1885_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", - }, - }, - ["1880_SkillAreaOfEffectPercentAndAreaOfEffectGemLevel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["1885_SkillAreaOfEffectPercentAndAreaOfEffectGemLevel"] = { ["Helmet"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "explicit", - }, - }, - ["1880_SupportedBySpellCascadeArea"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["1885_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", - }, - }, - ["1880_SupportedBySpiritStrikeArea"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["1885_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", - }, - }, - ["1883_ManaAndManaCostPercent"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["1888_ManaAndManaCostPercent"] = { ["Amulet"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 6, + }, ["Ring"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_474294393", - ["text"] = "#% reduced Mana Cost of Skills", - ["type"] = "explicit", - }, - }, - ["1883_ManaCostReduction"] = { + ["max"] = 7, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_474294393", + ["text"] = "#% reduced Mana Cost of Skills", + ["type"] = "explicit", + }, + }, + ["1888_ManaCostReduction"] = { ["Ring"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_474294393", - ["text"] = "#% reduced Mana Cost of Skills", - ["type"] = "explicit", - }, - }, - ["1883_ManaCostReductionForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_474294393", - ["text"] = "#% reduced Mana Cost of Skills", - ["type"] = "explicit", - }, - }, - ["1891_IncreaseManaCostFlat"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3736589033", - ["text"] = "+# to Total Mana Cost of Skills", - ["type"] = "explicit", - }, - }, - ["1891_IncreasedManaAndCost"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_474294393", + ["text"] = "#% reduced Mana Cost of Skills", + ["type"] = "explicit", + }, + }, + ["1888_ManaCostReductionForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_474294393", + ["text"] = "#% reduced Mana Cost of Skills", + ["type"] = "explicit", + }, + }, ["1896_ChaosDamageAndChaosSkillDuration"] = { ["1HAxe"] = { - ["max"] = 30, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["1HMace"] = { - ["max"] = 30, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["1HSword"] = { - ["max"] = 30, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["2HAxe"] = { - ["max"] = 30, - ["min"] = 13, - }, + ["max"] = 23, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 13, - }, + ["max"] = 23, + ["min"] = 15, + }, ["2HSword"] = { - ["max"] = 30, - ["min"] = 13, - }, + ["max"] = 23, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["Bow"] = { - ["max"] = 30, - ["min"] = 13, - }, + ["max"] = 23, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 30, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["Dagger"] = { - ["max"] = 30, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["Staff"] = { - ["max"] = 30, - ["min"] = 13, - }, + ["max"] = 23, + ["min"] = 15, + }, ["Wand"] = { - ["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, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["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", - }, - }, - ["1898_IncreasedCastSpeedTwoHandedAvoidInterruption"] = { - ["2HWeapon"] = { - ["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"] = 12, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_289885185", + ["text"] = "Chaos Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + }, + ["1896_IncreaseManaCostFlat"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3736589033", + ["text"] = "+# to Total Mana Cost of Skills", + ["type"] = "explicit", + }, + }, + ["1896_IncreasedManaAndCost"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3736589033", + ["text"] = "+# to Total Mana Cost of Skills", + ["type"] = "explicit", + }, + }, + ["189_IncreaseSocketedCurseGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3691695237", + ["text"] = "+# to Level of Socketed Curse Gems", + ["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, - }, - ["Chest"] = { - ["max"] = 1, - ["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_4154259475", - ["text"] = "+# to Level of Socketed Support Gems", - ["type"] = "explicit", - }, - }, - ["189_LocalIncreaseSocketedSupportGemLevelAndQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1902_LocalArmourAndEnergyShieldAndStunRecovery"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4154259475", + ["text"] = "+# to Level of Socketed Support Gems", + ["type"] = "explicit", + }, + }, + ["1900_SkillEffectDurationSupported"] = { + ["Boots"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "explicit", + }, + }, + ["1901_ChaosDamageAndChaosSkillDuration"] = { + ["1HAxe"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["1HMace"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["1HSword"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["2HAxe"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["2HSword"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["Claw"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["Dagger"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_289885185", + ["text"] = "Chaos Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + }, + ["1903_AvoidInterruptionWhileCasting"] = { + ["AbyssJewel"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["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", + }, + }, + ["1903_IncreasedCastSpeedTwoHandedAvoidInterruption"] = { + ["2HWeapon"] = { + ["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", + }, + }, + ["1907_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", - }, - }, - ["1902_LocalArmourAndEvasionAndEnergyShieldAndStunRecovery"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "explicit", + }, + }, + ["1907_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", - }, - }, - ["1902_LocalArmourAndEvasionAndStunRecovery"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "explicit", + }, + }, + ["1907_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", - }, - }, - ["1902_LocalEnergyShieldAndStunRecoveryPercent"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "explicit", + }, + }, + ["1907_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", - }, - }, - ["1902_LocalEvasionAndEnergyShieldAndStunRecovery"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2511217560", - ["text"] = "#% increased Stun and Block Recovery", - ["type"] = "explicit", - }, - }, - ["1902_LocalEvasionRatingAndStunRecoveryIncreasePercent"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "explicit", + }, + }, + ["1907_LocalEvasionAndEnergyShieldAndStunRecovery"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "explicit", + }, + }, + ["1907_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", - }, - }, - ["1902_LocalPhysicalDamageReductionRatingAndStunRecoveryPercent"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "explicit", + }, + }, + ["1907_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", - }, - }, - ["1902_LocalWardAndStunRecoveryPercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2511217560", - ["text"] = "#% increased Stun and Block Recovery", - ["type"] = "explicit", - }, - }, - ["1902_StunRecovery"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "explicit", + }, + }, + ["1907_LocalWardAndStunRecoveryPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "explicit", + }, + }, + ["1907_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", - }, - }, - ["1902_StunRecoveryForJewel"] = { + ["max"] = 34, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "explicit", + }, + }, + ["1907_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", - }, - }, - ["190_LocalIncreaseSocketedActiveSkillGemLevel"] = { - ["Chest"] = { - ["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", - }, - }, - ["1923_TrapCooldownRecoveryAndDuration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2001530951", - ["text"] = "#% increased Trap Duration", - ["type"] = "explicit", - }, - }, - ["1924_MineDetonationSpeedAndDuration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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"] = 35, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "explicit", + }, + }, + ["191_LocalIncreaseSocketedTrapGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_407139870", + ["text"] = "+# to Level of Socketed Trap Gems", + ["type"] = "explicit", + }, + }, ["1927_TrapThrowSpeed"] = { ["Amulet"] = { - ["max"] = 16, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["Belt"] = { - ["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, - }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_118398748", - ["text"] = "#% increased Trap Throwing Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["min"] = 7, + }, + ["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", - }, - }, - ["1928_MineLaySpeedForJewel"] = { - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1896971621", - ["text"] = "#% increased Mine Throwing Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 15, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", + ["type"] = "explicit", + }, + }, ["1928_MineLayingSpeed"] = { ["Amulet"] = { - ["max"] = 16, - ["min"] = 7, - }, + ["max"] = 12, + ["min"] = 7, + }, ["Helmet"] = { - ["max"] = 16, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1896971621", - ["text"] = "#% increased Mine Throwing Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 12, + ["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", - }, - }, - ["1931_SelfPhysAsExtraFireTaken"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["Quiver"] = { - ["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, - }, - ["Ring"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_369494213", - ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", - ["type"] = "explicit", - }, - }, - ["1932_PhysicalAddedAsFire"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1896971621", + ["text"] = "#% increased Mine Throwing Speed", + ["type"] = "explicit", + }, + }, + ["1928_TrapCooldownRecoveryAndDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2001530951", + ["text"] = "#% increased Trap Duration", + ["type"] = "explicit", + }, + }, + ["1929_MineDetonationSpeedAndDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_117667746", + ["text"] = "#% increased Mine Duration", + ["type"] = "explicit", + }, + }, + ["192_IncreasedSocketedTrapOrMineGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_150668988", + ["text"] = "+# to Level of Socketed Trap or Mine Gems", + ["type"] = "explicit", + }, + }, + ["1932_TrapSpeedCooldownSupported"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", + ["type"] = "explicit", + }, + }, + ["1932_TrapThrowSpeed"] = { + ["Amulet"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["Belt"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", + ["type"] = "explicit", + }, + }, + ["1932_TrapThrowSpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", + ["type"] = "explicit", + }, + }, + ["1932_TrapThrowSpeedOnWeapon"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", + ["type"] = "explicit", + }, + }, + ["1933_MineLaySpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1896971621", + ["text"] = "#% increased Mine Throwing Speed", + ["type"] = "explicit", + }, + }, + ["1933_MineLayingSpeed"] = { + ["Amulet"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["Helmet"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1896971621", + ["text"] = "#% increased Mine Throwing Speed", + ["type"] = "explicit", + }, + }, + ["1933_MineLayingSpeedOnWeapon"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1896971621", + ["text"] = "#% increased Mine Throwing Speed", + ["type"] = "explicit", + }, + }, + ["1935_PhysicalAddedAsChaos"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 8, + ["min"] = 5, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 8, + ["min"] = 5, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 8, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 8, + ["min"] = 5, + }, ["2HAxe"] = { - ["max"] = 30, - ["min"] = 7, - }, + ["max"] = 16, + ["min"] = 11, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 7, - }, + ["max"] = 16, + ["min"] = 11, + }, ["2HSword"] = { - ["max"] = 30, - ["min"] = 7, - }, + ["max"] = 16, + ["min"] = 11, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 7, - }, - ["Amulet"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Boots"] = { - ["max"] = 11, - ["min"] = 3, - }, - ["Quiver"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["max"] = 16, + ["min"] = 11, + }, + ["Bow"] = { + ["max"] = 16, + ["min"] = 11, + }, + ["Claw"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["Dagger"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 8, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 30, - ["min"] = 7, - }, + ["max"] = 16, + ["min"] = 11, + }, ["Wand"] = { - ["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"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3319896421", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + }, + ["1936_SelfPhysAsExtraFireTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_248982637", + ["text"] = "Hits against you gain #% of Physical Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + }, + ["1937_ConvertPhysicalToFireMaven"] = { + ["Gloves"] = { + ["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", + }, + }, + ["1937_FireDamageAsPortionOfDamage"] = { ["Quiver"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_979246511", - ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", - ["type"] = "explicit", - }, - }, - ["1933_PhysicalAddedAsCold"] = { + ["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", + }, + }, + ["1937_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, + }, ["2HSword"] = { - ["max"] = 30, - ["min"] = 7, - }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 7, - }, - ["Amulet"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Boots"] = { - ["max"] = 11, - ["min"] = 3, - }, - ["Bow"] = { - ["max"] = 20, - ["min"] = 7, - }, - ["Claw"] = { - ["max"] = 20, - ["min"] = 7, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 7, - }, - ["Quiver"] = { - ["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", - }, - }, - ["1934_ConvertPhysicalToLightningMaven"] = { - ["Gloves"] = { - ["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", - }, - }, - ["1934_PhysicalAddedAsLightning"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 7, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["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, - }, - ["Claw"] = { - ["max"] = 20, - ["min"] = 7, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["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_219391121", - ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", - ["type"] = "explicit", - }, - }, - ["1935_LocalPhysicalDamagePercentAddedAsChaos"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3319896421", - ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", - ["type"] = "explicit", - }, - }, - ["1935_PhysicalAddedAsChaos"] = { + ["max"] = 20, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_369494213", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + }, + ["1938_ConvertPhysicalToColdMaven"] = { + ["Gloves"] = { + ["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", + }, + }, + ["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_3319896421", - ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", - ["type"] = "explicit", - }, - }, - ["1938_ChaosDamageAsPortionOfLightningDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2402136583", - ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", - ["type"] = "explicit", - }, - }, - ["1938_LightningAddedAsChaos"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2402136583", + ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + }, + ["1938_PhysicalAddedAsCold"] = { ["1HAxe"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 20, + ["min"] = 7, + }, ["1HMace"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 20, + ["min"] = 7, + }, ["1HSword"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 20, + ["min"] = 7, + }, ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 20, + ["min"] = 7, + }, ["2HAxe"] = { - ["max"] = 16, - ["min"] = 11, - }, - ["2HMace"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 7, + }, ["2HSword"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 7, + }, ["2HWeapon"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 7, + }, + ["Amulet"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Boots"] = { + ["max"] = 11, + ["min"] = 3, + }, ["Bow"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 20, + ["min"] = 7, + }, ["Claw"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 20, + ["min"] = 7, + }, ["Dagger"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["Shield"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 20, + ["min"] = 7, + }, + ["Quiver"] = { + ["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", + }, + }, + ["1939_ConvertPhysicalToLightningMaven"] = { + ["Gloves"] = { + ["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", + }, + }, + ["1939_PhysicalAddedAsLightning"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 7, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 7, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 7, + }, + ["Amulet"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Boots"] = { + ["max"] = 11, + ["min"] = 3, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 7, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 7, + }, + ["Quiver"] = { + ["max"] = 15, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 16, - ["min"] = 11, - }, + ["max"] = 30, + ["min"] = 7, + }, ["Wand"] = { - ["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"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2915373966", - ["text"] = "Gain #% of Cold Damage as Extra Chaos 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", + }, + }, ["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", - }, - }, - ["1941_ChaosDamageAsPortionOfFireDamage"] = { - ["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_2915373966", + ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + }, + ["1940_LocalPhysicalDamagePercentAddedAsChaos"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3319896421", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + }, + ["1940_PhysicalAddedAsChaos"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3319896421", + ["text"] = "Gain #% of Physical 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", - }, - }, - ["1942_ElementalDamagePercentAddedAsChaos"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1599775597", + ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + }, + ["1943_ChaosDamageAsPortionOfLightningDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2402136583", + ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + }, + ["1943_LightningAddedAsChaos"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2402136583", + ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + }, + ["1945_ChaosDamageAsPortionOfColdDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2915373966", + ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + }, + ["1945_ColdAddedAsChaos"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2915373966", + ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + }, + ["1946_ChaosDamageAsPortionOfFireDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1599775597", + ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + }, + ["1946_FireAddedAsChaos"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1599775597", + ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + }, + ["1947_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", - }, - }, - ["1943_LifeDegenerationAndPercentGracePeriod"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1661347488", - ["text"] = "Lose #% of Life per second", - ["type"] = "explicit", - }, - }, - ["1944_LifeRegenerationAndPercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_836936635", - ["text"] = "Regenerate #% of Life per second", - ["type"] = "explicit", - }, - }, - ["1944_LifeRegenerationRatePercentage"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3495544060", + ["text"] = "Gain #% of Elemental Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + }, + ["1948_LifeDegenerationAndPercentGracePeriod"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1661347488", + ["text"] = "Lose #% of Life per second", + ["type"] = "explicit", + }, + }, + ["1949_LifeRegenerationAndPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_836936635", + ["text"] = "Regenerate #% of Life per second", + ["type"] = "explicit", + }, + }, + ["1949_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", - }, - }, - ["1948_ChaosDamageOverTimeTaken"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_836936635", + ["text"] = "Regenerate #% of Life per second", + ["type"] = "explicit", + }, + }, + ["194_LocalIncreaseSocketedSupportGemLevel"] = { ["Chest"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3762784591", - ["text"] = "#% reduced Chaos Damage taken over time", - ["type"] = "explicit", - }, - }, - ["1948_ChaosResistanceDamageOverTime"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3762784591", - ["text"] = "#% reduced Chaos Damage taken over time", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4154259475", + ["text"] = "+# to Level of Socketed Support Gems", + ["type"] = "explicit", + }, + }, + ["194_LocalIncreaseSocketedSupportGemLevelAndQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4154259475", + ["text"] = "+# to Level of Socketed Support Gems", + ["type"] = "explicit", + }, + }, + ["194_LocalIncreaseSocketedSupportGemLevelMaven"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4154259475", + ["text"] = "+# to Level of Socketed Support Gems", + ["type"] = "explicit", + }, + }, + ["1953_ChaosDamageOverTimeTaken"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3762784591", + ["text"] = "#% reduced Chaos Damage taken over time", + ["type"] = "explicit", + }, + }, + ["1953_ChaosResistanceDamageOverTime"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3762784591", + ["text"] = "#% reduced Chaos Damage taken over time", + ["type"] = "explicit", + }, + }, ["1955_ConvertPhysicalToFire"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["type"] = "explicit", + }, + }, + ["1957_ConvertPhysicalToCold"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["type"] = "explicit", + }, + }, + ["1959_ConvertPhysicalToLightning"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["type"] = "explicit", + }, + }, + ["195_LocalIncreaseSocketedActiveSkillGemLevel"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_524797741", + ["text"] = "+# to Level of Socketed Skill Gems", + ["type"] = "explicit", + }, + }, + ["195_LocalIncreaseSocketedActiveSkillGemLevelMaven"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_524797741", + ["text"] = "+# to Level of Socketed Skill Gems", + ["type"] = "explicit", + }, + }, + ["1960_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", - }, - }, - ["1955_ConvertPhysicalToFireMaven"] = { - ["Gloves"] = { - ["max"] = 25, - ["min"] = 22, - }, + ["max"] = 30, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["type"] = "explicit", + }, + }, + ["1960_ConvertPhysicalToFireMaven"] = { + ["Gloves"] = { + ["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", - }, - }, - ["1955_FireDamagePhysConvertedToFire"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1533563525", - ["text"] = "#% of Physical Damage Converted to Fire Damage", - ["type"] = "explicit", - }, - }, - ["1957_ColdDamagePhysConvertedToCold"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2133341901", - ["text"] = "#% of Physical Damage Converted to Cold Damage", - ["type"] = "explicit", - }, - }, - ["1957_ConvertPhysicalToCold"] = { + ["max"] = 25, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["type"] = "explicit", + }, + }, + ["1960_FireDamagePhysConvertedToFire"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["type"] = "explicit", + }, + }, + ["1962_ColdDamagePhysConvertedToCold"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["type"] = "explicit", + }, + }, + ["1962_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", - }, - }, - ["1957_ConvertPhysicalToColdMaven"] = { - ["Gloves"] = { - ["max"] = 25, - ["min"] = 22, - }, + ["max"] = 25, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["type"] = "explicit", + }, + }, + ["1962_ConvertPhysicalToColdMaven"] = { + ["Gloves"] = { + ["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", - }, - }, - ["1959_ConvertPhysicalToLightning"] = { + ["max"] = 25, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["type"] = "explicit", + }, + }, + ["1964_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", - }, - }, - ["1959_ConvertPhysicalToLightningMaven"] = { - ["Gloves"] = { - ["max"] = 25, - ["min"] = 22, - }, + ["max"] = 30, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1964_ConvertPhysicalToLightningMaven"] = { + ["Gloves"] = { + ["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", - }, - }, - ["1959_LightningDamagePhysConvertedToLightning"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3240769289", - ["text"] = "#% of Physical Damage Converted to Lightning Damage", - ["type"] = "explicit", - }, - }, - ["1962_PhysicalDamageConvertedToChaos"] = { + ["max"] = 25, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1964_LightningDamagePhysConvertedToLightning"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1967_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"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["1973_MinionDamageAndMinionMaximumLife"] = { + ["1HAxe"] = { + ["max"] = 28, + ["min"] = 16, + }, + ["1HMace"] = { + ["max"] = 28, + ["min"] = 16, + }, + ["1HSword"] = { + ["max"] = 28, + ["min"] = 16, + }, + ["1HWeapon"] = { + ["max"] = 28, + ["min"] = 16, + }, + ["2HAxe"] = { + ["max"] = 45, + ["min"] = 26, + }, + ["2HMace"] = { + ["max"] = 45, + ["min"] = 26, + }, + ["2HSword"] = { + ["max"] = 45, + ["min"] = 26, + }, + ["2HWeapon"] = { + ["max"] = 45, + ["min"] = 26, + }, + ["Bow"] = { + ["max"] = 45, + ["min"] = 26, + }, + ["Claw"] = { + ["max"] = 28, + ["min"] = 16, + }, + ["Dagger"] = { + ["max"] = 28, + ["min"] = 16, + }, + ["Staff"] = { + ["max"] = 45, + ["min"] = 26, + }, + ["Wand"] = { + ["max"] = 28, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["1973_MinionDamageOnWeapon"] = { + ["1HAxe"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["1HMace"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["1HSword"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["1HWeapon"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["2HAxe"] = { + ["max"] = 81, + ["min"] = 37, + }, + ["2HMace"] = { + ["max"] = 81, + ["min"] = 37, + }, + ["2HSword"] = { + ["max"] = 81, + ["min"] = 37, + }, + ["2HWeapon"] = { + ["max"] = 81, + ["min"] = 37, + }, + ["Bow"] = { + ["max"] = 81, + ["min"] = 37, + }, + ["Claw"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["Dagger"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["Staff"] = { + ["max"] = 81, + ["min"] = 37, + }, + ["Wand"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["1978_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"] = 13, + }, ["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", - }, - }, - ["1973_MinionDamageAndMinionMaximumLife"] = { + ["max"] = 42, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["1978_MinionDamageAndMinionMaximumLife"] = { ["1HAxe"] = { - ["max"] = 59, - ["min"] = 16, - }, + ["max"] = 59, + ["min"] = 34, + }, ["1HMace"] = { - ["max"] = 59, - ["min"] = 16, - }, + ["max"] = 59, + ["min"] = 34, + }, ["1HSword"] = { - ["max"] = 59, - ["min"] = 16, - }, + ["max"] = 59, + ["min"] = 34, + }, ["1HWeapon"] = { - ["max"] = 59, - ["min"] = 16, - }, + ["max"] = 59, + ["min"] = 34, + }, ["2HAxe"] = { - ["max"] = 59, - ["min"] = 26, - }, + ["max"] = 59, + ["min"] = 34, + }, ["2HMace"] = { - ["max"] = 59, - ["min"] = 26, - }, + ["max"] = 59, + ["min"] = 34, + }, ["2HSword"] = { - ["max"] = 59, - ["min"] = 26, - }, + ["max"] = 59, + ["min"] = 34, + }, ["2HWeapon"] = { - ["max"] = 59, - ["min"] = 26, - }, + ["max"] = 59, + ["min"] = 34, + }, ["Bow"] = { - ["max"] = 59, - ["min"] = 26, - }, + ["max"] = 59, + ["min"] = 34, + }, ["Claw"] = { - ["max"] = 59, - ["min"] = 16, - }, + ["max"] = 59, + ["min"] = 34, + }, ["Dagger"] = { - ["max"] = 59, - ["min"] = 16, - }, + ["max"] = 59, + ["min"] = 34, + }, ["Staff"] = { - ["max"] = 59, - ["min"] = 26, - }, + ["max"] = 59, + ["min"] = 34, + }, ["Wand"] = { - ["max"] = 59, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "explicit", - }, - }, - ["1973_MinionDamageForJewel"] = { + ["max"] = 59, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["1978_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", - }, - }, - ["1973_MinionDamageOnWeapon"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["1978_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", - }, - }, - ["1973_MinionDamageOnWeaponAndMana"] = { - ["1HWeapon"] = { - ["max"] = 39, - ["min"] = 5, - }, + ["max"] = 109, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["1978_MinionDamageOnWeaponAndMana"] = { + ["1HWeapon"] = { + ["max"] = 39, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 39, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "explicit", - }, - }, - ["1973_MinionDamageOnWeaponDoubleDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "explicit", - }, - }, - ["1973_MinionDamageSupported"] = { + ["max"] = 39, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["1978_MinionDamageOnWeaponDoubleDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["1978_MinionDamageSupported"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "explicit", - }, - }, - ["1974_MinionDamageIfMinionSkillUsedRecently"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["1979_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", - }, - }, - ["1980_ElementalDamagePercent"] = { + ["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", + }, + }, + ["1985_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", - }, - }, - ["1980_ElementalDamagePercentMaven"] = { + ["max"] = 49, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "explicit", + }, + }, + ["1985_ElementalDamagePercentMaven"] = { ["Helmet"] = { - ["max"] = 22, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3141070085", - ["text"] = "#% increased Elemental Damage", - ["type"] = "explicit", - }, - }, - ["1980_ElementalDamagePrefixElementalFocus"] = { + ["max"] = 22, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "explicit", + }, + }, + ["1985_ElementalDamagePrefixElementalFocus"] = { ["1HMace"] = { - ["max"] = 60, - ["min"] = 45, - }, - ["1HWeapon"] = { - ["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", - }, - }, - ["1988_MaximumBlockChance"] = { + ["max"] = 60, + ["min"] = 45, + }, + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "explicit", + }, + }, + ["1993_BlockPercentMaven"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4124805414", + ["text"] = "+#% to maximum Chance to Block Attack Damage", + ["type"] = "explicit", + }, + }, + ["1993_MaximumBlockChance"] = { ["Amulet"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4124805414", - ["text"] = "+#% to maximum Chance to Block Attack Damage", - ["type"] = "explicit", - }, - }, - ["1989_MaximumSpellBlockChance"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4124805414", + ["text"] = "+#% to maximum Chance to Block Attack Damage", + ["type"] = "explicit", + }, + }, + ["1994_MaximumSpellBlockChance"] = { ["Amulet"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2388574377", - ["text"] = "+#% to maximum Chance to Block Spell Damage", - ["type"] = "explicit", - }, - }, - ["1989_SpellBlockPercentageMaven"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2388574377", + ["text"] = "+#% to maximum Chance to Block Spell Damage", + ["type"] = "explicit", + }, + }, + ["1994_SpellBlockPercentageMaven"] = { ["Helmet"] = { - ["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, - }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_977908611", - ["text"] = "#% chance to Knock Enemies Back on hit", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2388574377", + ["text"] = "+#% to maximum Chance to Block Spell Damage", + ["type"] = "explicit", + }, + }, ["1996_ProjectileDamageAndProjectileSpeed"] = { ["Gloves"] = { - ["max"] = 20, - ["min"] = 9, - }, - ["sign"] = "", + ["max"] = 16, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "explicit", + }, + }, + ["19_ItemGenerationCannotChangePrefixes"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quiver"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", - ["type"] = "explicit", - }, - }, - ["1996_ProjectileDamageForJewel"] = { + ["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", + }, + }, + ["2000_KnockbackChanceForJewel"] = { + ["AnyJewel"] = { + ["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", + }, + }, + ["2001_ProjectileDamageAndProjectileSpeed"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "explicit", + }, + }, + ["2001_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", - }, - }, - ["1996_ProjectileDamageSupported"] = { - ["Gloves"] = { - ["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"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "explicit", + }, + }, + ["2001_ProjectileDamageSupported"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "explicit", + }, + }, + ["2001_SupportedByLesserMultipleProjectilesDamage"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "explicit", + }, + }, + ["2002_ProjectileAttackDamage"] = { + ["Gloves"] = { + ["max"] = 38, + ["min"] = 18, + }, + ["Ring"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2162876159", + ["text"] = "#% increased Projectile Attack Damage", + ["type"] = "explicit", + }, + }, + ["2024_LocalAccuracyRating"] = { + ["1HAxe"] = { + ["max"] = 300, + ["min"] = 91, + }, + ["1HMace"] = { + ["max"] = 300, + ["min"] = 91, + }, + ["1HSword"] = { + ["max"] = 300, + ["min"] = 91, + }, + ["1HWeapon"] = { + ["max"] = 300, + ["min"] = 91, + }, + ["2HAxe"] = { + ["max"] = 300, + ["min"] = 91, + }, + ["2HMace"] = { + ["max"] = 300, + ["min"] = 91, + }, + ["2HSword"] = { + ["max"] = 300, + ["min"] = 91, + }, + ["2HWeapon"] = { + ["max"] = 300, + ["min"] = 91, + }, + ["Bow"] = { + ["max"] = 300, + ["min"] = 91, + }, + ["Claw"] = { + ["max"] = 300, + ["min"] = 91, + }, + ["Dagger"] = { + ["max"] = 300, + ["min"] = 91, + }, + ["Staff"] = { + ["max"] = 300, + ["min"] = 91, + }, + ["Wand"] = { + ["max"] = 300, + ["min"] = 91, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Accuracy Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_691932474", + ["text"] = "+# to Accuracy Rating (Local)", + ["type"] = "explicit", + }, + }, + ["2024_LocalAccuracyRatingStrengthDexterity"] = { + ["1HAxe"] = { + ["max"] = 250, + ["min"] = 161, + }, + ["1HMace"] = { + ["max"] = 250, + ["min"] = 161, + }, + ["1HSword"] = { + ["max"] = 250, + ["min"] = 161, + }, + ["1HWeapon"] = { + ["max"] = 250, + ["min"] = 161, + }, + ["2HAxe"] = { + ["max"] = 250, + ["min"] = 161, + }, + ["2HMace"] = { + ["max"] = 250, + ["min"] = 161, + }, + ["2HSword"] = { + ["max"] = 250, + ["min"] = 161, + }, + ["2HWeapon"] = { + ["max"] = 250, + ["min"] = 161, + }, + ["Bow"] = { + ["max"] = 250, + ["min"] = 161, + }, + ["Claw"] = { + ["max"] = 250, + ["min"] = 161, + }, + ["Dagger"] = { + ["max"] = 250, + ["min"] = 161, + }, + ["Staff"] = { + ["max"] = 250, + ["min"] = 161, + }, + ["Wand"] = { + ["max"] = 250, + ["min"] = 161, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Accuracy Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_691932474", + ["text"] = "+# to Accuracy Rating (Local)", + ["type"] = "explicit", + }, + }, + ["2026_FireDamageAndChanceToIgnite"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["2HAxe"] = { + ["max"] = 34, + ["min"] = 21, + }, + ["2HMace"] = { + ["max"] = 34, + ["min"] = 21, + }, + ["2HSword"] = { + ["max"] = 34, + ["min"] = 21, + }, + ["2HWeapon"] = { + ["max"] = 34, + ["min"] = 21, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["Staff"] = { + ["max"] = 34, + ["min"] = 21, + }, ["Wand"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", - ["type"] = "explicit", - }, - }, - ["1997_ProjectileAttackDamage"] = { - ["Gloves"] = { - ["max"] = 38, - ["min"] = 18, - }, - ["Ring"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2162876159", - ["text"] = "#% increased Projectile Attack Damage", - ["type"] = "explicit", - }, - }, - ["19_ItemGenerationCannotChangePrefixes"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "explicit", + }, + }, + ["2029_ColdDamageAndBaseChanceToFreeze"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 20, + ["min"] = 13, + }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 20, + ["min"] = 13, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 20, + ["min"] = 13, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 20, + ["min"] = 13, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 34, + ["min"] = 21, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 34, + ["min"] = 21, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 34, + ["min"] = 21, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 34, + ["min"] = 21, + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 20, + ["min"] = 13, + }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 20, + ["min"] = 13, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 34, + ["min"] = 21, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["2024_LocalAccuracyRating"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "explicit", + }, + }, + ["2029_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", - }, - }, - ["2024_LocalAccuracyRatingAndLocalItemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to Accuracy Rating", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_691932474", - ["text"] = "+# to Accuracy Rating (Local)", - ["type"] = "explicit", - }, - }, - ["2024_LocalAccuracyRatingStrengthDexterity"] = { + ["max"] = 780, + ["min"] = 80, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Accuracy Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_691932474", + ["text"] = "+# to Accuracy Rating (Local)", + ["type"] = "explicit", + }, + }, + ["2029_LocalAccuracyRatingAndLocalItemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Accuracy Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_691932474", + ["text"] = "+# to Accuracy Rating (Local)", + ["type"] = "explicit", + }, + }, + ["2029_LocalAccuracyRatingStrengthDexterity"] = { ["1HAxe"] = { - ["max"] = 350, - ["min"] = 161, - }, + ["max"] = 350, + ["min"] = 311, + }, ["1HMace"] = { - ["max"] = 350, - ["min"] = 161, - }, + ["max"] = 350, + ["min"] = 311, + }, ["1HSword"] = { - ["max"] = 350, - ["min"] = 161, - }, + ["max"] = 350, + ["min"] = 311, + }, ["1HWeapon"] = { - ["max"] = 350, - ["min"] = 161, - }, + ["max"] = 350, + ["min"] = 311, + }, ["2HAxe"] = { - ["max"] = 350, - ["min"] = 161, - }, + ["max"] = 350, + ["min"] = 311, + }, ["2HMace"] = { - ["max"] = 350, - ["min"] = 161, - }, + ["max"] = 350, + ["min"] = 311, + }, ["2HSword"] = { - ["max"] = 350, - ["min"] = 161, - }, + ["max"] = 350, + ["min"] = 311, + }, ["2HWeapon"] = { - ["max"] = 350, - ["min"] = 161, - }, + ["max"] = 350, + ["min"] = 311, + }, ["Bow"] = { - ["max"] = 350, - ["min"] = 161, - }, + ["max"] = 350, + ["min"] = 311, + }, ["Claw"] = { - ["max"] = 350, - ["min"] = 161, - }, + ["max"] = 350, + ["min"] = 311, + }, ["Dagger"] = { - ["max"] = 350, - ["min"] = 161, - }, + ["max"] = 350, + ["min"] = 311, + }, ["Staff"] = { - ["max"] = 350, - ["min"] = 161, - }, + ["max"] = 350, + ["min"] = 311, + }, ["Wand"] = { - ["max"] = 350, - ["min"] = 161, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to Accuracy Rating", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_691932474", - ["text"] = "+# to Accuracy Rating (Local)", - ["type"] = "explicit", - }, - }, - ["2024_LocalIncreasedPhysicalDamagePercentAndAccuracyRating"] = { + ["max"] = 350, + ["min"] = 311, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Accuracy Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_691932474", + ["text"] = "+# to Accuracy Rating (Local)", + ["type"] = "explicit", + }, + }, + ["2029_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", - }, - }, - ["2024_LocalLightRadiusAndAccuracy"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to Accuracy Rating", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_691932474", - ["text"] = "+# to Accuracy Rating (Local)", - ["type"] = "explicit", - }, - }, - ["2026_ChanceToIgnite"] = { + ["max"] = 200, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Accuracy Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_691932474", + ["text"] = "+# to Accuracy Rating (Local)", + ["type"] = "explicit", + }, + }, + ["2029_LocalLightRadiusAndAccuracy"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Accuracy Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_691932474", + ["text"] = "+# to Accuracy Rating (Local)", + ["type"] = "explicit", + }, + }, + ["2031_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", - }, - }, - ["2026_ChanceToIgniteForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1335054179", - ["text"] = "#% chance to Ignite", - ["type"] = "explicit", - }, - }, - ["2026_FireDamageAndChanceToIgnite"] = { + ["max"] = 40, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "explicit", + }, + }, + ["2031_ChanceToIgniteForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "explicit", + }, + }, + ["2031_FireDamageAndChanceToIgnite"] = { ["1HAxe"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 21, + }, ["1HMace"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 21, + }, ["1HSword"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 21, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 21, + }, ["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"] = 21, + }, ["Dagger"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 21, + }, ["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", - }, - }, - ["2026_IgniteChanceAndDamage"] = { + ["max"] = 40, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "explicit", + }, + }, + ["2031_IgniteChanceAndDamage"] = { ["Helmet"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1335054179", - ["text"] = "#% chance to Ignite", - ["type"] = "explicit", - }, - }, - ["2026_IgniteChanceAndDamageMaven"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "explicit", + }, + }, + ["2031_IgniteChanceAndDamageMaven"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1335054179", - ["text"] = "#% chance to Ignite", - ["type"] = "explicit", - }, - }, - ["2026_IgniteChanceAndDurationForJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "explicit", + }, + }, + ["2031_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", - }, - }, - ["2029_ChanceToFreeze"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "explicit", + }, + }, + ["2033_LightningDamageAndChanceToShock"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["2HAxe"] = { + ["max"] = 34, + ["min"] = 21, + }, + ["2HMace"] = { + ["max"] = 34, + ["min"] = 21, + }, + ["2HSword"] = { + ["max"] = 34, + ["min"] = 21, + }, + ["2HWeapon"] = { + ["max"] = 34, + ["min"] = 21, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["Staff"] = { + ["max"] = 34, + ["min"] = 21, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "explicit", + }, + }, + ["2034_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", - }, - }, - ["2029_ChanceToFreezeForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2309614417", - ["text"] = "#% chance to Freeze", - ["type"] = "explicit", - }, - }, - ["2029_ColdDamageAndBaseChanceToFreeze"] = { + ["max"] = 40, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "explicit", + }, + }, + ["2034_ChanceToFreezeForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "explicit", + }, + }, + ["2034_ColdDamageAndBaseChanceToFreeze"] = { ["1HAxe"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 21, + }, ["1HMace"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 21, + }, ["1HSword"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 21, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 21, + }, ["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"] = 21, + }, ["Dagger"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 21, + }, ["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", - }, - }, - ["2029_FreezeChanceAndDuration"] = { + ["max"] = 40, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "explicit", + }, + }, + ["2034_FreezeChanceAndDuration"] = { ["Helmet"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2309614417", - ["text"] = "#% chance to Freeze", - ["type"] = "explicit", - }, - }, - ["2029_FreezeChanceAndDurationForJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "explicit", + }, + }, + ["2034_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", - }, - }, - ["2029_FreezeChanceAndDurationMaven"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "explicit", + }, + }, + ["2034_FreezeChanceAndDurationMaven"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2309614417", - ["text"] = "#% chance to Freeze", - ["type"] = "explicit", - }, - }, - ["2033_ChanceToShock"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "explicit", + }, + }, + ["2035_AreaDamageAndAreaOfEffect"] = { + ["Gloves"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4251717817", + ["text"] = "#% increased Area Damage", + ["type"] = "explicit", + }, + }, + ["2038_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", - }, - }, - ["2033_ChanceToShockForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1538773178", - ["text"] = "#% chance to Shock", - ["type"] = "explicit", - }, - }, - ["2033_LightningDamageAndChanceToShock"] = { + ["max"] = 40, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "explicit", + }, + }, + ["2038_ChanceToShockForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "explicit", + }, + }, + ["2038_LightningDamageAndChanceToShock"] = { ["1HAxe"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 21, + }, ["1HMace"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 21, + }, ["1HSword"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 21, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 21, + }, ["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"] = 21, + }, ["Dagger"] = { - ["max"] = 40, - ["min"] = 13, - }, + ["max"] = 40, + ["min"] = 21, + }, ["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", - }, - }, - ["2033_ShockChanceAndDurationForJewel"] = { + ["max"] = 40, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "explicit", + }, + }, + ["2038_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", - }, - }, - ["2033_ShockChanceAndEffect"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "explicit", + }, + }, + ["2038_ShockChanceAndEffect"] = { ["Helmet"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1538773178", - ["text"] = "#% chance to Shock", - ["type"] = "explicit", - }, - }, - ["2033_ShockChanceAndEffectMaven"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "explicit", + }, + }, + ["2038_ShockChanceAndEffectMaven"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1538773178", - ["text"] = "#% chance to Shock", - ["type"] = "explicit", - }, - }, - ["2035_AreaDamageAndAreaOfEffect"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "explicit", + }, + }, + ["2040_AreaDamageAndAreaOfEffect"] = { ["Gloves"] = { - ["max"] = 20, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4251717817", - ["text"] = "#% increased Area Damage", - ["type"] = "explicit", - }, - }, - ["2035_AreaDamageForJewel"] = { + ["max"] = 20, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4251717817", + ["text"] = "#% increased Area Damage", + ["type"] = "explicit", + }, + }, + ["2040_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", - }, - }, - ["2035_AreaDamageSupported"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4251717817", + ["text"] = "#% increased Area Damage", + ["type"] = "explicit", + }, + }, + ["2040_AreaDamageSupported"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4251717817", - ["text"] = "#% increased Area Damage", - ["type"] = "explicit", - }, - }, - ["2035_SupportedByIncreasedAreaOfEffectDamage"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4251717817", + ["text"] = "#% increased Area Damage", + ["type"] = "explicit", + }, + }, + ["2040_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", - }, - }, - ["2035_SupportedByMeleeSplashDamage"] = { + ["max"] = 37, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4251717817", + ["text"] = "#% increased Area Damage", + ["type"] = "explicit", + }, + }, + ["2040_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", - }, - }, - ["2039_CullingStrike"] = { + ["max"] = 37, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4251717817", + ["text"] = "#% increased Area Damage", + ["type"] = "explicit", + }, + }, + ["2043_AlwaysHits"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["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, - }, - ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2524254339", - ["text"] = "Culling Strike", - ["type"] = "explicit", - }, - }, - ["2039_CullingStrikeMaven"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4126210832", + ["text"] = "Hits can't be Evaded", + ["type"] = "explicit", + }, + }, + ["2044_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, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2524254339", - ["text"] = "Culling Strike", - ["type"] = "explicit", - }, - }, - ["2043_AlwaysHits"] = { - ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2524254339", + ["text"] = "Culling Strike", + ["type"] = "explicit", + }, + }, + ["2044_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, - }, - ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Gloves"] = { + ["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_2524254339", + ["text"] = "Culling Strike", + ["type"] = "explicit", + }, + }, ["2046_AttackAndCastSpeed"] = { ["Amulet"] = { - ["max"] = 8, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["Quiver"] = { - ["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, - }, - ["BaseJewel"] = { - ["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", - }, - }, - ["2046_IncreasedAttackAndCastSpeedSupportedMaven"] = { - ["Gloves"] = { - ["max"] = 14, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2672805335", - ["text"] = "#% increased Attack and Cast Speed", - ["type"] = "explicit", - }, - }, + ["max"] = 6, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + }, + ["2048_AlwaysHits"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4126210832", + ["text"] = "Hits can't be Evaded", + ["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", - }, - }, - ["2050_AccuracyRatingPerFrenzyChargeUber"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3828613551", + ["text"] = "+#% to Quality of Socketed Gems", + ["type"] = "explicit", + }, + }, + ["2051_AttackAndCastSpeed"] = { + ["Amulet"] = { + ["max"] = 8, + ["min"] = 7, + }, + ["Quiver"] = { + ["max"] = 8, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + }, + ["2051_AttackAndCastSpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + }, + ["2051_IncreasedAttackAndCastSpeedSupported"] = { + ["Gloves"] = { + ["max"] = 14, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + }, + ["2051_IncreasedAttackAndCastSpeedSupportedMaven"] = { + ["Gloves"] = { + ["max"] = 14, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + }, + ["2055_AccuracyRatingPerFrenzyChargeUber"] = { ["1HSword"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["2HSword"] = { - ["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", - }, - }, - ["2059_GlobalFlaskLifeRecovery"] = { + ["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", + }, + }, + ["2064_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", - }, - }, - ["205_IncreaseSocketedSupportGemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1328548975", - ["text"] = "+#% to Quality of Socketed Support Gems", - ["type"] = "explicit", - }, - }, - ["205_LocalIncreaseSocketedSupportGemLevelAndQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1328548975", - ["text"] = "+#% to Quality of Socketed Support Gems", - ["type"] = "explicit", - }, - }, - ["205_LocalIncreaseSocketedSupportGemLevelMaven"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "explicit", + }, + }, + ["2065_ManaRecoveryRateMaven"] = { ["Chest"] = { - ["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", - }, - }, - ["2069_AddedPhysicalDamageWithAxes"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", + ["type"] = "explicit", + }, + }, + ["2074_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", - }, - }, - ["206_LocalIncreaseSocketedActiveSkillGemLevelMaven"] = { - ["Chest"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1325783255", - ["text"] = "+#% to Quality of Socketed Skill Gems", - ["type"] = "explicit", - }, - }, - ["2070_PhysicalDamageWithBowsJewel"] = { + ["max"] = 9, + ["min"] = 2.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_311030839", + ["text"] = "# to # Added Physical Damage with Axe Attacks", + ["type"] = "explicit", + }, + }, + ["2075_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", - }, - }, - ["2071_AddedPhysicalDamageWithClaws"] = { + ["max"] = 9, + ["min"] = 2.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1760576992", + ["text"] = "# to # Added Physical Damage with Bow Attacks", + ["type"] = "explicit", + }, + }, + ["2076_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", - }, - }, - ["2072_AddedPhysicalDamageWithDaggers"] = { + ["max"] = 9, + ["min"] = 2.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3303015", + ["text"] = "# to # Added Physical Damage with Claw Attacks", + ["type"] = "explicit", + }, + }, + ["2077_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", - }, - }, - ["2073_AddedPhysicalDamageWithMaces"] = { + ["max"] = 9, + ["min"] = 2.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1298238534", + ["text"] = "# to # Added Physical Damage with Dagger Attacks", + ["type"] = "explicit", + }, + }, + ["2078_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", - }, - }, - ["2074_AddedPhysicalDamageWithStaves"] = { + ["max"] = 9, + ["min"] = 2.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3882662078", + ["text"] = "# to # Added Physical Damage with Mace or Sceptre Attacks", + ["type"] = "explicit", + }, + }, + ["2079_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", - }, - }, - ["2075_AddedPhysicalDamageWithSwords"] = { + ["max"] = 9, + ["min"] = 2.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_69898010", + ["text"] = "# to # Added Physical Damage with Staff Attacks", + ["type"] = "explicit", + }, + }, + ["2080_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", - }, - }, - ["2076_AddedPhysicalDamageWithWands"] = { + ["max"] = 9, + ["min"] = 2.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1040189894", + ["text"] = "# to # Added Physical Damage with Sword Attacks", + ["type"] = "explicit", + }, + }, + ["2081_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", - }, - }, - ["2079_AddedFireDamageWithAxes"] = { + ["max"] = 9, + ["min"] = 2.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_133683091", + ["text"] = "# to # Added Physical Damage with Wand Attacks", + ["type"] = "explicit", + }, + }, + ["2084_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", - }, - }, - ["2080_FireDamageWithBowsJewel"] = { + ["max"] = 25, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2461965653", + ["text"] = "# to # Added Fire Damage with Axe Attacks", + ["type"] = "explicit", + }, + }, + ["2085_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", - }, - }, - ["2081_AddedFireDamageWithClaws"] = { + ["max"] = 25, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3120164895", + ["text"] = "# to # Added Fire Damage with Bow Attacks", + ["type"] = "explicit", + }, + }, + ["2086_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", - }, - }, - ["2082_AddedFireDamageWithDaggers"] = { + ["max"] = 25, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2154290807", + ["text"] = "# to # Added Fire Damage with Claw Attacks", + ["type"] = "explicit", + }, + }, + ["2087_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", - }, - }, - ["2083_AddedFireDamageWithMaces"] = { + ["max"] = 25, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1910361436", + ["text"] = "# to # Added Fire Damage with Dagger Attacks", + ["type"] = "explicit", + }, + }, + ["2088_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", - }, - }, - ["2084_AddedFireDamageWithStaves"] = { + ["max"] = 25, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3146788701", + ["text"] = "# to # Added Fire Damage with Mace or Sceptre Attacks", + ["type"] = "explicit", + }, + }, + ["2089_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", - }, - }, - ["2085_AddedFireDamageWithSwords"] = { + ["max"] = 25, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3220927448", + ["text"] = "# to # Added Fire Damage with Staff Attacks", + ["type"] = "explicit", + }, + }, + ["2090_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", - }, - }, - ["2086_AddedFireDamageWithWands"] = { + ["max"] = 25, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_601249293", + ["text"] = "# to # Added Fire Damage with Sword Attacks", + ["type"] = "explicit", + }, + }, + ["2091_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", - }, - }, - ["2087_AddedColdDamageWithAxes"] = { + ["max"] = 25, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_87098247", + ["text"] = "# to # Added Fire Damage with Wand Attacks", + ["type"] = "explicit", + }, + }, + ["2092_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", - }, - }, - ["2088_AddedColdDamageWithBows"] = { + ["max"] = 21.5, + ["min"] = 6.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1782176131", + ["text"] = "# to # Added Cold Damage with Axe Attacks", + ["type"] = "explicit", + }, + }, + ["2093_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", - }, - }, - ["2089_AddedColdDamageWithClaws"] = { + ["max"] = 21.5, + ["min"] = 6.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_215124030", + ["text"] = "# to # Added Cold Damage with Bow Attacks", + ["type"] = "explicit", + }, + }, + ["2094_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", - }, - }, - ["2090_AddedColdDamageWithDaggers"] = { + ["max"] = 21.5, + ["min"] = 6.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2848646243", + ["text"] = "# to # Added Cold Damage with Claw Attacks", + ["type"] = "explicit", + }, + }, + ["2095_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", - }, - }, - ["2091_AddedColdDamageWithMaces"] = { + ["max"] = 21.5, + ["min"] = 6.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1263342750", + ["text"] = "# to # Added Cold Damage with Dagger Attacks", + ["type"] = "explicit", + }, + }, + ["2096_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", - }, - }, - ["2092_AddedColdDamageWithStaves"] = { + ["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", + }, + }, + ["2097_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", - }, - }, - ["2093_AddedColdDamageWithSwords"] = { + ["max"] = 21.5, + ["min"] = 6.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1261958804", + ["text"] = "# to # Added Cold Damage with Staff Attacks", + ["type"] = "explicit", + }, + }, + ["2098_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", - }, - }, - ["2094_AddedColdDamageWithWands"] = { + ["max"] = 21.5, + ["min"] = 6.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_972201717", + ["text"] = "# to # Added Cold Damage with Sword Attacks", + ["type"] = "explicit", + }, + }, + ["2099_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", - }, - }, - ["2095_AddedLightningDamageWithAxes"] = { + ["max"] = 21.5, + ["min"] = 6.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2383797932", + ["text"] = "# to # Added Cold Damage with Wand Attacks", + ["type"] = "explicit", + }, + }, + ["209_SocketedGemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3828613551", + ["text"] = "+#% to Quality of Socketed Gems", + ["type"] = "explicit", + }, + }, + ["2100_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", - }, - }, - ["2096_AddedLightningDamageWithBows"] = { + ["max"] = 27.5, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1582068183", + ["text"] = "# to # Added Lightning Damage with Axe Attacks", + ["type"] = "explicit", + }, + }, + ["2101_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", - }, - }, - ["2097_AddedLightningDamageWithClaws"] = { + ["max"] = 27.5, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1040269876", + ["text"] = "# to # Added Lightning Damage with Bow Attacks", + ["type"] = "explicit", + }, + }, + ["2102_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", - }, - }, - ["2098_AddedLightningDamageWithDaggers"] = { + ["max"] = 27.5, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4231842891", + ["text"] = "# to # Added Lightning Damage with Claw Attacks", + ["type"] = "explicit", + }, + }, + ["2103_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", - }, - }, - ["2099_AddedLightningDamageWithMaces"] = { + ["max"] = 27.5, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3479683016", + ["text"] = "# to # Added Lightning Damage with Dagger Attacks", + ["type"] = "explicit", + }, + }, + ["2104_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", - }, - }, - ["2100_AddedLightningDamageWithStaves"] = { + ["max"] = 27.5, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2096159630", + ["text"] = "# to # Added Lightning Damage with Mace or Sceptre Attacks", + ["type"] = "explicit", + }, + }, + ["2105_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", - }, - }, - ["2101_AddedLightningDamageWithSwords"] = { + ["max"] = 27.5, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3212481075", + ["text"] = "# to # Added Lightning Damage with Staff Attacks", + ["type"] = "explicit", + }, + }, + ["2106_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", - }, - }, - ["2102_AddedLightningDamageWithWands"] = { + ["max"] = 27.5, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1237708713", + ["text"] = "# to # Added Lightning Damage with Sword Attacks", + ["type"] = "explicit", + }, + }, + ["2107_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", - }, - }, - ["2103_AddedChaosDamageWithBows"] = { + ["max"] = 27.5, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2787733863", + ["text"] = "# to # Added Lightning Damage with Wand Attacks", + ["type"] = "explicit", + }, + }, + ["2108_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", - }, - }, - ["2104_AddedChaosDamageWithClaws"] = { + ["max"] = 18.5, + ["min"] = 6.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3478075311", + ["text"] = "# to # Added Chaos Damage with Bow Attacks", + ["type"] = "explicit", + }, + }, + ["2109_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", - }, - }, - ["2105_AddedChaosDamageWithDaggers"] = { + ["max"] = 18.5, + ["min"] = 6.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4191067677", + ["text"] = "# to # Added Chaos Damage with Claw Attacks", + ["type"] = "explicit", + }, + }, + ["210_IncreaseSocketedSupportGemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1328548975", + ["text"] = "+#% to Quality of Socketed Support Gems", + ["type"] = "explicit", + }, + }, + ["210_LocalIncreaseSocketedSupportGemLevelAndQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1328548975", + ["text"] = "+#% to Quality of Socketed Support Gems", + ["type"] = "explicit", + }, + }, + ["210_LocalIncreaseSocketedSupportGemLevelMaven"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1328548975", + ["text"] = "+#% to Quality of Socketed Support Gems", + ["type"] = "explicit", + }, + }, + ["2110_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", - }, - }, - ["2106_SpellAddedChaosDamageWhileDualWielding"] = { + ["max"] = 18.5, + ["min"] = 6.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3248691197", + ["text"] = "# to # Added Chaos Damage with Dagger Attacks", + ["type"] = "explicit", + }, + }, + ["2111_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", - }, - }, - ["2107_SpellAddedChaosDamageWhileHoldingAShield"] = { + ["max"] = 20.5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1865428306", + ["text"] = "# to # Added Spell Chaos Damage while Dual Wielding", + ["type"] = "explicit", + }, + }, + ["2112_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", - }, - }, - ["2108_SpellAddedChaosDamageWhileWieldingTwoHandedWeapon"] = { + ["max"] = 20.5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1181129483", + ["text"] = "# to # Added Spell Chaos Damage while holding a Shield", + ["type"] = "explicit", + }, + }, + ["2113_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", - }, - }, - ["2109_SpellAddedColdDamageWhileDualWielding"] = { + ["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", + }, + }, + ["2114_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", - }, - }, - ["210_LocalIncreaseSocketedChaosGemLevelMaven"] = { - ["Boots"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2062835769", - ["text"] = "+#% to Quality of Socketed Chaos Gems", - ["type"] = "explicit", - }, - }, - ["2110_SpellAddedColdDamageWhileHoldingAShield"] = { + ["max"] = 29.5, + ["min"] = 3.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3376452528", + ["text"] = "# to # Added Spell Cold Damage while Dual Wielding", + ["type"] = "explicit", + }, + }, + ["2115_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", - }, - }, - ["2111_SpellAddedColdDamageWhileWieldingTwoHandedWeapon"] = { + ["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", + }, + }, + ["2116_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", - }, - }, - ["2112_SpellAddedFireDamageWhileDualWielding"] = { + ["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", + }, + }, + ["2117_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", - }, - }, - ["2113_SpellAddedFireDamageWhileHoldingAShield"] = { + ["max"] = 29.5, + ["min"] = 3.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_662691280", + ["text"] = "# to # Added Spell Fire Damage while Dual Wielding", + ["type"] = "explicit", + }, + }, + ["2118_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", - }, - }, - ["2114_SpellAddedFireDamageWhileWieldingTwoHandedWeapon"] = { + ["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", + }, + }, + ["2119_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", - }, - }, - ["2115_SpellAddedLightningDamageWhileDualWielding"] = { + ["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", + }, + }, + ["211_LocalIncreaseSocketedActiveSkillGemLevelMaven"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1325783255", + ["text"] = "+#% to Quality of Socketed Skill Gems", + ["type"] = "explicit", + }, + }, + ["2120_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", - }, - }, - ["2116_SpellAddedLightningDamageWhileHoldingAShield"] = { + ["max"] = 28.5, + ["min"] = 3.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3352373076", + ["text"] = "# to # Added Spell Lightning Damage while Dual Wielding", + ["type"] = "explicit", + }, + }, + ["2121_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", - }, - }, - ["2117_SpellAddedLightningDamageWhileWieldingTwoHandedWeapon"] = { + ["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", + }, + }, + ["2122_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", - }, - }, - ["2118_SpellAddedPhysicalDamageWhileDualWielding"] = { + ["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", + }, + }, + ["2123_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", - }, - }, - ["2119_SpellAddedPhysicalDamageWhileHoldingAShield"] = { + ["max"] = 20.5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4255924189", + ["text"] = "# to # Added Spell Physical Damage while Dual Wielding", + ["type"] = "explicit", + }, + }, + ["2124_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", - }, - }, - ["211_LocalIncreaseSocketedColdGemLevelMaven"] = { - ["Boots"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1164882313", - ["text"] = "+#% to Quality of Socketed Cold Gems", - ["type"] = "explicit", - }, - }, - ["2120_SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon"] = { + ["max"] = 20.5, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3954157711", + ["text"] = "# to # Added Spell Physical Damage while holding a Shield", + ["type"] = "explicit", + }, + }, + ["2125_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", - }, - }, - ["2124_AdditionalBlockChancePerEnduranceChargeUber"] = { + ["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", + }, + }, + ["2129_AdditionalBlockChancePerEnduranceChargeUber"] = { ["1HSword"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["2HSword"] = { - ["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", - }, - }, - ["2125_EnduranceChargeDurationForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1170174456", - ["text"] = "#% increased Endurance Charge Duration", - ["type"] = "explicit", - }, - }, - ["2125_EnduranceChargeOnKillChanceMaven"] = { + ["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", + }, + }, + ["2130_EnduranceChargeDurationForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1170174456", + ["text"] = "#% increased Endurance Charge Duration", + ["type"] = "explicit", + }, + }, + ["2130_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", - }, - }, - ["2127_FrenzyChargeDurationForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3338298622", - ["text"] = "#% increased Frenzy Charge Duration", - ["type"] = "explicit", - }, - }, - ["2127_FrenzyChargeOnKillChanceMaven"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1170174456", + ["text"] = "#% increased Endurance Charge Duration", + ["type"] = "explicit", + }, + }, + ["2132_FrenzyChargeDurationForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3338298622", + ["text"] = "#% increased Frenzy Charge Duration", + ["type"] = "explicit", + }, + }, + ["2132_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", - }, - }, - ["2135_DamageOverTimeWhileDualWielding"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3338298622", + ["text"] = "#% increased Frenzy Charge Duration", + ["type"] = "explicit", + }, + }, + ["2140_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", - }, - }, - ["2136_DamageOverTimeWhileHoldingAShield"] = { + ["max"] = 18, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_214001793", + ["text"] = "#% increased Damage over Time while Dual Wielding", + ["type"] = "explicit", + }, + }, + ["2141_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", - }, - }, - ["2137_DamageOverTimeWhileWieldingTwoHandedWeapon"] = { + ["max"] = 18, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1244360317", + ["text"] = "#% increased Damage over Time while holding a Shield", + ["type"] = "explicit", + }, + }, + ["2142_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", - }, - }, - ["2142_PowerChargeDurationForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3872306017", - ["text"] = "#% increased Power Charge Duration", - ["type"] = "explicit", - }, - }, - ["2142_PowerChargeOnKillChanceMaven"] = { + ["max"] = 18, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4193088553", + ["text"] = "#% increased Damage over Time while wielding a Two Handed Weapon", + ["type"] = "explicit", + }, + }, + ["2147_PowerChargeDurationForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3872306017", + ["text"] = "#% increased Power Charge Duration", + ["type"] = "explicit", + }, + }, + ["2147_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", - }, - }, - ["214_LocalIncreaseSocketedFireGemLevelMaven"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3872306017", + ["text"] = "#% increased Power Charge Duration", + ["type"] = "explicit", + }, + }, + ["215_LocalIncreaseSocketedChaosGemLevelMaven"] = { ["Boots"] = { - ["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, - }, - ["Ring"] = { - ["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"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2633745731", - ["text"] = "#% increased total Recovery per second from Life Leech", - ["type"] = "explicit", - }, - }, + ["max"] = 7, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2062835769", + ["text"] = "+#% to Quality of Socketed Chaos Gems", + ["type"] = "explicit", + }, + }, ["2160_MaximumMinionCount"] = { - ["Amulet"] = { - ["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", - }, - }, - ["2160_MaximumMinionCountAndMinionLife"] = { - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_966747987", - ["text"] = "+# to maximum number of Raised Zombies", - ["type"] = "explicit", - }, - }, - ["2161_MaximumMinionCount"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_125218179", - ["text"] = "+# to maximum number of Spectres", - ["type"] = "explicit", - }, - }, - ["2161_MaximumSpectreCount"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_125218179", - ["text"] = "+# to maximum number of Spectres", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_966747987", + ["text"] = "+# to maximum number of Raised Zombies", + ["type"] = "explicit", + }, + }, + ["2162_IncreasedLifeLeechRate"] = { + ["Amulet"] = { + ["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", + }, + }, + ["2162_LifeLeechSpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2633745731", + ["text"] = "#% increased total Recovery per second from Life Leech", + ["type"] = "explicit", + }, + }, ["2162_MaximumMinionCount"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1225383362", + ["text"] = "+# to maximum number of Skeletons", + ["type"] = "explicit", + }, + }, + ["2165_MaximumMinionCount"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_966747987", + ["text"] = "+# to maximum number of Raised Zombies", + ["type"] = "explicit", + }, + }, + ["2165_MaximumMinionCountAndMinionLife"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1225383362", - ["text"] = "+# to maximum number of Skeletons", - ["type"] = "explicit", - }, - }, - ["2162_MaximumMinionCountAndMinionLife"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_966747987", + ["text"] = "+# to maximum number of Raised Zombies", + ["type"] = "explicit", + }, + }, + ["2166_MaximumMinionCount"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_125218179", + ["text"] = "+# to maximum number of Spectres", + ["type"] = "explicit", + }, + }, + ["2166_MaximumSpectreCount"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_125218179", + ["text"] = "+# to maximum number of Spectres", + ["type"] = "explicit", + }, + }, + ["2167_MaximumMinionCount"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1225383362", + ["text"] = "+# to maximum number of Skeletons", + ["type"] = "explicit", + }, + }, + ["2167_MaximumMinionCountAndMinionLife"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1225383362", - ["text"] = "+# to maximum number of Skeletons", - ["type"] = "explicit", - }, - }, - ["2168_AdditionalCurseOnEnemies"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1225383362", + ["text"] = "+# to maximum number of Skeletons", + ["type"] = "explicit", + }, + }, + ["216_LocalIncreaseSocketedColdGemLevelMaven"] = { + ["Boots"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1164882313", + ["text"] = "+#% to Quality of Socketed Cold Gems", + ["type"] = "explicit", + }, + }, + ["2170_ReducedCurseEffect"] = { + ["Ring"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3407849389", + ["text"] = "#% reduced Effect of Curses on you", + ["type"] = "explicit", + }, + }, + ["2173_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", - }, - }, - ["2168_AdditionalCurseOnEnemiesMaven"] = { + ["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", + }, + }, + ["2173_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", - }, - }, - ["2168_OLDAdditionalCurseOnEnemiesMaven"] = { + ["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", + }, + }, + ["2173_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", - }, - }, - ["216_LocalIncreaseSocketedLightningGemLevelMaven"] = { - ["Boots"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1065580342", - ["text"] = "+#% to Quality of Socketed Lightning Gems", - ["type"] = "explicit", - }, - }, - ["2170_CurseEffectOnYouJewel"] = { + ["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", + }, + }, + ["2175_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", - }, - }, - ["2170_ReducedCurseEffect"] = { + ["max"] = 30, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3407849389", + ["text"] = "#% reduced Effect of Curses on you", + ["type"] = "explicit", + }, + }, + ["2175_ReducedCurseEffect"] = { ["Ring"] = { - ["max"] = 40, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3407849389", - ["text"] = "#% reduced Effect of Curses on you", - ["type"] = "explicit", - }, - }, - ["2181_IgnoreArmourMovementPenalties"] = { + ["max"] = 40, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3407849389", + ["text"] = "#% reduced Effect of Curses on you", + ["type"] = "explicit", + }, + }, + ["2183_FlaskEffectAndFlaskChargesGained"] = { + ["Belt"] = { + ["max"] = -20, + ["min"] = -33, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1452809865", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "explicit", + }, + }, + ["2186_IgnoreArmourMovementPenalties"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1311723478", - ["text"] = "Ignore all Movement Penalties from Armour", - ["type"] = "explicit", - }, - }, - ["2183_BeltIncreasedFlaskChargesGained"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1311723478", + ["text"] = "Ignore all Movement Penalties from Armour", + ["type"] = "explicit", + }, + }, + ["2187_BeltIncreasedFlaskDuration"] = { ["Belt"] = { - ["max"] = 40, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1452809865", - ["text"] = "#% increased Flask Charges gained", - ["type"] = "explicit", - }, - }, - ["2183_FlaskEffectAndFlaskChargesGained"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", + ["type"] = "explicit", + }, + }, + ["2188_BeltIncreasedFlaskChargesGained"] = { ["Belt"] = { - ["max"] = -20, - ["min"] = -33, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1452809865", - ["text"] = "#% increased Flask Charges gained", - ["type"] = "explicit", - }, - }, - ["2184_BeltReducedFlaskChargesUsed"] = { + ["max"] = 40, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1452809865", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "explicit", + }, + }, + ["2188_FlaskEffectAndFlaskChargesGained"] = { ["Belt"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_644456512", - ["text"] = "#% reduced Flask Charges used", - ["type"] = "explicit", - }, - }, - ["2187_BeltIncreasedFlaskDuration"] = { + ["max"] = -33, + ["min"] = -33, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1452809865", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "explicit", + }, + }, + ["2189_BeltReducedFlaskChargesUsed"] = { + ["Belt"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "explicit", + }, + }, + ["2192_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", - }, - }, - ["2189_BeltFlaskLifeRecoveryRate"] = { + ["max"] = 33, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", + ["type"] = "explicit", + }, + }, + ["2194_BeltFlaskLifeRecoveryRate"] = { ["Belt"] = { - ["max"] = 40, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_51994685", - ["text"] = "#% increased Flask Life Recovery rate", - ["type"] = "explicit", - }, - }, - ["2190_BeltFlaskManaRecoveryRate"] = { + ["max"] = 40, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_51994685", + ["text"] = "#% increased Flask Life Recovery rate", + ["type"] = "explicit", + }, + }, + ["2195_BeltFlaskManaRecoveryRate"] = { ["Belt"] = { - ["max"] = 40, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1412217137", - ["text"] = "#% increased Flask Mana Recovery rate", - ["type"] = "explicit", - }, - }, - ["2202_AttackerTakesDamageNoRange"] = { + ["max"] = 40, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1412217137", + ["text"] = "#% increased Flask Mana Recovery rate", + ["type"] = "explicit", + }, + }, + ["219_LocalIncreaseSocketedFireGemLevelMaven"] = { + ["Boots"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3422008440", + ["text"] = "+#% to Quality of Socketed Fire Gems", + ["type"] = "explicit", + }, + }, + ["2207_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", - }, - }, - ["2214_CurseCastSpeedForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2378065031", - ["text"] = "Curse Skills have #% increased Cast Speed", - ["type"] = "explicit", - }, - }, - ["2224_AuraRadiusForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_895264825", - ["text"] = "#% increased Area of Effect of Aura Skills", - ["type"] = "explicit", - }, - }, - ["2225_CurseAreaOfEffect"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_153777645", - ["text"] = "#% increased Area of Effect of Hex Skills", - ["type"] = "explicit", - }, - }, - ["2225_CurseRadiusForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_153777645", - ["text"] = "#% increased Area of Effect of Hex Skills", - ["type"] = "explicit", - }, - }, - ["2226_LifeReservationEfficiency"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_635485889", - ["text"] = "#% increased Life Reservation Efficiency of Skills", - ["type"] = "explicit", - }, - }, - ["2228_ManaReservationEfficiency"] = { + ["max"] = 200, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3767873853", + ["text"] = "Reflects # Physical Damage to Melee Attackers", + ["type"] = "explicit", + }, + }, + ["2219_CurseCastSpeedForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2378065031", + ["text"] = "Curse Skills have #% increased Cast Speed", + ["type"] = "explicit", + }, + }, + ["221_LocalIncreaseSocketedLightningGemLevelMaven"] = { + ["Boots"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1065580342", + ["text"] = "+#% to Quality of Socketed Lightning Gems", + ["type"] = "explicit", + }, + }, + ["2229_AuraRadiusForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_895264825", + ["text"] = "#% increased Area of Effect of Aura Skills", + ["type"] = "explicit", + }, + }, + ["2230_CurseAreaOfEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_153777645", + ["text"] = "#% increased Area of Effect of Hex Skills", + ["type"] = "explicit", + }, + }, + ["2230_CurseRadiusForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_153777645", + ["text"] = "#% increased Area of Effect of Hex Skills", + ["type"] = "explicit", + }, + }, + ["2231_LifeReservationEfficiency"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_635485889", + ["text"] = "#% increased Life Reservation Efficiency of Skills", + ["type"] = "explicit", + }, + }, + ["2233_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", - }, - }, - ["2232_IncreasedManaAndReservation"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4237190083", - ["text"] = "#% increased Mana Reservation Efficiency of Skills", - ["type"] = "explicit", - }, - }, - ["2232_ReducedReservation"] = { + ["max"] = 14, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1269219558", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "explicit", + }, + }, + ["2237_IncreasedManaAndReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1269219558", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "explicit", + }, + }, + ["2237_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", - }, - }, - ["2234_PhysicalAttackDamageTaken"] = { + ["max"] = 14, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1269219558", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "explicit", + }, + }, + ["2239_PhysicalAttackDamageTaken"] = { ["Belt"] = { - ["max"] = 36, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3441651621", - ["text"] = "+# Physical Damage taken from Attack Hits", - ["type"] = "explicit", - }, - }, - ["2235_FlatPhysicalDamageTaken"] = { + ["max"] = 36, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3441651621", + ["text"] = "+# Physical Damage taken from Attack Hits", + ["type"] = "explicit", + }, + }, + ["2240_FlatPhysicalDamageTaken"] = { ["Chest"] = { - ["max"] = 50, - ["min"] = 34, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_321765853", - ["text"] = "+# Physical Damage taken from Hits", - ["type"] = "explicit", - }, - }, - ["2241_PhysicalDamageOfYouAndMinionsCannotBeReflectedPercentMaven"] = { + ["max"] = 50, + ["min"] = 34, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_321765853", + ["text"] = "+# Physical Damage taken from Hits", + ["type"] = "explicit", + }, + }, + ["2245_DegenDamageTaken"] = { + ["Shield"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1101403182", + ["text"] = "#% reduced Damage taken from Damage Over Time", + ["type"] = "explicit", + }, + }, + ["2246_PhysicalDamageOfYouAndMinionsCannotBeReflectedPercentMaven"] = { ["Chest"] = { - ["max"] = -3, - ["min"] = -5, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3853018505", - ["text"] = "#% increased Physical Damage taken", - ["type"] = "explicit", - }, - }, - ["2241_ReducedPhysicalReflectTakenMaven"] = { + ["max"] = -3, + ["min"] = -5, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3853018505", + ["text"] = "#% increased Physical Damage taken", + ["type"] = "explicit", + }, + }, + ["2246_ReducedPhysicalReflectTakenMaven"] = { ["Chest"] = { - ["max"] = -3, - ["min"] = -5, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3853018505", - ["text"] = "#% increased Physical Damage taken", - ["type"] = "explicit", - }, - }, - ["2242_FireDamageTaken"] = { - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3743301799", - ["text"] = "#% increased Fire Damage taken", - ["type"] = "explicit", - }, - }, - ["2243_ChaosDamageTakenPercentage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2960683632", - ["text"] = "#% reduced Chaos Damage taken", - ["type"] = "explicit", - }, - }, - ["2245_DegenDamageTaken"] = { + ["max"] = -3, + ["min"] = -5, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3853018505", + ["text"] = "#% increased Physical Damage taken", + ["type"] = "explicit", + }, + }, + ["2247_FireDamageTaken"] = { + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3743301799", + ["text"] = "#% increased Fire Damage taken", + ["type"] = "explicit", + }, + }, + ["2248_ChaosDamageTakenPercentage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2960683632", + ["text"] = "#% reduced Chaos Damage taken", + ["type"] = "explicit", + }, + }, + ["2250_DegenDamageTaken"] = { ["Shield"] = { - ["max"] = 10, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1101403182", - ["text"] = "#% reduced Damage taken from Damage Over Time", - ["type"] = "explicit", - }, - }, - ["2249_IncreasedShieldBlockPercentage"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+#% Chance to Block", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4253454700", - ["text"] = "+#% Chance to Block (Shields)", - ["type"] = "explicit", - }, - }, - ["2249_LocalPhysicalDamageReductionRatingPercentAndBlockChance"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+#% Chance to Block", - }, - ["tradeMod"] = { - ["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", - }, - }, - ["224_SupportedByIncreasedAreaOfEffectDamage"] = { + ["max"] = 10, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1101403182", + ["text"] = "#% reduced Damage taken from Damage Over Time", + ["type"] = "explicit", + }, + }, + ["2254_IncreasedShieldBlockPercentage"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+#% Chance to Block", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4253454700", + ["text"] = "+#% Chance to Block (Shields)", + ["type"] = "explicit", + }, + }, + ["2254_LocalPhysicalDamageReductionRatingPercentAndBlockChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+#% Chance to Block", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4253454700", + ["text"] = "+#% Chance to Block (Shields)", + ["type"] = "explicit", + }, + }, + ["2259_AdditionalTotems"] = { + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_429867172", + ["text"] = "+# to maximum number of Summoned Totems", + ["type"] = "explicit", + }, + }, + ["2263_LocalIncreasedPhysicalDamageAndBlindChance"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 13, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 13, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 13, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 13, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 13, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 13, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 13, + }, ["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", - }, - }, - ["2254_AdditionalTotems"] = { - ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_429867172", - ["text"] = "+# to maximum number of Summoned Totems", - ["type"] = "explicit", - }, - }, - ["2263_LocalIncreasedPhysicalDamageAndBlindChance"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2301191210", + ["text"] = "#% chance to Blind Enemies on hit", + ["type"] = "explicit", + }, + }, + ["2268_LocalIncreasedPhysicalDamageAndBlindChance"] = { ["1HAxe"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["1HMace"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["1HSword"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["2HAxe"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["2HMace"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["2HSword"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["Bow"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["Claw"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["Dagger"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["Staff"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["Wand"] = { - ["max"] = 25, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2301191210", - ["text"] = "#% chance to Blind Enemies on hit", - ["type"] = "explicit", - }, - }, - ["226_ArcaneSurgeAndSpellDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2287264161", - ["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", - }, - }, - ["226_SupportedByArcaneSurgeWeapon"] = { - ["2HWeapon"] = { - ["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", - }, - }, - ["226_WeaponSpellDamageArcaneSurge"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2287264161", - ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", - ["type"] = "explicit", - }, - }, + ["max"] = 25, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2301191210", + ["text"] = "#% chance to Blind Enemies on hit", + ["type"] = "explicit", + }, + }, ["2273_ReducedPhysicalDamageTaken"] = { + ["Chest"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["Shield"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "explicit", + }, + }, + ["2278_ReducedPhysicalDamageTaken"] = { ["Boots"] = { - ["max"] = 8, - ["min"] = 4, - }, + ["max"] = 8, + ["min"] = 4, + }, ["Chest"] = { - ["max"] = 8, - ["min"] = 2, - }, + ["max"] = 8, + ["min"] = 4, + }, ["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", - }, - }, - ["2273_ReducedPhysicalDamageTakenMaven"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "explicit", + }, + }, + ["2278_ReducedPhysicalDamageTakenMaven"] = { ["Boots"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", - ["type"] = "explicit", - }, - }, - ["2274_MinionPhysicalDamageReduction"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "explicit", + }, + }, + ["2279_MinionPhysicalDamageReduction"] = { ["Shield"] = { - ["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"] = 15, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3119612865", + ["text"] = "Minions have #% additional Physical Damage Reduction", + ["type"] = "explicit", + }, + }, + ["229_AreaOfEffectSupported"] = { + ["Helmet"] = { + ["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", + }, + }, + ["229_SupportedByIncreasedAreaOfEffectDamage"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["1HSword"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["2HAxe"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["2HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["2HSword"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["2HWeapon"] = { - ["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", - }, - }, - ["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"] = 20, + ["min"] = 16, + }, + ["Wand"] = { + ["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", + }, + }, + ["231_ArcaneSurgeAndSpellDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_123", + ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", + ["type"] = "explicit", + }, + }, + ["231_SupportedByArcaneSurge"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_123", + ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", + ["type"] = "explicit", + }, + }, + ["231_SupportedByArcaneSurgeWeapon"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_123", + ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", + ["type"] = "explicit", + }, + }, + ["231_WeaponSpellDamageArcaneSurge"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_123", + ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", + ["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, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3464137628", - ["text"] = "Suffixes Cannot Be Changed", - ["type"] = "explicit", - }, - }, - ["240_SupportedByCastOnMeleeKillWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3464137628", + ["text"] = "Suffixes Cannot Be Changed", + ["type"] = "explicit", + }, + }, + ["242_LocalPhysicalDamagePercentBrutality"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 16, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HWeapon"] = { - ["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", - }, - }, - ["242_CastWhileChannelingAndSpellDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1316646496", - ["text"] = "Socketed Gems are Supported by Level # Cast While Channelling", - ["type"] = "explicit", - }, - }, - ["242_SupportedByCastWhileChannellingWeapon"] = { - ["2HWeapon"] = { - ["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", - }, - }, - ["2447_FireResistancePhysTakenAsFire"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", - ["type"] = "explicit", - }, - }, - ["2447_PhysicalDamageTakenAsFireAndLightningPercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", - ["type"] = "explicit", - }, - }, - ["2447_PhysicalDamageTakenAsFirePercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", - ["type"] = "explicit", - }, - }, - ["2447_PhysicalDamageTakenAsFireUber"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_114", + ["text"] = "Socketed Gems are Supported by Level # Brutality", + ["type"] = "explicit", + }, + }, + ["244_SupportedByCastOnDamageTaken"] = { + ["Shield"] = { + ["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", + }, + }, + ["2452_FireResistancePhysTakenAsFire"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "explicit", + }, + }, + ["2452_PhysicalDamageTakenAsFireAndLightningPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "explicit", + }, + }, + ["2452_PhysicalDamageTakenAsFirePercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "explicit", + }, + }, + ["2452_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", - }, - }, - ["2447_PhysicalDamageTakenAsFireUberMaven"] = { + ["max"] = 13, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "explicit", + }, + }, + ["2452_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", - }, - }, - ["2448_ColdResistancePhysTakenAsCold"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1871056256", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", - ["type"] = "explicit", - }, - }, - ["2448_PhysicalDamageTakenAsCold"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1871056256", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", - ["type"] = "explicit", - }, - }, - ["2448_PhysicalDamageTakenAsColdUber"] = { + ["max"] = 18, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "explicit", + }, + }, + ["2453_ColdResistancePhysTakenAsCold"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "explicit", + }, + }, + ["2453_PhysicalDamageTakenAsCold"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "explicit", + }, + }, + ["2453_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", - }, - }, - ["2448_PhysicalDamageTakenAsColdUberMaven"] = { + ["max"] = 13, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "explicit", + }, + }, + ["2453_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", - }, - }, - ["2449_LightningResistancePhysTakenAsLightning"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_425242359", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", - ["type"] = "explicit", - }, - }, - ["2449_PhysicalDamageTakenAsFireAndLightningPercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_425242359", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", - ["type"] = "explicit", - }, - }, - ["2449_PhysicalDamageTakenAsLightningUber"] = { + ["max"] = 18, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "explicit", + }, + }, + ["2454_LightningResistancePhysTakenAsLightning"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "explicit", + }, + }, + ["2454_PhysicalDamageTakenAsFireAndLightningPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "explicit", + }, + }, + ["2454_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", - }, - }, - ["2449_PhysicalDamageTakenAsLightningUberMaven"] = { + ["max"] = 13, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "explicit", + }, + }, + ["2454_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", - }, - }, - ["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", - }, - }, - ["244_ChanceToBleedSupported"] = { - ["1HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["1HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["1HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 18, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "explicit", + }, + }, + ["2455_ManaAndDamageTakenGoesToManaPercent"] = { + ["Amulet"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "explicit", + }, + }, + ["2456_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", + }, + }, + ["2456_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", + }, + }, + ["245_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, - }, - ["Claw"] = { - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["2455_ManaAndDamageTakenGoesToManaPercent"] = { + ["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", + }, + }, + ["2460_ManaAndDamageTakenGoesToManaPercent"] = { ["Amulet"] = { - ["max"] = 8, - ["min"] = 4, - }, + ["max"] = 8, + ["min"] = 7, + }, ["Ring"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_472520716", - ["text"] = "#% of Damage taken Recouped as Mana", - ["type"] = "explicit", - }, - }, - ["2455_PercentDamageGoesToMana"] = { + ["max"] = 8, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "explicit", + }, + }, + ["2460_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", - }, - }, - ["2464_BlockVsProjectiles"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3416410609", - ["text"] = "+#% chance to Block Projectile Attack Damage", - ["type"] = "explicit", - }, - }, - ["2467_RecoverEnergyShieldPercentOnBlock"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "explicit", + }, + }, + ["2469_BlockVsProjectiles"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3416410609", + ["text"] = "+#% chance to Block Projectile Attack Damage", + ["type"] = "explicit", + }, + }, + ["2472_RecoverEnergyShieldPercentOnBlock"] = { ["Shield"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1606263610", - ["text"] = "Recover #% of Energy Shield when you Block", - ["type"] = "explicit", - }, - }, - ["2481_CausesBleeding25PercentChance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", - ["type"] = "explicit", - }, - }, - ["2483_CausesBleedingChance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", - ["type"] = "explicit", - }, - }, - ["2483_ChanceToBleedSupported"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1606263610", + ["text"] = "Recover #% of Energy Shield when you Block", + ["type"] = "explicit", + }, + }, + ["247_CastWhileChannelingAndSpellDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1316646496", + ["text"] = "Socketed Gems are Supported by Level # Cast While Channelling", + ["type"] = "explicit", + }, + }, + ["247_SupportedByCastWhileChannellingWeapon"] = { + ["2HWeapon"] = { + ["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", + }, + }, + ["2483_LocalAddedPhysicalDamageAndCausesBleeding"] = { ["1HAxe"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 40, + ["min"] = 35, + }, ["1HMace"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 40, + ["min"] = 35, + }, ["1HSword"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 40, + ["min"] = 35, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 40, + ["min"] = 35, + }, ["2HAxe"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 40, + ["min"] = 35, + }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 40, + ["min"] = 35, + }, ["2HSword"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 40, + ["min"] = 35, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 40, + ["min"] = 35, + }, + ["Bow"] = { + ["max"] = 40, + ["min"] = 35, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 40, + ["min"] = 35, + }, ["Dagger"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", - ["type"] = "explicit", - }, - }, - ["2483_LocalAddedPhysicalDamageAndCausesBleeding"] = { + ["max"] = 40, + ["min"] = 35, + }, + ["Staff"] = { + ["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", + }, + }, + ["2483_LocalIncreasedPhysicalDamageAndBleedChance"] = { ["1HAxe"] = { - ["max"] = 40, - ["min"] = 35, - }, + ["max"] = 20, + ["min"] = 13, + }, ["1HMace"] = { - ["max"] = 40, - ["min"] = 35, - }, + ["max"] = 20, + ["min"] = 13, + }, ["1HSword"] = { - ["max"] = 40, - ["min"] = 35, - }, + ["max"] = 20, + ["min"] = 13, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 35, - }, + ["max"] = 20, + ["min"] = 13, + }, ["2HAxe"] = { - ["max"] = 40, - ["min"] = 35, - }, + ["max"] = 20, + ["min"] = 13, + }, ["2HMace"] = { - ["max"] = 40, - ["min"] = 35, - }, + ["max"] = 20, + ["min"] = 13, + }, ["2HSword"] = { - ["max"] = 40, - ["min"] = 35, - }, + ["max"] = 20, + ["min"] = 13, + }, ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 35, - }, + ["max"] = 20, + ["min"] = 13, + }, ["Bow"] = { - ["max"] = 40, - ["min"] = 35, - }, + ["max"] = 20, + ["min"] = 13, + }, ["Claw"] = { - ["max"] = 40, - ["min"] = 35, - }, + ["max"] = 20, + ["min"] = 13, + }, ["Dagger"] = { - ["max"] = 40, - ["min"] = 35, - }, + ["max"] = 20, + ["min"] = 13, + }, ["Staff"] = { - ["max"] = 40, - ["min"] = 35, - }, + ["max"] = 20, + ["min"] = 13, + }, ["Wand"] = { - ["max"] = 40, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", - ["type"] = "explicit", - }, - }, - ["2483_LocalChanceToBleed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", - ["type"] = "explicit", - }, - }, - ["2483_LocalIncreasedPhysicalDamageAndBleedChance"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "explicit", + }, + }, + ["2486_CausesBleeding25PercentChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "explicit", + }, + }, + ["2488_CausesBleedingChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "explicit", + }, + }, + ["2488_ChanceToBleedSupported"] = { + ["1HAxe"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["1HMace"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["1HSword"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HAxe"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Claw"] = { + ["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", + }, + }, + ["2488_LocalAddedPhysicalDamageAndCausesBleeding"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "explicit", + }, + }, + ["2488_LocalChanceToBleed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "explicit", + }, + }, + ["2488_LocalIncreasedPhysicalDamageAndBleedChance"] = { ["1HAxe"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["1HMace"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["1HSword"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["2HAxe"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["2HMace"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["2HSword"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["Bow"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["Claw"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["Dagger"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["Staff"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["Wand"] = { - ["max"] = 25, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", - ["type"] = "explicit", - }, - }, - ["2489_BleedChanceAndDurationForJewel"] = { + ["max"] = 25, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "explicit", + }, + }, + ["2494_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", - }, - }, - ["2489_BleedOnHitAndDamage"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "explicit", + }, + }, + ["2494_BleedOnHitAndDamage"] = { ["Quiver"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1923879260", - ["text"] = "Attacks have #% chance to cause Bleeding", - ["type"] = "explicit", - }, - }, - ["2489_BleedingDamageChance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1923879260", - ["text"] = "Attacks have #% chance to cause Bleeding", - ["type"] = "explicit", - }, - }, - ["2489_BleedingDamageChanceWeaponSuffix"] = { - ["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", - }, - }, - ["2490_AbyssMinionAttacksBleedOnHitChance"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "explicit", + }, + }, + ["2494_BleedingDamageChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "explicit", + }, + }, + ["2494_BleedingDamageChanceWeaponSuffix"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "explicit", + }, + }, + ["2495_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", - }, - }, - ["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"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3998967779", + ["text"] = "Minions have #% chance to cause Bleeding with Attacks", + ["type"] = "explicit", + }, + }, + ["2499_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", + }, + }, + ["249_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", + }, + }, + ["249_ChanceToBleedSupported"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4197676934", + ["text"] = "Socketed Gems are Supported by Level # Chance To Bleed", + ["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, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1149326139", - ["text"] = "Cannot roll Caster Modifiers", - ["type"] = "explicit", - }, - }, - ["2500_LightRadiusAndAccuracy"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1263695895", - ["text"] = "#% increased Light Radius", - ["type"] = "explicit", - }, - }, - ["2500_LightRadiusAndAccuracyPercent"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1149326139", + ["text"] = "Cannot roll Caster Modifiers", + ["type"] = "explicit", + }, + }, + ["2505_LightRadiusAndAccuracy"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "explicit", + }, + }, + ["2505_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", - }, - }, - ["2500_LocalLightRadiusAndAccuracy"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1263695895", - ["text"] = "#% increased Light Radius", - ["type"] = "explicit", - }, - }, - ["2500_LocalLightRadiusAndAccuracyPercent"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "explicit", + }, + }, + ["2505_LocalLightRadiusAndAccuracy"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "explicit", + }, + }, + ["2505_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", - }, - }, - ["2508_ManaRegenerationWhileShocked"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "explicit", + }, + }, + ["2513_ManaRegenerationWhileShocked"] = { ["Boots"] = { - ["max"] = 70, - ["min"] = 70, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2076519255", - ["text"] = "#% increased Mana Regeneration Rate while Shocked", - ["type"] = "explicit", - }, - }, - ["2523_CurseOnHitLevelVulnerabilityMod"] = { + ["max"] = 70, + ["min"] = 70, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2076519255", + ["text"] = "#% increased Mana Regeneration Rate while Shocked", + ["type"] = "explicit", + }, + }, + ["2528_CurseOnHitLevelVulnerabilityMod"] = { ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3967845372", - ["text"] = "Curse Enemies with Vulnerability on Hit", - ["type"] = "explicit", - }, - }, - ["2524_CurseLevel10VulnerabilityOnHit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2213584313", - ["text"] = "#% chance to Curse Enemies with Vulnerability on Hit", - ["type"] = "explicit", - }, - }, - ["2525_CurseOnHitLevelElementalWeaknessMod"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3967845372", + ["text"] = "Curse Enemies with Vulnerability on Hit", + ["type"] = "explicit", + }, + }, + ["2529_CurseLevel10VulnerabilityOnHit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2213584313", + ["text"] = "#% chance to Curse Enemies with Vulnerability on Hit", + ["type"] = "explicit", + }, + }, + ["2530_CurseOnHitLevelElementalWeaknessMod"] = { ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2028847114", + ["text"] = "Curse Enemies with Elemental Weakness on Hit", + ["type"] = "explicit", + }, + }, + ["2532_ConductivityOnHitLevel"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_710372469", - ["text"] = "Curse Enemies with Conductivity on Hit", - ["type"] = "explicit", - }, - }, - ["2528_CurseOnHitDespair"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_710372469", + ["text"] = "Curse Enemies with Conductivity on Hit", + ["type"] = "explicit", + }, + }, + ["2533_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, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2764915899", - ["text"] = "Curse Enemies with Despair on Hit", - ["type"] = "explicit", - }, - }, - ["2528_CurseOnHitDespairMod"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2764915899", + ["text"] = "Curse Enemies with Despair on Hit", + ["type"] = "explicit", + }, + }, + ["2533_CurseOnHitDespairMod"] = { ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2764915899", - ["text"] = "Curse Enemies with Despair on Hit", - ["type"] = "explicit", - }, - }, - ["2530_FlammabilityOnHitLevel"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_338121249", - ["text"] = "Curse Enemies with Flammability on Hit", - ["type"] = "explicit", - }, - }, - ["2531_FrostbiteOnHitLevel"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Ring"] = { - ["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_2764915899", + ["text"] = "Curse Enemies with Despair 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.1, + ["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", - }, - }, - ["2534_MeleeWeaponAndUnarmedRange"] = { - ["Gloves"] = { - ["max"] = 0.4, - ["min"] = 0.2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2264295449", - ["text"] = "+# metres to Melee Strike Range", - ["type"] = "explicit", - }, - }, - ["2552_GlobalItemAttributeRequirements"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2264295449", + ["text"] = "+# metres to Melee Strike Range", + ["type"] = "explicit", + }, + }, + ["2535_FlammabilityOnHitLevel"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_338121249", + ["text"] = "Curse Enemies with Flammability on Hit", + ["type"] = "explicit", + }, + }, + ["2536_FrostbiteOnHitLevel"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_426847518", + ["text"] = "Curse Enemies with Frostbite on Hit", + ["type"] = "explicit", + }, + }, + ["2539_MeleeDamageAndMeleeRange"] = { + ["Gloves"] = { + ["max"] = 0.4, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2264295449", + ["text"] = "+# metres to Melee Strike Range", + ["type"] = "explicit", + }, + }, + ["2539_MeleeRangeAndMeleeGemLevel"] = { + ["Helmet"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2264295449", + ["text"] = "+# metres to Melee Strike Range", + ["type"] = "explicit", + }, + }, + ["2539_MeleeWeaponAndUnarmedRange"] = { + ["Gloves"] = { + ["max"] = 0.4, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2264295449", + ["text"] = "+# metres to Melee Strike Range", + ["type"] = "explicit", + }, + }, + ["2557_GlobalItemAttributeRequirements"] = { ["Amulet"] = { - ["max"] = -5, - ["min"] = -15, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_752930724", - ["text"] = "Items and Gems have #% increased Attribute Requirements", - ["type"] = "explicit", - }, - }, - ["2564_FasterIgniteDamage"] = { + ["max"] = -5, + ["min"] = -15, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_752930724", + ["text"] = "Items and Gems have #% increased Attribute Requirements", + ["type"] = "explicit", + }, + }, + ["2569_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", - }, - }, - ["2564_FasterIgniteDamageMaven"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2443492284", + ["text"] = "Ignites you inflict deal Damage #% faster", + ["type"] = "explicit", + }, + }, + ["2569_FasterIgniteDamageMaven"] = { ["Boots"] = { - ["max"] = 15, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2443492284", - ["text"] = "Ignites you inflict deal Damage #% faster", - ["type"] = "explicit", - }, - }, - ["2564_IgniteChanceAndDamageMaven"] = { + ["max"] = 15, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2443492284", + ["text"] = "Ignites you inflict deal Damage #% faster", + ["type"] = "explicit", + }, + }, + ["2569_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"] = 30, + ["min"] = 18, + }, + ["Boots"] = { + ["max"] = 30, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "explicit", + }, + }, + ["2583_SummonTotemCastSpeed"] = { + ["Amulet"] = { + ["max"] = 40, + ["min"] = 36, + }, ["Boots"] = { - ["max"] = 40, - ["min"] = 18, - }, + ["max"] = 40, + ["min"] = 36, + }, ["Chest"] = { - ["max"] = 45, - ["min"] = 21, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", - ["type"] = "explicit", - }, - }, - ["2578_TotemSpeedAttackSupported"] = { + ["max"] = 45, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "explicit", + }, + }, + ["2583_TotemSpeedAttackSupported"] = { ["Boots"] = { - ["max"] = 20, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", - ["type"] = "explicit", - }, - }, - ["2578_TotemSpeedSpellSupported"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "explicit", + }, + }, + ["2583_TotemSpeedSpellSupported"] = { ["Boots"] = { - ["max"] = 20, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", - ["type"] = "explicit", - }, - }, - ["2596_CurseEffectReduceCurseDuration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2353576063", - ["text"] = "#% increased Effect of your Curses", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "explicit", + }, + }, ["2596_CurseEffectiveness"] = { ["Shield"] = { - ["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"] = 7, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2353576063", + ["text"] = "#% increased Effect of your Curses", + ["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, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["2629_EnduranceChargeOnKillChance"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4122424929", + ["text"] = "Cannot roll Attack Modifiers", + ["type"] = "explicit", + }, + }, + ["2601_CurseEffectReduceCurseDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2353576063", + ["text"] = "#% increased Effect of your Curses", + ["type"] = "explicit", + }, + }, + ["2601_CurseEffectiveness"] = { + ["Shield"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2353576063", + ["text"] = "#% increased Effect of your Curses", + ["type"] = "explicit", + }, + }, + ["2603_MarkEffect"] = { + ["Quiver"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_803185500", + ["text"] = "#% increased Effect of your Marks", + ["type"] = "explicit", + }, + }, + ["2625_MapExtraInvasionBosses"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_279246355", + ["text"] = "Area is inhabited by an additional Invasion Boss", + ["type"] = "explicit", + }, + }, + ["2634_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", - }, - }, - ["2629_EnduranceChargeOnKillChanceMaven"] = { + ["max"] = 10, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["type"] = "explicit", + }, + }, + ["2634_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", - }, - }, - ["2629_MinimumEnduranceChargesAndOnKillChance"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["type"] = "explicit", + }, + }, + ["2634_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", - }, - }, - ["2630_MinimumEnduranceChargesAndOnKillLose"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_627015097", - ["text"] = "#% chance to lose an Endurance Charge on Kill", - ["type"] = "explicit", - }, - }, - ["2631_FrenzyChargeOnKillChance"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["type"] = "explicit", + }, + }, + ["2635_MinimumEnduranceChargesAndOnKillLose"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_627015097", + ["text"] = "#% chance to lose an Endurance Charge on Kill", + ["type"] = "explicit", + }, + }, + ["2636_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", - }, - }, - ["2631_FrenzyChargeOnKillChanceMaven"] = { + ["max"] = 10, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["type"] = "explicit", + }, + }, + ["2636_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", - }, - }, - ["2631_MinimumFrenzyChargesAndOnKillChance"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["type"] = "explicit", + }, + }, + ["2636_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", - }, - }, - ["2632_MinimumFrenzyChargesAndOnKillLose"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2142803347", - ["text"] = "#% chance to lose a Frenzy Charge on Kill", - ["type"] = "explicit", - }, - }, - ["2633_MinimumPowerChargesAndOnKillChance"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["type"] = "explicit", + }, + }, + ["2637_MinimumFrenzyChargesAndOnKillLose"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2142803347", + ["text"] = "#% chance to lose a Frenzy Charge on Kill", + ["type"] = "explicit", + }, + }, + ["2638_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", - }, - }, - ["2633_PowerChargeOnKillChance"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", + ["type"] = "explicit", + }, + }, + ["2638_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", - }, - }, - ["2633_PowerChargeOnKillChanceMaven"] = { + ["max"] = 10, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", + ["type"] = "explicit", + }, + }, + ["2638_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", - }, - }, - ["2634_MinimumPowerChargesAndOnKillLose"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2939195168", - ["text"] = "#% chance to lose a Power Charge on Kill", - ["type"] = "explicit", - }, - }, - ["2645_EnergyShieldRecoveryRateMaven"] = { + ["max"] = 15, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", + ["type"] = "explicit", + }, + }, + ["2639_MinimumPowerChargesAndOnKillLose"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2939195168", + ["text"] = "#% chance to lose a Power Charge on Kill", + ["type"] = "explicit", + }, + }, + ["2650_EnergyShieldRecoveryRateMaven"] = { ["Chest"] = { - ["max"] = 100, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2561836520", - ["text"] = "Regenerate # Energy Shield per second", - ["type"] = "explicit", - }, - }, - ["2646_EnergyShieldAndRegen"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3594640492", - ["text"] = "Regenerate #% of Energy Shield per second", - ["type"] = "explicit", - }, - }, - ["2646_EnergyShieldRegenerationPerMinute"] = { + ["max"] = 100, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1330109706", + ["text"] = "Regenerate # Energy Shield per second", + ["type"] = "explicit", + }, + }, + ["2651_EnergyShieldAndRegen"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3594640492", + ["text"] = "Regenerate #% of Energy Shield per second", + ["type"] = "explicit", + }, + }, + ["2651_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", - }, - }, - ["2646_EnergyShieldRegenerationPerMinuteMaven"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3594640492", + ["text"] = "Regenerate #% of Energy Shield per second", + ["type"] = "explicit", + }, + }, + ["2651_EnergyShieldRegenerationPerMinuteMaven"] = { ["Helmet"] = { - ["max"] = 1.5, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3594640492", - ["text"] = "Regenerate #% of Energy Shield per second", - ["type"] = "explicit", - }, - }, - ["2647_EnergyShieldAndDegenGracePeriod"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_761102773", - ["text"] = "Lose #% of Energy Shield per second", - ["type"] = "explicit", - }, - }, - ["265_WeaponSpellDamageEfficacy"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["Wand"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3924539382", - ["text"] = "Socketed Gems are Supported by Level # Efficacy", - ["type"] = "explicit", - }, - }, - ["267_ElementalDamagePrefixElementalFocus"] = { - ["1HMace"] = { - ["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", - }, - }, - ["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", - }, - }, - ["269_SupportedByEmpower"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3581578643", - ["text"] = "Socketed Gems are Supported by Level # Empower", - ["type"] = "explicit", - }, - }, + ["max"] = 1.5, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3594640492", + ["text"] = "Regenerate #% of Energy Shield per second", + ["type"] = "explicit", + }, + }, + ["2652_EnergyShieldAndDegenGracePeriod"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_761102773", + ["text"] = "Lose #% of Energy Shield per second", + ["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, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1859333175", + ["text"] = "Can have up to 3 Crafted Modifiers", + ["type"] = "explicit", + }, + }, + ["2704_DamageRemovedFromManaBeforeLife"] = { + ["Chest"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "explicit", + }, + }, + ["270_WeaponSpellDamageEfficacy"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 16, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1859333175", - ["text"] = "Can have up to 3 Crafted Modifiers", - ["type"] = "explicit", - }, - }, - ["2706_EnemiesExplodeOnDeath"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_91", + ["text"] = "Socketed Gems are Supported by Level # Efficacy", + ["type"] = "explicit", + }, + }, + ["2711_EnemiesExplodeOnDeath"] = { ["1HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["2HMace"] = { - ["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", - }, - }, - ["271_SupportedByEnhance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2556436882", - ["text"] = "Socketed Gems are Supported by Level # Enhance", - ["type"] = "explicit", - }, - }, - ["272_SupportedByEnlighten"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2065361612", - ["text"] = "Socketed Gems are Supported by Level # Enlighten", - ["type"] = "explicit", - }, - }, - ["2738_SpellDamagePer10Intelligence"] = { - ["2HWeapon"] = { - ["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"] = 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", + }, + }, + ["272_ElementalDamagePrefixElementalFocus"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_90", + ["text"] = "Socketed Gems are Supported by Level # Elemental Focus", + ["type"] = "explicit", + }, + }, ["2741_LightRadiusScalesWithEnergyShield"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3836017971", + ["text"] = "Light Radius is based on Energy Shield instead of Life", + ["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", - }, - }, - ["2743_MagicUtilityFlaskEffect"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2564857472", - ["text"] = "Magic Utility Flasks applied to you have #% increased Effect", - ["type"] = "explicit", - }, - }, - ["2745_LocalMeleeWeaponRange"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_350598685", - ["text"] = "+# metres to Weapon Range", - ["type"] = "explicit", - }, - }, - ["2745_LocalWeaponRangeUber"] = { + ["max"] = 14, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_114734841", + ["text"] = "Flasks applied to you have #% increased Effect", + ["type"] = "explicit", + }, + }, + ["2743_SpellDamagePer10Intelligence"] = { + ["2HWeapon"] = { + ["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", + }, + }, + ["2747_FlaskEffect"] = { + ["Belt"] = { + ["max"] = 12, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_114734841", + ["text"] = "Flasks applied to you have #% increased Effect", + ["type"] = "explicit", + }, + }, + ["2747_FlaskEffectAndFlaskChargesGained"] = { + ["Belt"] = { + ["max"] = 18, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_114734841", + ["text"] = "Flasks applied to you have #% increased Effect", + ["type"] = "explicit", + }, + }, + ["2748_MagicUtilityFlaskEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2564857472", + ["text"] = "Magic Utility Flasks applied to you have #% increased Effect", + ["type"] = "explicit", + }, + }, + ["274_SupportedByEmpower"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3581578643", + ["text"] = "Socketed Gems are Supported by Level # Empower", + ["type"] = "explicit", + }, + }, + ["2750_LocalMeleeWeaponRange"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_350598685", + ["text"] = "+# metres to Weapon Range", + ["type"] = "explicit", + }, + }, + ["2750_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", - }, - }, - ["2756_RarityDuringFlaskEffect"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_301625329", - ["text"] = "#% increased Rarity of Items found during any Flask Effect", - ["type"] = "explicit", - }, - }, - ["277_FireDamagePrefixFirePenetration"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["1HWeapon"] = { - ["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", - }, - }, - ["2787_TotemElementalResistancesForJewel"] = { + ["max"] = 0.3, + ["min"] = 0.1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_350598685", + ["text"] = "+# metres to Weapon Range", + ["type"] = "explicit", + }, + }, + ["2761_RarityDuringFlaskEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_301625329", + ["text"] = "#% increased Rarity of Items found during any Flask Effect", + ["type"] = "explicit", + }, + }, + ["276_SupportedByEnhance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2556436882", + ["text"] = "Socketed Gems are Supported by Level # Enhance", + ["type"] = "explicit", + }, + }, + ["277_SupportedByEnlighten"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2065361612", + ["text"] = "Socketed Gems are Supported by Level # Enlighten", + ["type"] = "explicit", + }, + }, + ["2792_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", - }, - }, - ["2798_FireColdResistanceForJewel"] = { - ["AbyssJewel"] = { - ["max"] = 12, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["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"] = 20, + ["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", - }, - }, - ["2799_FireLightningResistanceForJewel"] = { - ["AbyssJewel"] = { - ["max"] = 12, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["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"] = 20, + ["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", - }, - }, - ["2800_ColdLightningResistanceForJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4277795662", + ["text"] = "+#% to Cold and Lightning Resistances", + ["type"] = "explicit", + }, + }, + ["2803_FireColdResistanceForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2915988346", + ["text"] = "+#% to Fire and Cold Resistances", + ["type"] = "explicit", + }, + }, + ["2804_FireLightningResistanceForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3441501978", + ["text"] = "+#% to Fire and Lightning Resistances", + ["type"] = "explicit", + }, + }, + ["2805_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", - }, - }, - ["2801_ChanceToFreezeShockIgniteProliferation"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4277795662", + ["text"] = "+#% to Cold and Lightning Resistances", + ["type"] = "explicit", + }, + }, + ["2806_ChanceToFreezeShockIgniteProliferation"] = { ["1HMace"] = { - ["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", - }, - }, - ["2801_ChanceToFreezeShockIgniteUnboundAilments"] = { + ["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", + }, + }, + ["2806_ChanceToFreezeShockIgniteUnboundAilments"] = { ["1HMace"] = { - ["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", - }, - }, - ["2811_GlobalChanceToBlindOnHitMaven"] = { - ["Gloves"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["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", + }, + }, + ["2816_GlobalChanceToBlindOnHitMaven"] = { + ["Gloves"] = { + ["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", - }, - }, - ["2827_OnslaughtWhenHitForDuration"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3503466234", + ["text"] = "#% increased Damage with Hits and Ailments against Blinded Enemies", + ["type"] = "explicit", + }, + }, + ["282_FireDamagePrefixFirePenetration"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_82", + ["text"] = "Socketed Gems are Supported by Level # Fire Penetration", + ["type"] = "explicit", + }, + }, + ["2832_OnslaughtWhenHitForDuration"] = { ["Chest"] = { - ["max"] = 6, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2764164760", - ["text"] = "You gain Onslaught for # seconds when Hit", - ["type"] = "explicit", - }, - }, - ["2833_AllDefences"] = { + ["max"] = 6, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2764164760", + ["text"] = "You gain Onslaught for # seconds when Hit", + ["type"] = "explicit", + }, + }, + ["2838_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", - }, - }, - ["2833_IncreasedDefensesForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1389153006", - ["text"] = "#% increased Global Defences", - ["type"] = "explicit", - }, - }, - ["2844_FishingLineStrength"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1389153006", + ["text"] = "#% increased Global Defences", + ["type"] = "explicit", + }, + }, + ["2838_IncreasedDefensesForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1389153006", + ["text"] = "#% increased Global Defences", + ["type"] = "explicit", + }, + }, + ["2849_FishingLineStrength"] = { ["FishingRod"] = { - ["max"] = 40, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1842038569", - ["text"] = "#% increased Fishing Line Strength", - ["type"] = "explicit", - }, - }, - ["2845_FishingPoolConsumption"] = { + ["max"] = 40, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1842038569", + ["text"] = "#% increased Fishing Line Strength", + ["type"] = "explicit", + }, + }, + ["2850_FishingPoolConsumption"] = { ["FishingRod"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1550221644", - ["text"] = "#% reduced Fishing Pool Consumption", - ["type"] = "explicit", - }, - }, - ["2846_FishingLureType"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1550221644", + ["text"] = "#% reduced Fishing Pool Consumption", + ["type"] = "explicit", + }, + }, + ["2851_FishingLureType"] = { ["FishingRod"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3360430812", - ["text"] = "Rhoa Feather Lure", - ["type"] = "explicit", - }, - }, - ["2847_FishingHookType"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3360430812", + ["text"] = "Rhoa Feather Lure", + ["type"] = "explicit", + }, + }, + ["2852_FishingHookType"] = { ["FishingRod"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2054162825", - ["text"] = "Karui Stone Hook", - ["type"] = "explicit", - }, - }, - ["2848_FishingCastDistance"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2054162825", + ["text"] = "Karui Stone Hook", + ["type"] = "explicit", + }, + }, + ["2853_FishingCastDistance"] = { ["FishingRod"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_170497091", - ["text"] = "#% increased Fishing Range", - ["type"] = "explicit", - }, - }, - ["2849_FishingQuantity"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_170497091", + ["text"] = "#% increased Fishing Range", + ["type"] = "explicit", + }, + }, + ["2854_FishingQuantity"] = { ["FishingRod"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3802667447", - ["text"] = "#% increased Quantity of Fish Caught", - ["type"] = "explicit", - }, - }, - ["2850_FishingRarity"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3802667447", + ["text"] = "#% increased Quantity of Fish Caught", + ["type"] = "explicit", + }, + }, + ["2855_FishingRarity"] = { ["FishingRod"] = { - ["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", - }, - }, - ["2876_AllFireDamageCanShock"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["2903_MinionBlockForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3374054207", - ["text"] = "Minions have +#% Chance to Block Attack Damage", - ["type"] = "explicit", - }, - }, - ["2907_MinionAttackAndCastSpeed"] = { + ["max"] = 40, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3310914132", + ["text"] = "#% increased Rarity of Fish Caught", + ["type"] = "explicit", + }, + }, + ["2876_AllColdDamageCanIgnite"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1888494262", + ["text"] = "Your Cold Damage can Ignite", + ["type"] = "explicit", + }, + }, + ["2881_AllFireDamageCanShock"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_932096321", + ["text"] = "Your Fire Damage can Shock", + ["type"] = "explicit", + }, + }, + ["2888_AllLightningDamageCanFreeze"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_380759151", + ["text"] = "Your Lightning Damage can Freeze", + ["type"] = "explicit", + }, + }, + ["2907_MinionAttackAndCastSpeedOnWeapon"] = { + ["1HAxe"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["1HMace"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["1HSword"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HAxe"] = { + ["max"] = 28, + ["min"] = 19, + }, + ["2HMace"] = { + ["max"] = 28, + ["min"] = 19, + }, + ["2HSword"] = { + ["max"] = 28, + ["min"] = 19, + }, + ["2HWeapon"] = { + ["max"] = 28, + ["min"] = 19, + }, + ["Bow"] = { + ["max"] = 28, + ["min"] = 19, + }, + ["Claw"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 28, + ["min"] = 19, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3375935924", + ["text"] = "Minions have #% increased Attack Speed", + ["type"] = "explicit", + }, + }, + ["2908_MinionAttackAndCastSpeedOnWeapon"] = { + ["1HAxe"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["1HMace"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["1HSword"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HAxe"] = { + ["max"] = 28, + ["min"] = 19, + }, + ["2HMace"] = { + ["max"] = 28, + ["min"] = 19, + }, + ["2HSword"] = { + ["max"] = 28, + ["min"] = 19, + }, + ["2HWeapon"] = { + ["max"] = 28, + ["min"] = 19, + }, + ["Bow"] = { + ["max"] = 28, + ["min"] = 19, + }, + ["Claw"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 28, + ["min"] = 19, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4000101551", + ["text"] = "Minions have #% increased Cast Speed", + ["type"] = "explicit", + }, + }, + ["2908_MinionBlockForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3374054207", + ["text"] = "Minions have +#% Chance to Block Attack Damage", + ["type"] = "explicit", + }, + }, + ["2912_AllResistancesMinionResistances"] = { + ["Amulet"] = { + ["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", + }, + }, + ["2912_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", - }, - }, - ["2907_MinionAttackAndCastSpeedOnWeapon"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3375935924", + ["text"] = "Minions have #% increased Attack Speed", + ["type"] = "explicit", + }, + }, + ["2912_MinionAttackAndCastSpeedOnWeapon"] = { ["1HAxe"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 18, + }, ["1HMace"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 18, + }, ["1HSword"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 18, + }, ["1HWeapon"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 18, + }, ["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"] = 18, + }, ["Dagger"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 18, + }, ["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", - }, - }, - ["2908_MinionAttackAndCastSpeed"] = { + ["max"] = 38, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3375935924", + ["text"] = "Minions have #% increased Attack Speed", + ["type"] = "explicit", + }, + }, + ["2913_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", - }, - }, - ["2908_MinionAttackAndCastSpeedOnWeapon"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4000101551", + ["text"] = "Minions have #% increased Cast Speed", + ["type"] = "explicit", + }, + }, + ["2913_MinionAttackAndCastSpeedOnWeapon"] = { ["1HAxe"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 18, + }, ["1HMace"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 18, + }, ["1HSword"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 18, + }, ["1HWeapon"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 18, + }, ["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"] = 18, + }, ["Dagger"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 38, + ["min"] = 18, + }, ["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", - }, - }, - ["2910_MinionLifeLeech"] = { + ["max"] = 38, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4000101551", + ["text"] = "Minions have #% increased Cast Speed", + ["type"] = "explicit", + }, + }, + ["2915_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", - }, - }, - ["2911_MinionLifeMaven"] = { + ["max"] = 0.5, + ["min"] = 0.3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2770782267", + ["text"] = "Minions Leech #% of Damage as Life", + ["type"] = "explicit", + }, + }, + ["2916_MinionLifeMaven"] = { ["Helmet"] = { - ["max"] = 1.5, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2479683456", - ["text"] = "Minions Regenerate #% of Life per second", - ["type"] = "explicit", - }, - }, - ["2911_MinionLifeRegeneration"] = { + ["max"] = 1.5, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2479683456", + ["text"] = "Minions Regenerate #% of Life per second", + ["type"] = "explicit", + }, + }, + ["2916_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", - }, - }, - ["2912_AllResistancesMinionResistances"] = { - ["Amulet"] = { - ["max"] = 12, - ["min"] = 5, - }, + ["max"] = 0.8, + ["min"] = 0.4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2479683456", + ["text"] = "Minions Regenerate #% of Life per second", + ["type"] = "explicit", + }, + }, + ["2917_MinionElementalResistance"] = { ["Ring"] = { - ["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", - }, - }, - ["2912_MinionElementalResistancesForJewel"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1423639565", + ["text"] = "Minions have +#% to all Elemental Resistances", + ["type"] = "explicit", + }, + }, + ["2917_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", - }, - }, - ["2913_MinionChaosResistance"] = { + ["max"] = 15, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1423639565", + ["text"] = "Minions have +#% to all Elemental Resistances", + ["type"] = "explicit", + }, + }, + ["2918_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", - }, - }, - ["2936_PhysicalDamageAddedAsRandomElement"] = { + ["max"] = 11, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3837707023", + ["text"] = "Minions have +#% to Chaos Resistance", + ["type"] = "explicit", + }, + }, + ["2941_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", - }, - }, - ["2943_IncreasedWandDamageForJewel"] = { + ["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", + }, + }, + ["2948_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", - }, - }, - ["2958_BlindOnHitSupported"] = { - ["Gloves"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2221570601", - ["text"] = "#% Global chance to Blind Enemies on hit", - ["type"] = "explicit", - }, - }, - ["2958_GlobalChanceToBlindOnHit"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_379328644", + ["text"] = "#% increased Damage with Wands", + ["type"] = "explicit", + }, + }, + ["2963_BlindOnHitSupported"] = { + ["Gloves"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2221570601", + ["text"] = "#% Global chance to Blind Enemies on hit", + ["type"] = "explicit", + }, + }, + ["2963_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", - }, - }, - ["2958_GlobalChanceToBlindOnHitMaven"] = { - ["Gloves"] = { - ["max"] = 15, - ["min"] = 12, - }, + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2221570601", + ["text"] = "#% Global chance to Blind Enemies on hit", + ["type"] = "explicit", + }, + }, + ["2963_GlobalChanceToBlindOnHitMaven"] = { + ["Gloves"] = { + ["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", - }, - }, - ["2974_NearbyEnemiesAreBlindedMaven"] = { + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2221570601", + ["text"] = "#% Global chance to Blind Enemies on hit", + ["type"] = "explicit", + }, + }, + ["2979_NearbyEnemiesAreBlindedMaven"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1436284579", - ["text"] = "Cannot be Blinded", - ["type"] = "explicit", - }, - }, - ["2980_ElementalPenetration"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1436284579", + ["text"] = "Cannot be Blinded", + ["type"] = "explicit", + }, + }, + ["2985_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", - }, - }, - ["2981_FireResistancePenetration"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2101383955", + ["text"] = "Damage Penetrates #% Elemental Resistances", + ["type"] = "explicit", + }, + }, + ["2986_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", - }, - }, - ["2981_SpellAddedFireDamagePenetrationHybrid"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "explicit", + }, + }, + ["2986_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", - }, - }, - ["2983_ColdResistancePenetration"] = { + ["max"] = 4, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "explicit", + }, + }, + ["2988_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", - }, - }, - ["2983_SpellAddedColdDamagePenetrationHybrid"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "explicit", + }, + }, + ["2988_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", - }, - }, - ["2984_LightningResistancePenetration"] = { + ["max"] = 4, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "explicit", + }, + }, + ["2989_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", - }, - }, - ["2984_SpellAddedLightningDamagePenetrationHybrid"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "explicit", + }, + }, + ["2989_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", - }, - }, - ["2993_ChanceToGainOnslaughtOnKill"] = { + ["max"] = 4, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "explicit", + }, + }, + ["2993_MovementVelocityAndOnslaughtOnKill"] = { + ["Boots"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2453026567", + ["text"] = "#% chance to gain Onslaught for 10 seconds on Kill", + ["type"] = "explicit", + }, + }, + ["2998_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", - }, - }, - ["2993_ChanceToGainOnslaughtOnKillMaven"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2453026567", + ["text"] = "#% chance to gain Onslaught for 10 seconds on Kill", + ["type"] = "explicit", + }, + }, + ["2998_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", - }, - }, - ["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", - }, - }, - ["2993_MovementVelocityAndOnslaughtOnKill"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2453026567", + ["text"] = "#% chance to gain Onslaught for 10 seconds on Kill", + ["type"] = "explicit", + }, + }, + ["2998_IncreasedAttackAndCastSpeedSupportedMaven"] = { + ["Gloves"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2453026567", + ["text"] = "#% chance to gain Onslaught for 10 seconds on Kill", + ["type"] = "explicit", + }, + }, + ["2998_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"] = 13, + }, + ["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", - }, - }, - ["3015_IncreasedDamagePerCurse"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1818773442", - ["text"] = "#% increased Damage with Hits and Ailments per Curse on Enemy", - ["type"] = "explicit", - }, - }, - ["3024_MinionAreaOfEffect"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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"] = 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", + }, + }, + ["3020_IncreasedDamagePerCurse"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1818773442", + ["text"] = "#% increased Damage with Hits and Ailments per Curse on Enemy", + ["type"] = "explicit", + }, + }, + ["3029_MinionAreaOfEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3811191316", + ["text"] = "Minions have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, ["3063_DamageWhileLeeching"] = { + ["Amulet"] = { + ["max"] = 43, + ["min"] = 31, + }, + ["Gloves"] = { + ["max"] = 43, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_310246444", + ["text"] = "#% increased Damage while Leeching", + ["type"] = "explicit", + }, + }, + ["3065_RecoverLifePercentOnBlock"] = { + ["Shield"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2442647190", + ["text"] = "Recover #% of Life when you Block", + ["type"] = "explicit", + }, + }, + ["3068_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, - }, - ["Amulet"] = { - ["max"] = 43, - ["min"] = 31, - }, - ["Gloves"] = { - ["max"] = 43, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_310246444", - ["text"] = "#% increased Damage while Leeching", - ["type"] = "explicit", - }, - }, - ["3083_ChanceToGainUnholyMightOnKillAbyss"] = { + ["max"] = 45, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_310246444", + ["text"] = "#% increased Damage while Leeching", + ["type"] = "explicit", + }, + }, + ["3088_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, - }, ["Gloves"] = { - ["max"] = 60, - ["min"] = 20, - }, + ["max"] = 60, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2257141320", + ["text"] = "#% increased Damage with Vaal Skills", + ["type"] = "explicit", + }, + }, + ["3100_VaalSkillDamage"] = { + ["Belt"] = { + ["max"] = 40, + ["min"] = 20, + }, ["Ring"] = { - ["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", - }, - }, - ["3104_AdditionalVaalSoulOnKill"] = { + ["max"] = 40, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2257141320", + ["text"] = "#% increased Damage with Vaal Skills", + ["type"] = "explicit", + }, + }, + ["3109_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", - }, - }, - ["3105_VaalSkillDuration"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1962922582", + ["text"] = "#% chance to gain an additional Vaal Soul on Kill", + ["type"] = "explicit", + }, + }, + ["3110_VaalSkillDuration"] = { ["Amulet"] = { - ["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"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_547412107", + ["text"] = "Vaal Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + }, + ["3112_VaalSkillCriticalStrikeChance"] = { + ["Gloves"] = { + ["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", - }, - }, - ["312_BurningDamageSupported"] = { + ["max"] = 120, + ["min"] = 80, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3165492062", + ["text"] = "#% increased Vaal Skill Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["3145_ChillEnemiesWhenHit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2459809121", + ["text"] = "Chill Enemy for # second when Hit, reducing their Action Speed by 30%", + ["type"] = "explicit", + }, + }, + ["314_IgniteDurationSupported"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2680613507", - ["text"] = "Socketed Gems are Supported by Level # Burning Damage", - ["type"] = "explicit", - }, - }, - ["313_CriticalStrikeChanceSpellsSupported"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["Dagger"] = { - ["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", - }, - }, - ["313_CriticalStrikeChanceSupported"] = { - ["1HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["1HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["1HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["Claw"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["Wand"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2259700079", - ["text"] = "Socketed Gems are Supported by Level # Increased Critical Strikes", - ["type"] = "explicit", - }, - }, - ["3140_ChillEnemiesWhenHit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["3169_BleedDamageAndDuration"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_71", + ["text"] = "Socketed Gems are Supported by Level # Immolate", + ["type"] = "explicit", + }, + }, + ["3174_BleedDamageAndDuration"] = { ["Ring"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1294118672", - ["text"] = "#% increased Damage with Bleeding", - ["type"] = "explicit", - }, - }, - ["3169_BleedDamageForJewel"] = { + ["max"] = 22, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", + ["type"] = "explicit", + }, + }, + ["3174_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", - }, - }, - ["3169_BleedOnHitAndDamage"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", + ["type"] = "explicit", + }, + }, + ["3174_BleedOnHitAndDamage"] = { ["Quiver"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1294118672", - ["text"] = "#% increased Damage with Bleeding", - ["type"] = "explicit", - }, - }, - ["3169_BleedingDamageChance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1294118672", - ["text"] = "#% increased Damage with Bleeding", - ["type"] = "explicit", - }, - }, - ["3169_BleedingDamageChanceWeaponSuffix"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["3170_FasterPoisonDamageMaven"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", + ["type"] = "explicit", + }, + }, + ["3174_BleedingDamageChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", + ["type"] = "explicit", + }, + }, + ["3174_BleedingDamageChanceWeaponSuffix"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", + ["type"] = "explicit", + }, + }, + ["3174_BleedingDamageSupported"] = { + ["Gloves"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", + ["type"] = "explicit", + }, + }, + ["3175_FasterPoisonDamageMaven"] = { ["Boots"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", - ["type"] = "explicit", - }, - }, - ["3170_PoisonChanceAndDurationForJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", + }, + }, + ["3175_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", - }, - }, - ["3170_PoisonDamageAndDuration"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", + }, + }, + ["3175_PoisonDamageAndDuration"] = { ["Ring"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", - ["type"] = "explicit", - }, - }, - ["3170_PoisonDuration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", - ["type"] = "explicit", - }, - }, - ["3170_PoisonDurationChaosDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["3170_PoisonDurationWeaponSupported"] = { - ["1HWeapon"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", + }, + }, + ["3175_PoisonDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", + }, + }, + ["3175_PoisonDurationChaosDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", + }, + }, + ["3175_PoisonDurationSupported"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", + }, + }, + ["3175_PoisonDurationWeaponSupported"] = { + ["1HWeapon"] = { + ["max"] = 14, + ["min"] = 6, + }, ["Dagger"] = { - ["max"] = 14, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", - ["type"] = "explicit", - }, - }, - ["3173_PoisonChanceAndDurationForJewel"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", + }, + }, + ["3178_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", - }, - }, - ["3173_PoisonOnHitAndDamage"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "explicit", + }, + }, + ["3178_PoisonOnHitAndDamage"] = { ["Quiver"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", - ["type"] = "explicit", - }, - }, - ["3174_AbyssMinionPoisonOnHitChance"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "explicit", + }, + }, + ["3179_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", - }, - }, - ["3174_MinionsPoisonEnemiesOnHit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1974445926", - ["text"] = "Minions have #% chance to Poison Enemies on Hit", - ["type"] = "explicit", - }, - }, - ["3181_PoisonDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", - ["type"] = "explicit", - }, - }, - ["3181_PoisonDamageAddedChaosToAttacks"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", - ["type"] = "explicit", - }, - }, - ["3181_PoisonDamageAddedChaosToSpells"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", - ["type"] = "explicit", - }, - }, - ["3181_PoisonDamageAndDuration"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1974445926", + ["text"] = "Minions have #% chance to Poison Enemies on Hit", + ["type"] = "explicit", + }, + }, + ["3179_MinionsPoisonEnemiesOnHit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1974445926", + ["text"] = "Minions have #% chance to Poison Enemies on Hit", + ["type"] = "explicit", + }, + }, + ["317_BurningDamageSupported"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_68", + ["text"] = "Socketed Gems are Supported by Level # Burning Damage", + ["type"] = "explicit", + }, + }, + ["3186_PoisonDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", + }, + }, + ["3186_PoisonDamageAddedChaosToAttacks"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", + }, + }, + ["3186_PoisonDamageAddedChaosToSpells"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", + }, + }, + ["3186_PoisonDamageAndDuration"] = { ["Ring"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", - ["type"] = "explicit", - }, - }, - ["3181_PoisonDamageAndLocalChanceOnHit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", - ["type"] = "explicit", - }, - }, - ["3181_PoisonDamageForJewel"] = { + ["max"] = 22, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", + }, + }, + ["3186_PoisonDamageAndLocalChanceOnHit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", + }, + }, + ["3186_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", - }, - }, - ["3181_PoisonDamageSupported"] = { - ["Gloves"] = { - ["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"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", + }, + }, + ["3186_PoisonDamageSupported"] = { + ["Gloves"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", + }, + }, + ["3186_PoisonDamageWeaponSupported"] = { + ["1HWeapon"] = { + ["max"] = 26, + ["min"] = 19, + }, ["Dagger"] = { - ["max"] = 26, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", - ["type"] = "explicit", - }, - }, - ["3181_PoisonOnHitAndDamage"] = { + ["max"] = 26, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", + }, + }, + ["3186_PoisonOnHitAndDamage"] = { ["Quiver"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", - ["type"] = "explicit", - }, - }, - ["3186_MovementSpeedDuringFlaskEffect"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "explicit", + }, + }, + ["318_CriticalStrikeChanceSpellsSupported"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_66", + ["text"] = "Socketed Gems are Supported by Level # Increased Critical Strikes", + ["type"] = "explicit", + }, + }, + ["318_CriticalStrikeChanceSupported"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_66", + ["text"] = "Socketed Gems are Supported by Level # Increased Critical Strikes", + ["type"] = "explicit", + }, + }, + ["3191_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, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_935326447", + ["text"] = "Moving while Bleeding doesn't cause you to take extra Damage", + ["type"] = "explicit", + }, + }, + ["3197_NoExtraBleedDamageWhileMoving"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_935326447", + ["text"] = "Moving while Bleeding doesn't cause you to take extra Damage", + ["type"] = "explicit", + }, + }, + ["3197_NoExtraDamageFromBleedMoving"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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"] = 4, + ["min"] = 3, + }, + ["1HMace"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["1HSword"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["1HWeapon"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["2HAxe"] = { + ["max"] = 6, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 6, + ["min"] = 5, + }, + ["2HSword"] = { + ["max"] = 6, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 6, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 6, + ["min"] = 5, + }, + ["Claw"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["Dagger"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["Staff"] = { + ["max"] = 6, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3515686789", + ["text"] = "#% increased Damage per Endurance Charge", + ["type"] = "explicit", + }, + }, + ["319_SkillEffectDurationSupported"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_65", + ["text"] = "Socketed Gems are Supported by Level # More Duration", + ["type"] = "explicit", + }, + }, + ["3204_DamagePerEnduranceCharge"] = { + ["1HAxe"] = { + ["max"] = 6, + ["min"] = 5, + }, ["1HMace"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 5, + }, ["1HSword"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 5, + }, ["2HAxe"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 7, + }, ["2HMace"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 7, + }, ["2HSword"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 7, + }, ["2HWeapon"] = { - ["max"] = 17, - ["min"] = 5, - }, + ["max"] = 17, + ["min"] = 7, + }, ["Amulet"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["Bow"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 7, + }, ["Claw"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 17, - ["min"] = 5, - }, + ["max"] = 17, + ["min"] = 7, + }, ["Wand"] = { - ["max"] = 6, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3515686789", - ["text"] = "#% increased Damage per Endurance Charge", - ["type"] = "explicit", - }, - }, - ["319_LocalIncreasedPhysicalDamagePercentIronGrip"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_251446805", - ["text"] = "Socketed Gems are Supported by Level # Iron Grip", - ["type"] = "explicit", - }, - }, - ["3215_AttackSpeedWithFortify"] = { + ["max"] = 6, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3515686789", + ["text"] = "#% increased Damage per Endurance Charge", + ["type"] = "explicit", + }, + }, + ["3220_AttackSpeedWithFortify"] = { ["1HSword"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["2HSword"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["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"] = 25, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_122450405", + ["text"] = "#% increased Attack Speed while Fortified", + ["type"] = "explicit", + }, + }, + ["3221_ChanceToBlockIfDamagedRecently"] = { + ["2HWeapon"] = { + ["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", - }, - }, - ["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"] = 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", + }, + }, ["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", - }, - }, - ["3243_MovementVelocitySpeed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1177358866", - ["text"] = "#% increased Movement Speed if you haven't been Hit Recently", - ["type"] = "explicit", - }, - }, - ["326_LightningDamagePrefixLightningPenetration"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["Wand"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3354027870", - ["text"] = "Socketed Gems are Supported by Level # Lightning Penetration", - ["type"] = "explicit", - }, - }, - ["3272_IncreasedStunThreshold"] = { + ["max"] = 9, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1177358866", + ["text"] = "#% increased Movement Speed if you haven't been Hit Recently", + ["type"] = "explicit", + }, + }, + ["3228_MovementVelocityAndMovementVelocityIfNotHitRecently"] = { + ["Boots"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1177358866", + ["text"] = "#% increased Movement Speed if you haven't been Hit Recently", + ["type"] = "explicit", + }, + }, + ["3248_MovementVelocitySpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1177358866", + ["text"] = "#% increased Movement Speed if you haven't been Hit Recently", + ["type"] = "explicit", + }, + }, + ["324_LocalIncreasedPhysicalDamagePercentIronGrip"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_59", + ["text"] = "Socketed Gems are Supported by Level # Iron Grip", + ["type"] = "explicit", + }, + }, + ["326_SupportedByItemRarityUnique"] = { + ["Chest"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_57", + ["text"] = "Socketed Gems are Supported by Level # Item Rarity", + ["type"] = "explicit", + }, + }, + ["3277_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"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "explicit", + }, + }, + ["3282_WarcrySpeed"] = { + ["Amulet"] = { + ["max"] = 35, + ["min"] = 21, + }, ["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"] = 4, + ["min"] = 3, + }, + ["1HMace"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["1HSword"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["1HWeapon"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["2HAxe"] = { + ["max"] = 6, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 6, + ["min"] = 5, + }, + ["2HSword"] = { + ["max"] = 6, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 6, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 6, + ["min"] = 5, + }, + ["Claw"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["Dagger"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["Staff"] = { + ["max"] = 6, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_902747843", + ["text"] = "#% increased Damage per Frenzy Charge", + ["type"] = "explicit", + }, + }, + ["3291_DamagePerFrenzyCharge"] = { + ["1HAxe"] = { + ["max"] = 6, + ["min"] = 5, + }, ["1HMace"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 5, + }, ["1HSword"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 5, + }, ["2HAxe"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 7, + }, ["2HMace"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 7, + }, ["2HSword"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 7, + }, ["2HWeapon"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 7, + }, ["Amulet"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["Bow"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 7, + }, ["Claw"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 7, + }, ["Wand"] = { - ["max"] = 6, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_902747843", - ["text"] = "#% increased Damage per Frenzy Charge", - ["type"] = "explicit", - }, - }, - ["3288_ArcaneSurgeEffect"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3015437071", - ["text"] = "#% increased Effect of Arcane Surge on you", - ["type"] = "explicit", - }, - }, - ["3290_OnslaughtEffect"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3151397056", - ["text"] = "#% increased Effect of Onslaught on you", - ["type"] = "explicit", - }, - }, - ["3292_CriticalStrikeChanceAgainstPoisonedEnemies"] = { - ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 80, - }, + ["max"] = 6, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_902747843", + ["text"] = "#% increased Damage per Frenzy Charge", + ["type"] = "explicit", + }, + }, + ["3293_ArcaneSurgeEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3015437071", + ["text"] = "#% increased Effect of Arcane Surge on you", + ["type"] = "explicit", + }, + }, + ["3295_OnslaughtEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3151397056", + ["text"] = "#% increased Effect of Onslaught on you", + ["type"] = "explicit", + }, + }, + ["3297_CriticalStrikeChanceAgainstPoisonedEnemies"] = { + ["1HWeapon"] = { + ["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", - }, - }, - ["3293_ElementalDamageOfYouAndMinionsCannotBeReflectedPercentMaven"] = { + ["max"] = 100, + ["min"] = 80, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1345659139", + ["text"] = "#% increased Critical Strike Chance against Poisoned Enemies", + ["type"] = "explicit", + }, + }, + ["3298_ElementalDamageOfYouAndMinionsCannotBeReflectedPercentMaven"] = { ["Chest"] = { - ["max"] = -3, - ["min"] = -5, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2734809852", - ["text"] = "#% increased Elemental Damage taken", - ["type"] = "explicit", - }, - }, - ["3293_ReducedElementalReflectTakenMaven"] = { + ["max"] = -3, + ["min"] = -5, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2734809852", + ["text"] = "#% increased Elemental Damage taken", + ["type"] = "explicit", + }, + }, + ["3298_ReducedElementalReflectTakenMaven"] = { ["Chest"] = { - ["max"] = -3, - ["min"] = -5, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2734809852", - ["text"] = "#% increased Elemental Damage taken", - ["type"] = "explicit", - }, - }, - ["3300_AttackSpeedDuringFlaskEffect"] = { + ["max"] = -3, + ["min"] = -5, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2734809852", + ["text"] = "#% increased Elemental Damage taken", + ["type"] = "explicit", + }, + }, + ["3305_AttackSpeedDuringFlaskEffect"] = { ["Belt"] = { - ["max"] = 14, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1365052901", - ["text"] = "#% increased Attack Speed during any Flask Effect", - ["type"] = "explicit", - }, - }, - ["3301_ChaosResistanceWhileUsingFlask"] = { + ["max"] = 14, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1365052901", + ["text"] = "#% increased Attack Speed during any Flask Effect", + ["type"] = "explicit", + }, + }, + ["3306_ChaosResistanceWhileUsingFlask"] = { ["Belt"] = { - ["max"] = 50, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_392168009", - ["text"] = "+#% to Chaos Resistance during any Flask Effect", - ["type"] = "explicit", - }, - }, - ["3304_EnemiesExplodeOnDeathPhysicalChance"] = { + ["max"] = 50, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_392168009", + ["text"] = "+#% to Chaos Resistance during any Flask Effect", + ["type"] = "explicit", + }, + }, + ["3309_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", - }, - }, - ["3304_EnemiesExplodeOnDeathPhysicalChanceMaven"] = { + ["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", + }, + }, + ["3309_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", - }, - }, - ["3305_ObliterationExplodeOnKillChaos"] = { - ["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", - }, - }, - ["331_ChanceToMaimSupported"] = { - ["1HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["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", + }, + }, + ["3310_ObliterationExplodeOnKillChaos"] = { + ["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", + }, + }, + ["331_LightningDamagePrefixLightningPenetration"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["1HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["Claw"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3826977109", - ["text"] = "Socketed Gems are Supported by Level # Maim", - ["type"] = "explicit", - }, - }, - ["331_SupportedByMaim"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3826977109", - ["text"] = "Socketed Gems are Supported by Level # Maim", - ["type"] = "explicit", - }, - }, - ["3329_WarcryCooldownSpeed"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_51", + ["text"] = "Socketed Gems are Supported by Level # Lightning Penetration", + ["type"] = "explicit", + }, + }, + ["3334_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", - }, - }, - ["3335_IncreasedOneHandedMeleeDamageForJewel"] = { + ["max"] = 45, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4159248054", + ["text"] = "#% increased Warcry Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["3340_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", - }, - }, - ["3336_IncreasedTwoHandedMeleeDamageForJewel"] = { + ["max"] = 14, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1010549321", + ["text"] = "#% increased Damage with One Handed Weapons", + ["type"] = "explicit", + }, + }, + ["3341_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", - }, - }, - ["3356_AngerAuraEffect"] = { + ["max"] = 14, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1836374041", + ["text"] = "#% increased Damage with Two Handed Weapons", + ["type"] = "explicit", + }, + }, + ["3361_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", - }, - }, - ["3361_WrathAuraEffect"] = { + ["max"] = 40, + ["min"] = 28, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1592278124", + ["text"] = "Anger 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", + }, + }, + ["3366_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", - }, - }, - ["3362_BannerEffect"] = { - ["Chest"] = { - ["max"] = 20, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2729804981", - ["text"] = "Banner Skills have #% increased Aura Effect", - ["type"] = "explicit", - }, - }, - ["3366_HatredAuraEffect"] = { + ["max"] = 40, + ["min"] = 28, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2181791238", + ["text"] = "Wrath has #% increased Aura Effect", + ["type"] = "explicit", + }, + }, + ["3367_BannerEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2729804981", + ["text"] = "Banner Skills have #% increased Aura Effect", + ["type"] = "explicit", + }, + }, + ["336_ChanceToMaimSupported"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_50", + ["text"] = "Socketed Gems are Supported by Level # Maim", + ["type"] = "explicit", + }, + }, + ["336_SupportedByMaim"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_50", + ["text"] = "Socketed Gems are Supported by Level # Maim", + ["type"] = "explicit", + }, + }, + ["3371_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", - }, - }, - ["3369_CannotBePoisoned"] = { + ["max"] = 40, + ["min"] = 28, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3742945352", + ["text"] = "Hatred has #% increased Aura Effect", + ["type"] = "explicit", + }, + }, + ["3374_CannotBePoisoned"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3835551335", - ["text"] = "Cannot be Poisoned", - ["type"] = "explicit", - }, - }, - ["3371_PhysicalDamageAvoidance"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3835551335", + ["text"] = "Cannot be Poisoned", + ["type"] = "explicit", + }, + }, + ["3376_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", - }, - }, - ["3373_FireDamageAvoidance"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2415497478", + ["text"] = "#% chance to Avoid Physical Damage from Hits", + ["type"] = "explicit", + }, + }, + ["3378_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", - }, - }, - ["3373_FireDamageAvoidanceMaven"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_42242677", + ["text"] = "#% chance to Avoid Fire Damage from Hits", + ["type"] = "explicit", + }, + }, + ["3378_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", - }, - }, - ["3374_ColdDamageAvoidance"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_42242677", + ["text"] = "#% chance to Avoid Fire Damage from Hits", + ["type"] = "explicit", + }, + }, + ["3379_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", - }, - }, - ["3374_ColdDamageAvoidanceMaven"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3743375737", + ["text"] = "#% chance to Avoid Cold Damage from Hits", + ["type"] = "explicit", + }, + }, + ["3379_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", - }, - }, - ["3375_LightningDamageAvoidance"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3743375737", + ["text"] = "#% chance to Avoid Cold Damage from Hits", + ["type"] = "explicit", + }, + }, + ["3380_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", - }, - }, - ["3375_LightningDamageAvoidanceMaven"] = { + ["max"] = 10, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2889664727", + ["text"] = "#% chance to Avoid Lightning Damage from Hits", + ["type"] = "explicit", + }, + }, + ["3380_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", - }, - }, - ["3377_UnholyMightOnKillPercentChance"] = { - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2889664727", + ["text"] = "#% chance to Avoid Lightning Damage from Hits", + ["type"] = "explicit", + }, + }, + ["3382_UnholyMightOnKillPercentChance"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["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", - }, - }, - ["3380_OnslaugtOnKillPercentChance"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3562211447", + ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", + ["type"] = "explicit", + }, + }, + ["3385_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", - }, - }, - ["3388_LightningDamageTaken"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1276918229", - ["text"] = "#% reduced Lightning Damage taken", - ["type"] = "explicit", - }, - }, - ["3389_ColdDamageTakenPercentage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3303114033", - ["text"] = "#% reduced Cold Damage taken", - ["type"] = "explicit", - }, - }, - ["3391_FlaskChargeOnCrit"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2453026567", + ["text"] = "#% chance to gain Onslaught for 10 seconds on Kill", + ["type"] = "explicit", + }, + }, + ["3393_LightningDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1276918229", + ["text"] = "#% reduced Lightning Damage taken", + ["type"] = "explicit", + }, + }, + ["3394_ColdDamageTakenPercentage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3303114033", + ["text"] = "#% reduced Cold Damage taken", + ["type"] = "explicit", + }, + }, + ["3396_FlaskChargeOnCrit"] = { ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1546046884", - ["text"] = "Gain a Flask Charge when you deal a Critical Strike", - ["type"] = "explicit", - }, - }, - ["3396_NearbyEnemiesAreBlinded"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1546046884", + ["text"] = "Gain a Flask Charge when you deal a Critical Strike", + ["type"] = "explicit", + }, + }, + ["3401_NearbyEnemiesAreBlinded"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2826979740", - ["text"] = "Nearby Enemies are Blinded", - ["type"] = "explicit", - }, - }, - ["3396_NearbyEnemiesAreBlindedMaven"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2826979740", + ["text"] = "Nearby Enemies are Blinded", + ["type"] = "explicit", + }, + }, + ["3401_NearbyEnemiesAreBlindedMaven"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2826979740", - ["text"] = "Nearby Enemies are Blinded", - ["type"] = "explicit", - }, - }, - ["3406_CriticalChanceAgainstBlindedEnemies"] = { - ["1HWeapon"] = { - ["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", - }, - }, - ["341_IncreasedCastSpeedSpellEcho"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2826979740", + ["text"] = "Nearby Enemies are Blinded", + ["type"] = "explicit", + }, + }, + ["3411_CriticalChanceAgainstBlindedEnemies"] = { ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["Dagger"] = { - ["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", - }, - }, - ["3431_MinionAttacksTauntOnHitChance"] = { + ["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", + }, + }, + ["3436_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", - }, - }, - ["3433_CriticalStrikeMultiplierAgainstEnemiesOnFullLife"] = { - ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 41, - }, + ["max"] = 8, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2911442053", + ["text"] = "Minions have #% chance to Taunt on Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["3438_CriticalStrikeMultiplierAgainstEnemiesOnFullLife"] = { + ["1HWeapon"] = { + ["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", - }, - }, - ["344_LocalIncreasedAttackSpeedOnslaught"] = { - ["1HWeapon"] = { - ["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", - }, - }, - ["344_LocalPhysicalDamagePercentOnslaught"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3237923082", - ["text"] = "Socketed Gems are Supported by Level # Momentum", - ["type"] = "explicit", - }, - }, - ["344_SupportedByOnslaughtWeapon"] = { - ["2HAxe"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["2HSword"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["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", - }, - }, - ["3458_IncreasedDamageFromAuras"] = { + ["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", + }, + }, + ["3463_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", + }, + }, + ["3466_TrapCooldownRecoveryAndDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3417757416", + ["text"] = "#% increased Cooldown Recovery Rate for throwing Traps", + ["type"] = "explicit", + }, + }, + ["346_IncreasedCastSpeedSpellEcho"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 18, + }, ["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", - }, - }, - ["3461_TrapCooldownRecoveryAndDuration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3417757416", - ["text"] = "#% increased Cooldown Recovery Rate for throwing Traps", - ["type"] = "explicit", - }, - }, - ["3465_ChancetoGainPhasingOnKill"] = { - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_42", + ["text"] = "Socketed Gems are Supported by Level # Spell Echo", + ["type"] = "explicit", + }, + }, + ["3470_ChancetoGainPhasingOnKill"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["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", - }, - }, - ["3474_ChanceToLoseManaOnSkillUse"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2858930612", - ["text"] = "#% chance to lose 10% of Mana when you use a Skill", - ["type"] = "explicit", - }, - }, - ["3475_ChanceToRecoverManaOnSkillUse"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2918708827", + ["text"] = "#% chance to gain Phasing for 4 seconds on Kill", + ["type"] = "explicit", + }, + }, + ["3479_ChanceToLoseManaOnSkillUse"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2858930612", + ["text"] = "#% chance to lose 10% of Mana when you use a Skill", + ["type"] = "explicit", + }, + }, + ["3480_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", - }, - }, - ["3479_TrapAreaOfEffect"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4050593908", - ["text"] = "Skills used by Traps have #% increased Area of Effect", - ["type"] = "explicit", - }, - }, - ["350_SupportedByVolleySpeed"] = { - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["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", + }, + }, + ["3484_TrapAreaOfEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4050593908", + ["text"] = "Skills used by Traps have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["349_LocalIncreasedAttackSpeedOnslaught"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, ["Wand"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2696557965", - ["text"] = "Socketed Gems are Supported by Level # Volley", - ["type"] = "explicit", - }, - }, - ["351_LocalIncreasedPhysicalDamagePercentProjectileAttackDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2513293614", - ["text"] = "Socketed Gems are Supported by Level # Vicious Projectiles", - ["type"] = "explicit", - }, - }, - ["3549_AdditionalMinesPlacedSupported"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_37", + ["text"] = "Socketed Gems are Supported by Level # Momentum", + ["type"] = "explicit", + }, + }, + ["349_LocalPhysicalDamagePercentOnslaught"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_37", + ["text"] = "Socketed Gems are Supported by Level # Momentum", + ["type"] = "explicit", + }, + }, + ["349_SupportedByOnslaughtWeapon"] = { + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_37", + ["text"] = "Socketed Gems are Supported by Level # Momentum", + ["type"] = "explicit", + }, + }, + ["3554_AdditionalMinesPlacedSupported"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2395088636", - ["text"] = "Throw an additional Mine", - ["type"] = "explicit", - }, - }, - ["3559_ElementalDamagePercentMaven"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2395088636", + ["text"] = "Throw an additional Mine", + ["type"] = "explicit", + }, + }, + ["355_SupportedByVolleySpeed"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_36", + ["text"] = "Socketed Gems are Supported by Level # Volley", + ["type"] = "explicit", + }, + }, + ["3564_ElementalDamagePercentMaven"] = { ["Helmet"] = { - ["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, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2228279620", - ["text"] = "Socketed Gems are Supported by Level # Critical Strike Affliction", - ["type"] = "explicit", - }, - }, - ["3564_ChanceForDoubleStunDuration"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_697807915", + ["text"] = "Damage Penetrates #% of Enemy Elemental Resistances", + ["type"] = "explicit", + }, + }, + ["3569_ChanceForDoubleStunDuration"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 15, + ["min"] = 7, + }, ["2HMace"] = { - ["max"] = 25, - ["min"] = 7, - }, - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 7, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2622251413", - ["text"] = "#% chance to double Stun Duration", - ["type"] = "explicit", - }, - }, - ["3566_AuraEffect"] = { + ["max"] = 25, + ["min"] = 7, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2622251413", + ["text"] = "#% chance to double Stun Duration", + ["type"] = "explicit", + }, + }, + ["356_LocalIncreasedPhysicalDamagePercentProjectileAttackDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_35", + ["text"] = "Socketed Gems are Supported by Level # Vicious Projectiles", + ["type"] = "explicit", + }, + }, + ["3571_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", - }, - }, - ["3567_AuraEffectOnEnemies"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1636209393", - ["text"] = "#% increased Effect of Non-Curse Auras from your Skills on Enemies", - ["type"] = "explicit", - }, - }, - ["356_LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["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", - }, - }, - ["356_WeaponSpellDamagePowerChargeOnCrit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4015918489", - ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical Strike", - ["type"] = "explicit", - }, - }, - ["3612_PowerFrenzyOrEnduranceChargeOnKill"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1880071428", + ["text"] = "#% increased effect of Non-Curse Auras from your Skills", + ["type"] = "explicit", + }, + }, + ["3572_AuraEffectOnEnemies"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1636209393", + ["text"] = "#% increased Effect of Non-Curse Auras from your Skills on Enemies", + ["type"] = "explicit", + }, + }, + ["360_PoisonDurationWeaponSupported"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_31", + ["text"] = "Socketed Gems are Supported by Level # Critical Strike Affliction", + ["type"] = "explicit", + }, + }, + ["3617_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", - }, - }, - ["362_TotemDamageAttackSupported"] = { + ["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", + }, + }, + ["361_LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4015918489", + ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical Strike", + ["type"] = "explicit", + }, + }, + ["361_SupportedByPowerChargeOnCritWeapon"] = { + ["2HWeapon"] = { + ["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", + }, + }, + ["361_WeaponSpellDamagePowerChargeOnCrit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4015918489", + ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical Strike", + ["type"] = "explicit", + }, + }, + ["367_TotemDamageAttackSupported"] = { ["Boots"] = { - ["max"] = 25, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3030692053", - ["text"] = "Socketed Gems are Supported by Level # Ballista Totem", - ["type"] = "explicit", - }, - }, - ["362_TotemSpeedAttackSupported"] = { + ["max"] = 25, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_27", + ["text"] = "Socketed Gems are Supported by Level # Ballista Totem", + ["type"] = "explicit", + }, + }, + ["367_TotemSpeedAttackSupported"] = { ["Boots"] = { - ["max"] = 25, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3030692053", - ["text"] = "Socketed Gems are Supported by Level # Ballista Totem", - ["type"] = "explicit", - }, - }, - ["365_SupportedByLessDuration"] = { + ["max"] = 25, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_27", + ["text"] = "Socketed Gems are Supported by Level # Ballista Totem", + ["type"] = "explicit", + }, + }, + ["370_SupportedByLessDuration"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2487643588", - ["text"] = "Socketed Gems are Supported by Level # Less Duration", - ["type"] = "explicit", - }, - }, - ["370_LocalPhysicalDamagePercentRuthless"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_25", + ["text"] = "Socketed Gems are Supported by Level # Less Duration", + ["type"] = "explicit", + }, + }, + ["3755_MinionDamageAlsoAffectsYou"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1631928082", + ["text"] = "Increases and Reductions to Minion Damage also affect you", + ["type"] = "explicit", + }, + }, + ["3757_MinionAttackSpeedAlsoAffectsYou"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2293111154", + ["text"] = "Increases and Reductions to Minion Attack Speed also affect you", + ["type"] = "explicit", + }, + }, + ["3758_MinionCastSpeedAlsoAffectsYou"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2284852387", + ["text"] = "Increases and Reductions to Minion Cast Speed also affect you", + ["type"] = "explicit", + }, + }, + ["375_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", - }, - }, - ["3750_MinionDamageAlsoAffectsYou"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["3753_MinionCastSpeedAlsoAffectsYou"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2284852387", - ["text"] = "Increases and Reductions to Minion Cast Speed also affect you", - ["type"] = "explicit", - }, - }, + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_21", + ["text"] = "Socketed Gems are Supported by Level # Ruthless", + ["type"] = "explicit", + }, + }, ["3761_LocalAttackReduceEnemyElementalResistance"] = { ["1HAxe"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 13, + ["min"] = 6, + }, + ["1HMace"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["1HSword"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["1HWeapon"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["2HAxe"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["2HMace"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["2HSword"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["Bow"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["Claw"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["Dagger"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["Staff"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4064396395", + ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", + ["type"] = "explicit", + }, + }, + ["3766_LocalAttackReduceEnemyElementalResistance"] = { + ["1HAxe"] = { + ["max"] = 16, + ["min"] = 9, + }, ["1HMace"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 9, + }, ["1HSword"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 9, + }, ["1HWeapon"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 9, + }, ["2HAxe"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 9, + }, ["2HMace"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 9, + }, ["2HSword"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 9, + }, ["2HWeapon"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 9, + }, ["Bow"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 9, + }, ["Claw"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 9, + }, ["Dagger"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 9, + }, ["Staff"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 16, + ["min"] = 9, + }, ["Wand"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4064396395", - ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", - ["type"] = "explicit", - }, - }, - ["3761_LocalElementalPenetration"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4064396395", + ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", + ["type"] = "explicit", + }, + }, + ["3766_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", - }, - }, - ["3762_LocalFireDamageAndPen"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3398283493", - ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", - ["type"] = "explicit", - }, - }, - ["3762_LocalFireDamagePenetrationHybrid"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4064396395", + ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", + ["type"] = "explicit", + }, + }, + ["3767_LocalFireDamageAndPen"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3398283493", + ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", + ["type"] = "explicit", + }, + }, + ["3767_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", - }, - }, - ["3762_LocalFireDamageTwoHandAndPen"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3398283493", - ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", - ["type"] = "explicit", - }, - }, - ["3762_LocalFirePenetration"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3398283493", + ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", + ["type"] = "explicit", + }, + }, + ["3767_LocalFireDamageTwoHandAndPen"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3398283493", + ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", + ["type"] = "explicit", + }, + }, + ["3767_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", - }, - }, - ["3763_LocalColdDamageAndPen"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1740229525", - ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", - ["type"] = "explicit", - }, - }, - ["3763_LocalColdDamagePenetrationHybrid"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3398283493", + ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", + ["type"] = "explicit", + }, + }, + ["3768_LocalColdDamageAndPen"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1740229525", + ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", + ["type"] = "explicit", + }, + }, + ["3768_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", - }, - }, - ["3763_LocalColdDamageTwoHandAndPen"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1740229525", - ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", - ["type"] = "explicit", - }, - }, - ["3763_LocalColdPenetration"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1740229525", + ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", + ["type"] = "explicit", + }, + }, + ["3768_LocalColdDamageTwoHandAndPen"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1740229525", + ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", + ["type"] = "explicit", + }, + }, + ["3768_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", - }, - }, - ["3764_LocalLightningDamageAndPen"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2387539034", - ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", - ["type"] = "explicit", - }, - }, - ["3764_LocalLightningDamagePenetrationHybrid"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1740229525", + ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", + ["type"] = "explicit", + }, + }, + ["3769_LocalLightningDamageAndPen"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2387539034", + ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", + ["type"] = "explicit", + }, + }, + ["3769_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", - }, - }, - ["3764_LocalLightningDamageTwoHandAndPen"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2387539034", - ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", - ["type"] = "explicit", - }, - }, - ["3764_LocalLightningPenetration"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2387539034", + ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", + ["type"] = "explicit", + }, + }, + ["3769_LocalLightningDamageTwoHandAndPen"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2387539034", + ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", + ["type"] = "explicit", + }, + }, + ["3769_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", - }, - }, - ["3769_MinionAddedChaosDamage"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2387539034", + ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", + ["type"] = "explicit", + }, + }, + ["3774_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", - }, - }, - ["3770_MinionAddedColdDamage"] = { + ["max"] = 32.5, + ["min"] = 3.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2889601781", + ["text"] = "Minions deal # to # additional Chaos Damage", + ["type"] = "explicit", + }, + }, + ["3775_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", - }, - }, - ["3771_MinionAddedFireDamage"] = { + ["max"] = 43, + ["min"] = 5.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3152982863", + ["text"] = "Minions deal # to # additional Cold Damage", + ["type"] = "explicit", + }, + }, + ["3776_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", - }, - }, - ["3772_MinionAddedLightningDamage"] = { + ["max"] = 43, + ["min"] = 5.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3351784991", + ["text"] = "Minions deal # to # additional Fire Damage", + ["type"] = "explicit", + }, + }, + ["3777_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", - }, - }, - ["3773_MinionAddedPhysicalDamage"] = { + ["max"] = 41.5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2930653471", + ["text"] = "Minions deal # to # additional Lightning Damage", + ["type"] = "explicit", + }, + }, + ["3778_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", - }, - }, - ["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", - }, - }, - ["3786_RegenerateLifeOver1Second"] = { + ["max"] = 32.5, + ["min"] = 3.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1172029298", + ["text"] = "Minions deal # to # additional Physical Damage", + ["type"] = "explicit", + }, + }, + ["3791_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", - }, - }, - ["379_SupportedBySpellCascadeArea"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1242155304", + ["text"] = "Every 4 seconds, Regenerate #% of Life over one second", + ["type"] = "explicit", + }, + }, + ["382_ProjectileDamageSupported"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_18", + ["text"] = "Socketed Gems are Supported by Level # Slower Projectiles", + ["type"] = "explicit", + }, + }, + ["384_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", - }, - }, - ["382_SupportedBySpiritStrikeArea"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_17", + ["text"] = "Socketed Gems are Supported by Level # Spell Cascade", + ["type"] = "explicit", + }, + }, + ["387_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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["393_ChanceToFreezeShockIgniteUnboundAilments"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_14", + ["text"] = "Socketed Gems are Supported by Level # Ancestral Call", + ["type"] = "explicit", + }, + }, + ["395_TrapDamageCooldownSupported"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_6", + ["text"] = "Socketed Gems are Supported by Level # Advanced Traps", + ["type"] = "explicit", + }, + }, + ["395_TrapSpeedCooldownSupported"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_6", + ["text"] = "Socketed Gems are Supported by Level # Advanced Traps", + ["type"] = "explicit", + }, + }, + ["398_ChanceToFreezeShockIgniteUnboundAilments"] = { ["1HMace"] = { - ["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, + }, + ["1HWeapon"] = { + ["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", - }, - }, - ["4063_OfferingEffect"] = { + ["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", + }, + }, + ["4068_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", - }, - }, - ["409_SocketedTriggeredSkillsDoubleDamage"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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"] = 28, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2947215268", + ["text"] = "#% increased Damage during any Flask Effect", + ["type"] = "explicit", + }, + }, + ["4087_DamageDuringFlaskEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2947215268", + ["text"] = "#% increased Damage during any Flask Effect", + ["type"] = "explicit", + }, + }, + ["414_SocketedTriggeredSkillsDoubleDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4021083819", + ["text"] = "Socketed Triggered Skills deal Double Damage", + ["type"] = "explicit", + }, + }, ["4216_ChanceToAvoidBleeding"] = { + ["Boots"] = { + ["max"] = 60, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", + ["type"] = "explicit", + }, + }, + ["4221_AvoidBleedAndPoison"] = { + ["Boots"] = { + ["max"] = 70, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", + ["type"] = "explicit", + }, + }, + ["4221_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"] = 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_1618589784", - ["text"] = "#% chance to Avoid Bleeding", - ["type"] = "explicit", - }, - }, - ["4216_MovementVelocityDodge"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1618589784", - ["text"] = "#% chance to Avoid Bleeding", - ["type"] = "explicit", - }, - }, - ["4219_AreaOfEffectIfKilledRecently"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", + ["type"] = "explicit", + }, + }, + ["4221_MovementVelocityDodge"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", + ["type"] = "explicit", + }, + }, + ["4224_AreaOfEffectIfKilledRecently"] = { ["1HMace"] = { - ["max"] = 25, - ["min"] = 17, - }, + ["max"] = 25, + ["min"] = 17, + }, ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 17, - }, + ["max"] = 25, + ["min"] = 17, + }, ["2HMace"] = { - ["max"] = 35, - ["min"] = 17, - }, - ["2HWeapon"] = { - ["max"] = 35, - ["min"] = 17, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3481736410", - ["text"] = "#% increased Area of Effect if you've Killed Recently", - ["type"] = "explicit", - }, - }, - ["4230_FlaskChanceToNotConsumeCharges"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_311641062", - ["text"] = "#% chance for Flasks you use to not consume Charges", - ["type"] = "explicit", - }, - }, - ["4239_MaximumEnduranceChargesMaven"] = { + ["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", + }, + }, + ["4235_FlaskChanceToNotConsumeCharges"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_311641062", + ["text"] = "#% chance for Flasks you use to not consume Charges", + ["type"] = "explicit", + }, + }, + ["4244_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", - }, - }, - ["4253_DamageIfConsumedCorpse"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2118708619", - ["text"] = "#% increased Damage if you have Consumed a corpse Recently", - ["type"] = "explicit", - }, - }, - ["4261_MovementSpeedIfEnemySlainRecently"] = { + ["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", + }, + }, + ["4258_DamageIfConsumedCorpse"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2118708619", + ["text"] = "#% increased Damage if you have Consumed a corpse Recently", + ["type"] = "explicit", + }, + }, + ["4266_ArmourAndEvasionRating"] = { + ["Belt"] = { + ["max"] = 285, + ["min"] = 105, + }, + ["Quiver"] = { + ["max"] = 285, + ["min"] = 105, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2316658489", + ["text"] = "+# to Armour and Evasion Rating", + ["type"] = "explicit", + }, + }, + ["4266_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", - }, - }, - ["4264_DualWieldingCritMultiplierForJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_279227559", + ["text"] = "#% increased Movement Speed if you've Killed Recently", + ["type"] = "explicit", + }, + }, + ["4269_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", - }, - }, - ["4266_ArmourAndEvasionRating"] = { + ["max"] = 18, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2546185479", + ["text"] = "+#% to Critical Strike Multiplier while Dual Wielding", + ["type"] = "explicit", + }, + }, + ["4271_ArmourAndEvasionRating"] = { ["Belt"] = { - ["max"] = 400, - ["min"] = 105, - }, + ["max"] = 400, + ["min"] = 365, + }, ["Quiver"] = { - ["max"] = 400, - ["min"] = 105, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2316658489", - ["text"] = "+# to Armour and Evasion Rating", - ["type"] = "explicit", - }, - }, - ["4267_ElementalPenetrationDuringFlaskEffect"] = { + ["max"] = 400, + ["min"] = 365, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2316658489", + ["text"] = "+# to Armour and Evasion Rating", + ["type"] = "explicit", + }, + }, + ["4272_ElementalPenetrationDuringFlaskEffect"] = { ["Belt"] = { - ["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"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2693266036", - ["text"] = "#% additional Physical Damage Reduction during any Flask Effect", - ["type"] = "explicit", - }, - }, - ["4270_PowerChargeOnBlock"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3392890360", + ["text"] = "Damage Penetrates #% Elemental Resistances during any Flask Effect", + ["type"] = "explicit", + }, + }, + ["4273_AdditionalPhysicalDamageReductionDuringFlaskEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2693266036", + ["text"] = "#% additional Physical Damage Reduction during any Flask Effect", + ["type"] = "explicit", + }, + }, + ["4275_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", - }, - }, - ["4270_PowerChargeOnBlockUber"] = { - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 25, - }, + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3945147290", + ["text"] = "#% chance to gain a Power Charge when you Block", + ["type"] = "explicit", + }, + }, + ["4275_PowerChargeOnBlockUber"] = { + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 25, + }, ["Staff"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3945147290", - ["text"] = "#% chance to gain a Power Charge when you Block", - ["type"] = "explicit", - }, - }, - ["4271_NearbyEnemiesChilledOnBlock"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3945147290", + ["text"] = "#% chance to gain a Power Charge when you Block", + ["type"] = "explicit", + }, + }, + ["4276_NearbyEnemiesChilledOnBlock"] = { ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_583277599", - ["text"] = "Chill Nearby Enemies when you Block", - ["type"] = "explicit", - }, - }, - ["4272_SelfColdDamageTakenPerFrenzy"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_178386603", - ["text"] = "Adds # to # Cold Damage to Hits against you per Frenzy Charge", - ["type"] = "explicit", - }, - }, - ["4273_AddedColdDamagePerFrenzyCharge"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_583277599", + ["text"] = "Chill Nearby Enemies when you Block", + ["type"] = "explicit", + }, + }, + ["4277_SelfColdDamageTakenPerFrenzy"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_178386603", + ["text"] = "Adds # to # Cold Damage to Hits against you per Frenzy Charge", + ["type"] = "explicit", + }, + }, + ["4278_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", - }, - }, - ["4275_AddedFireDamageIfBlockedRecently"] = { + ["max"] = 5.5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3648858570", + ["text"] = "# to # Added Cold Damage per Frenzy Charge", + ["type"] = "explicit", + }, + }, + ["4280_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", - }, - }, - ["4281_ElusiveOnCriticalStrike"] = { + ["max"] = 80, + ["min"] = 80, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3623716321", + ["text"] = "Adds # to # Fire Damage if you've Blocked Recently", + ["type"] = "explicit", + }, + }, + ["4286_ElusiveOnCriticalStrike"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2896192589", - ["text"] = "#% chance to gain Elusive on Critical Strike", - ["type"] = "explicit", - }, - }, - ["4281_ElusiveOnCriticalStrikeMaven"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2896192589", + ["text"] = "#% chance to gain Elusive on Critical Strike", + ["type"] = "explicit", + }, + }, + ["4286_ElusiveOnCriticalStrikeMaven"] = { ["Boots"] = { - ["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"] = 20, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2896192589", + ["text"] = "#% chance to gain Elusive on Critical Strike", + ["type"] = "explicit", + }, + }, + ["4313_IncreaseProjectileAttackDamagePerAccuracy"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4157767905", - ["text"] = "#% increased Projectile Attack Damage per 200 Accuracy Rating", - ["type"] = "explicit", - }, - }, - ["4312_ElementalDamageTakenWhileStationary"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4157767905", + ["text"] = "#% increased Projectile Attack Damage per 200 Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["4317_ElementalDamageTakenWhileStationary"] = { ["Boots"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3859593448", - ["text"] = "#% reduced Elemental Damage Taken while stationary", - ["type"] = "explicit", - }, - }, - ["4313_PhysicalDamageReductionWhileNotMoving"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2181129193", - ["text"] = "#% additional Physical Damage Reduction while stationary", - ["type"] = "explicit", - }, - }, - ["4316_ManaRegenerationMaven"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3859593448", + ["text"] = "#% reduced Elemental Damage Taken while stationary", + ["type"] = "explicit", + }, + }, + ["4318_PhysicalDamageReductionWhileNotMoving"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2181129193", + ["text"] = "#% additional Physical Damage Reduction while stationary", + ["type"] = "explicit", + }, + }, + ["4321_ManaRegenerationMaven"] = { ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3308030688", - ["text"] = "#% increased Mana Regeneration Rate while stationary", - ["type"] = "explicit", - }, - }, - ["4499_GainArmourIfBlockedRecently"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3308030688", + ["text"] = "#% increased Mana Regeneration Rate while stationary", + ["type"] = "explicit", + }, + }, + ["4504_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", - }, - }, - ["4520_AccuracyIfNoEnemySlainRecently"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2806435316", - ["text"] = "#% increased Accuracy Rating if you haven't Killed Recently", - ["type"] = "explicit", - }, - }, - ["4530_FrenzyChargeWhenHit"] = { + ["max"] = 800, + ["min"] = 500, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4091848539", + ["text"] = "+# Armour if you've Blocked Recently", + ["type"] = "explicit", + }, + }, + ["4525_AccuracyIfNoEnemySlainRecently"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2806435316", + ["text"] = "#% increased Accuracy Rating if you haven't Killed Recently", + ["type"] = "explicit", + }, + }, + ["4535_FrenzyChargeWhenHit"] = { ["Chest"] = { - ["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", - }, - }, - ["4542_AdditionalBlockChancePerEnduranceChargeUber"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_881914531", + ["text"] = "#% chance to gain a Frenzy Charge when Hit", + ["type"] = "explicit", + }, + }, + ["4547_AdditionalBlockChancePerEnduranceChargeUber"] = { ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3039589351", - ["text"] = "+#% Chance to Block Attack Damage per Endurance Charge", - ["type"] = "explicit", - }, - }, - ["4546_AdditionalBlockWith5NearbyEnemies"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2355741828", + ["text"] = "+#% Chance to Block Attack Damage per Endurance Charge", + ["type"] = "explicit", + }, + }, + ["4551_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", - }, - }, - ["454_AdditionalTrapsThrownSupported"] = { - ["Gloves"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1122134690", - ["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", - }, - }, - ["4551_AddCritPerExert"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3528761893", - ["text"] = "Skills have +#% to Critical Strike Chance for each Warcry Exerting them", - ["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", + }, + }, + ["4556_AddCritPerExert"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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"] = 12, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3753650187", + ["text"] = "#% additional Physical Damage Reduction while Focused", + ["type"] = "explicit", + }, + }, + ["4577_PhysicalDamageReductionDuringFocus"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 13, + }, ["Helmet"] = { - ["max"] = 15, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3753650187", - ["text"] = "#% additional Physical Damage Reduction while Focused", - ["type"] = "explicit", - }, - }, - ["4574_ReducedPhysicalDamageTakenIfNotHitRecently"] = { + ["max"] = 15, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3753650187", + ["text"] = "#% additional Physical Damage Reduction while Focused", + ["type"] = "explicit", + }, + }, + ["4579_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", - }, - }, - ["4578_ReducedPhysicalDamageTakenVsAbyssMonsters"] = { + ["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", + }, + }, + ["4583_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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["4584_AdditionalPhysicalDamageReductionWhileMoving"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_287491423", + ["text"] = "#% additional Physical Damage Reduction against Abyssal Monsters", + ["type"] = "explicit", + }, + }, + ["4589_AdditionalPhysicalDamageReductionWhileMoving"] = { ["Boots"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2713357573", - ["text"] = "#% additional Physical Damage Reduction while moving", - ["type"] = "explicit", - }, - }, - ["4603_MaximumManaIncreasePercentMaven"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2713357573", + ["text"] = "#% additional Physical Damage Reduction while moving", + ["type"] = "explicit", + }, + }, + ["458_AreaDamageSupported"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2571899044", - ["text"] = "Transfiguration of Mind", - ["type"] = "explicit", - }, - }, - ["4619_AilmentDoubleDamage"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_98", + ["text"] = "Socketed Gems are Supported by Level # Concentrated Effect", + ["type"] = "explicit", + }, + }, + ["459_AdditionalTrapsThrownSupported"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_8", + ["text"] = "Socketed Gems are Supported by Level # Trap", + ["type"] = "explicit", + }, + }, + ["459_TrapDamageSupported"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_8", + ["text"] = "Socketed Gems are Supported by Level # Trap", + ["type"] = "explicit", + }, + }, + ["4608_MaximumManaIncreasePercentMaven"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2571899044", + ["text"] = "Transfiguration of Mind", + ["type"] = "explicit", + }, + }, + ["4624_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", - }, - }, - ["462_LocalPhysicalDamagePercentAddedFireDamage"] = { + ["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_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", + }, + }, + ["462_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", + }, + }, + ["4639_GlobalSkillGemLevel"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4283407333", + ["text"] = "+# to Level of all Skill Gems", + ["type"] = "explicit", + }, + }, + ["4641_Allow2Offerings"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3639765866", + ["text"] = "You can have two Offerings of different types", + ["type"] = "explicit", + }, + }, + ["467_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", - }, - }, - ["4634_GlobalSkillGemLevel"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_126", + ["text"] = "Socketed Gems are Supported by Level # Added Fire Damage", + ["type"] = "explicit", + }, + }, + ["4691_AngerReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2549369799", + ["text"] = "Anger has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["4692_AngerReservationEfficiency"] = { ["Amulet"] = { - ["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", - }, - }, - ["464_TotemDamageSpellSupported"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2549369799", + ["text"] = "Anger has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["469_TotemDamageSpellSupported"] = { ["Boots"] = { - ["max"] = 25, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2962840349", - ["text"] = "Socketed Gems are Supported by Level # Spell Totem", - ["type"] = "explicit", - }, - }, - ["464_TotemSpeedSpellSupported"] = { + ["max"] = 25, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_15", + ["text"] = "Socketed Gems are Supported by Level # Spell Totem", + ["type"] = "explicit", + }, + }, + ["469_TotemSpeedSpellSupported"] = { ["Boots"] = { - ["max"] = 25, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2962840349", - ["text"] = "Socketed Gems are Supported by Level # Spell Totem", - ["type"] = "explicit", - }, - }, - ["466_ChanceToFreezeShockIgniteProliferation"] = { - ["1HMace"] = { - ["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", - }, - }, - ["4686_AngerReservation"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["468_LocalPhysicalDamagePercentMeleePhysicalDamage"] = { - ["1HAxe"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 25, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_15", + ["text"] = "Socketed Gems are Supported by Level # Spell Totem", + ["type"] = "explicit", + }, + }, + ["4719_ArcticArmourReservationCost"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2351239732", + ["text"] = "Arctic Armour has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["471_ChanceToFreezeShockIgniteProliferation"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["1HSword"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_89", + ["text"] = "Socketed Gems are Supported by Level # Elemental Proliferation", + ["type"] = "explicit", + }, + }, + ["4720_ArcticArmourReservationEfficiency"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2351239732", + ["text"] = "Arctic Armour has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["4728_SingleProjAOE"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2379109976", + ["text"] = "#% more Area of Effect with Bow Attacks that fire a single Projectile", + ["type"] = "explicit", + }, + }, + ["4730_CullingStrikeMaven"] = { ["2HAxe"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 25, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 25, + ["min"] = 15, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 25, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["Claw"] = { - ["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", - }, - }, - ["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", - }, - }, - ["469_LocalIncreasedAttackSpeedFasterAttacks"] = { - ["1HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 25, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1785568076", + ["text"] = "#% increased Area of Effect if you've dealt a Culling Strike Recently", + ["type"] = "explicit", + }, + }, + ["4733_AreaOfEffectIfStunnedEnemyRecently"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["1HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 35, + ["min"] = 25, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 35, + ["min"] = 25, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 45, + ["min"] = 25, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["Claw"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["Dagger"] = { - ["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", - }, - }, - ["470_BlindOnHitSupported"] = { - ["Gloves"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2223640518", - ["text"] = "Socketed Gems are supported by Level # Blind", - ["type"] = "explicit", - }, - }, - ["4714_ArcticArmourReservationCost"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2351239732", - ["text"] = "Arctic Armour has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, - ["4715_ArcticArmourReservationEfficiency"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2351239732", - ["text"] = "Arctic Armour has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, - ["471_SupportedByMeleeSplashDamage"] = { + ["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", + }, + }, + ["4736_AreaOfEffectPer50Strength"] = { + ["1HMace"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["1HWeapon"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["2HMace"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["2HWeapon"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2611023406", + ["text"] = "#% increased Area of Effect per 50 Strength", + ["type"] = "explicit", + }, + }, + ["4738_AreaOfEffectPerEnduranceCharge"] = { + ["2HMace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2448279015", + ["text"] = "#% increased Area of Effect per Endurance Charge", + ["type"] = "explicit", + }, + }, + ["4738_EnduranceChargeIfHitRecentlyMaven"] = { + ["Chest"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2448279015", + ["text"] = "#% increased Area of Effect per Endurance Charge", + ["type"] = "explicit", + }, + }, + ["473_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_1811422871", - ["text"] = "Socketed Gems are supported by Level # Melee Splash", - ["type"] = "explicit", - }, - }, - ["4723_SingleProjAOE"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["2HMace"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["2HSword"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Bow"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_46", + ["text"] = "Socketed Gems are Supported by Level # Melee Physical Damage", + ["type"] = "explicit", + }, + }, + ["474_IncreasedAttackSpeedSupported"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Staff"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1785568076", - ["text"] = "#% increased Area of Effect if you've dealt a Culling Strike Recently", - ["type"] = "explicit", - }, - }, - ["4728_AreaOfEffectIfStunnedEnemyRecently"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_86", + ["text"] = "Socketed Gems are Supported by Level # Faster Attacks", + ["type"] = "explicit", + }, + }, + ["474_LocalIncreasedAttackSpeedFasterAttacks"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 18, + }, ["1HMace"] = { - ["max"] = 35, - ["min"] = 25, - }, + ["max"] = 20, + ["min"] = 18, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 18, + }, ["1HWeapon"] = { - ["max"] = 35, - ["min"] = 25, - }, - ["2HMace"] = { - ["max"] = 45, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 45, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_430248187", - ["text"] = "#% increased Area of Effect if you have Stunned an Enemy Recently", - ["type"] = "explicit", - }, - }, - ["472_CastOnCritAndSpellDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2325632050", - ["text"] = "Socketed Gems are supported by Level # Cast On Critical Strike", - ["type"] = "explicit", - }, - }, - ["472_SupportedByCastOnCritWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HWeapon"] = { - ["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", - }, - }, - ["4731_AreaOfEffectPer50Strength"] = { - ["1HMace"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["1HWeapon"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["2HMace"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["2HWeapon"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2611023406", - ["text"] = "#% increased Area of Effect per 50 Strength", - ["type"] = "explicit", - }, - }, - ["4733_AreaOfEffectPerEnduranceCharge"] = { - ["2HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2448279015", - ["text"] = "#% increased Area of Effect per Endurance Charge", - ["type"] = "explicit", - }, - }, - ["4733_EnduranceChargeIfHitRecentlyMaven"] = { - ["Chest"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2448279015", - ["text"] = "#% increased Area of Effect per Endurance Charge", - ["type"] = "explicit", - }, - }, - ["4749_ArmourAppliesElementalHitsIfBlockedRecently"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_86", + ["text"] = "Socketed Gems are Supported by Level # Faster Attacks", + ["type"] = "explicit", + }, + }, + ["4754_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", - }, - }, - ["4763_ArmourIncreasedByUncappedFireResistance"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["4768_IncreasedArmourIfNoEnemySlainRecently"] = { - ["AbyssJewel"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["AnyJewel"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2424133568", - ["text"] = "#% increased Armour if you haven't Killed Recently", - ["type"] = "explicit", - }, - }, - ["4792_AdditionalCriticalStrikeChanceWithAttacks"] = { - ["Chest"] = { - ["max"] = 2, - ["min"] = 0.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2572042788", - ["text"] = "Attacks have +#% to Critical Strike Chance", - ["type"] = "explicit", - }, - }, - ["4806_AttackAndCastSpeedIfCorpseConsumedRecently"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["481_LocalIncreasedAttackSpeedMultistrike"] = { + ["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", + }, + }, + ["475_BlindOnHitSupported"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2223640518", + ["text"] = "Socketed Gems are supported by Level # Blind", + ["type"] = "explicit", + }, + }, + ["4768_ArmourIncreasedByUncappedFireResistance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2129352930", + ["text"] = "Armour is increased by Overcapped Fire Resistance", + ["type"] = "explicit", + }, + }, + ["476_SupportedByMeleeSplashDamage"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 16, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 16, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 16, + }, ["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"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1811422871", + ["text"] = "Socketed Gems are supported by Level # Melee Splash", + ["type"] = "explicit", + }, + }, + ["4772_FortifyEffectMaven"] = { + ["Helmet"] = { + ["max"] = 500, + ["min"] = 500, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_153004860", + ["text"] = "+# to Armour while Fortified", + ["type"] = "explicit", + }, + }, + ["4773_IncreasedArmourIfNoEnemySlainRecently"] = { + ["AbyssJewel"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["AnyJewel"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2424133568", + ["text"] = "#% increased Armour if you haven't Killed Recently", + ["type"] = "explicit", + }, + }, + ["477_CastOnCritAndSpellDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2325632050", + ["text"] = "Socketed Gems are supported by Level # Cast On Critical Strike", + ["type"] = "explicit", + }, + }, + ["477_SupportedByCastOnCritWeapon"] = { + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HWeapon"] = { + ["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", + }, + }, + ["4797_AdditionalCriticalStrikeChanceWithAttacks"] = { + ["Chest"] = { + ["max"] = 2, + ["min"] = 0.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2572042788", + ["text"] = "Attacks have +#% to Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["4811_AttackAndCastSpeedIfCorpseConsumedRecently"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_672563185", + ["text"] = "#% increased Attack and Cast Speed if you've Consumed a Corpse Recently", + ["type"] = "explicit", + }, + }, + ["4813_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", + }, + }, + ["4820_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", + }, + }, + ["4821_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", + }, + }, ["4822_AttackAndCastSpeedWhileFocused"] = { ["Gloves"] = { - ["max"] = 50, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2628163981", - ["text"] = "#% increased Attack and Cast Speed while Focused", - ["type"] = "explicit", - }, - }, - ["482_LocalIncreasedPhysicalDamagePercentFasterProjectiles"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["4839_ChanceToGainOnslaughtOnKillMaven"] = { + ["max"] = 36, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2628163981", + ["text"] = "#% increased Attack and Cast Speed while Focused", + ["type"] = "explicit", + }, + }, + ["4827_AttackAndCastSpeedWhileFocused"] = { + ["Gloves"] = { + ["max"] = 50, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2628163981", + ["text"] = "#% increased Attack and Cast Speed while Focused", + ["type"] = "explicit", + }, + }, + ["4844_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", - }, - }, - ["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", - }, - }, - ["485_CriticalStrikeMultiplierSupported"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_879520319", + ["text"] = "#% increased Attack, Cast and Movement Speed while you have Onslaught", + ["type"] = "explicit", + }, + }, + ["485_IncreasedAccuracyPercentSupported"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1567462963", + ["text"] = "Socketed Gems are supported by Level # Additional Accuracy", + ["type"] = "explicit", + }, + }, + ["486_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, - }, - ["Wand"] = { - ["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"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2501237765", + ["text"] = "Socketed Gems are supported by Level # Multistrike", + ["type"] = "explicit", + }, + }, + ["4874_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", - }, - }, - ["4872_AddedLightningDamagePerIntelligence"] = { + ["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", + }, + }, + ["4877_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", - }, - }, - ["487_IncreasedWeaponElementalDamagePercentSupported"] = { + ["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_LocalIncreasedPhysicalDamagePercentFasterProjectiles"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_99089516", + ["text"] = "Socketed Gems are supported by Level # Faster Projectiles", + ["type"] = "explicit", + }, + }, + ["487_ProjectileSpeedSupported"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_99089516", + ["text"] = "Socketed Gems are supported by Level # Faster Projectiles", + ["type"] = "explicit", + }, + }, + ["488_SupportedByLifeLeech"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_891277550", + ["text"] = "Socketed Gems are supported by Level # Life Leech", + ["type"] = "explicit", + }, + }, + ["4899_AttackSpeedIfEnemyKilledRecently"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["2HAxe"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1507059769", + ["text"] = "#% increased Attack Speed if you've Killed Recently", + ["type"] = "explicit", + }, + }, + ["4899_AttackSpeedKilledRecently"] = { + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1507059769", + ["text"] = "#% increased Attack Speed if you've Killed Recently", + ["type"] = "explicit", + }, + }, + ["4900_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", + }, + }, + ["4900_AttackSpeedPercentIfRareOrUniqueEnemyNearby"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 11, + ["min"] = 7, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 11, + ["min"] = 7, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 11, + ["min"] = 7, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 11, + ["min"] = 7, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 22, + ["min"] = 14, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 22, + ["min"] = 14, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 22, + ["min"] = 14, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 22, + ["min"] = 14, + }, + ["Bow"] = { + ["max"] = 22, + ["min"] = 14, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 11, + ["min"] = 7, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 11, + ["min"] = 7, + }, + ["Staff"] = { + ["max"] = 22, + ["min"] = 14, + }, ["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", - }, - }, - ["4894_AttackSpeedIfEnemyKilledRecently"] = { + ["max"] = 11, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_314741699", + ["text"] = "#% increased Attack Speed while a Rare or Unique Enemy is Nearby", + ["type"] = "explicit", + }, + }, + ["4902_AttackSpeedIfCriticalStrikeDealtRecently"] = { + ["AbyssJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1585344030", + ["text"] = "#% increased Attack Speed if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["4905_AttackSpeedPercentIfRareOrUniqueEnemyNearby"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 13, - }, + ["max"] = 15, + ["min"] = 12, + }, + ["1HMace"] = { + ["max"] = 15, + ["min"] = 12, + }, + ["1HSword"] = { + ["max"] = 15, + ["min"] = 12, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 13, - }, + ["max"] = 15, + ["min"] = 12, + }, ["2HAxe"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1507059769", - ["text"] = "#% increased Attack Speed if you've Killed Recently", - ["type"] = "explicit", - }, - }, - ["4894_AttackSpeedKilledRecently"] = { - ["2HAxe"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 27, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 27, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 27, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 27, + }, ["Bow"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 27, + }, + ["Claw"] = { + ["max"] = 15, + ["min"] = 12, + }, + ["Dagger"] = { + ["max"] = 15, + ["min"] = 12, + }, ["Staff"] = { - ["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", - }, - }, - ["4897_AttackSpeedIfCriticalStrikeDealtRecently"] = { - ["AbyssJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1585344030", - ["text"] = "#% increased Attack Speed if you've dealt a Critical Strike Recently", - ["type"] = "explicit", - }, - }, - ["4900_AttackSpeedPercentIfRareOrUniqueEnemyNearby"] = { + ["max"] = 30, + ["min"] = 27, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_314741699", + ["text"] = "#% increased Attack Speed while a Rare or Unique Enemy is Nearby", + ["type"] = "explicit", + }, + }, + ["4907_IncreasedAttackSpeedPerDexterity"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_889691035", + ["text"] = "#% increased Attack Speed per 10 Dexterity", + ["type"] = "explicit", + }, + }, + ["490_CriticalStrikeMultiplierSupported"] = { ["1HAxe"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HMace"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HSword"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HAxe"] = { - ["max"] = 30, - ["min"] = 14, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 14, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HSword"] = { - ["max"] = 30, - ["min"] = 14, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 14, - }, - ["Bow"] = { - ["max"] = 30, - ["min"] = 14, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Dagger"] = { - ["max"] = 15, - ["min"] = 7, - }, - ["Staff"] = { - ["max"] = 30, - ["min"] = 14, - }, + ["max"] = 20, + ["min"] = 18, + }, ["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", - }, - }, - ["4902_IncreasedAttackSpeedPerDexterity"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_889691035", - ["text"] = "#% increased Attack Speed per 10 Dexterity", - ["type"] = "explicit", - }, - }, - ["4906_ManaGainPerTargetMaven"] = { - ["Gloves"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1108755349", + ["text"] = "Socketed Gems are supported by Level # Increased Critical Damage", + ["type"] = "explicit", + }, + }, + ["4911_ManaGainPerTargetMaven"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 10, + }, ["Quiver"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_779663446", - ["text"] = "#% increased Attack Speed while not on Low Mana", - ["type"] = "explicit", - }, - }, - ["4915_AttacksBlindOnHitChance"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_779663446", + ["text"] = "#% increased Attack Speed while not on Low Mana", + ["type"] = "explicit", + }, + }, + ["4920_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", - }, - }, - ["4916_AttacksTauntOnHitChance"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["4921_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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["4918_ImpaleChanceForJewel"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_280213220", + ["text"] = "#% chance to Taunt Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["4923_AttackImpaleChance"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["4923_AttackImpaleChanceMaven"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["4923_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", - }, - }, - ["4924_AddedColdDamagePerDexterity"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["4929_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", - }, - }, - ["4941_EnchantmentElusive"] = { - ["AbyssJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2662268382", - ["text"] = "#% chance to Avoid Elemental Ailments while you have Elusive", - ["type"] = "explicit", - }, - }, - ["4943_AvoidElementalDamageChanceDuringSoulGainPrevention"] = { - ["Chest"] = { - ["max"] = 12, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 12, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_720398262", - ["text"] = "#% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", - ["type"] = "explicit", - }, - }, - ["494_SupportedByInspirationWeapon"] = { - ["2HWeapon"] = { - ["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", - }, - }, - ["494_WeaponSpellDamageReducedMana"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_749770518", - ["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", - }, - }, - ["496_DisplaySocketedGemsSupportedByFortify"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_107118693", - ["text"] = "Socketed Gems are Supported by Level # Fortify", - ["type"] = "explicit", - }, - }, - ["496_LocalPhysicalDamagePercentFortify"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_107118693", - ["text"] = "Socketed Gems are Supported by Level # Fortify", - ["type"] = "explicit", - }, - }, - ["496_SupportedByFortifyWeapon"] = { + ["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", + }, + }, + ["492_IncreasedWeaponElementalDamagePercentSupported"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HWeapon"] = { - ["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", - }, - }, - ["497_AdditionalMinesPlacedSupported"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Dagger"] = { + ["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", + }, + }, + ["4943_AvoidElementalDamageChanceDuringSoulGainPrevention"] = { + ["Chest"] = { + ["max"] = 9, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1710508327", - ["text"] = "Socketed Gems are Supported by Level # Blastchain Mine", - ["type"] = "explicit", - }, - }, - ["497_MineDamageSupported"] = { + ["max"] = 9, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_720398262", + ["text"] = "#% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", + ["type"] = "explicit", + }, + }, + ["4946_EnchantmentElusive"] = { + ["AbyssJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2662268382", + ["text"] = "#% chance to Avoid Elemental Ailments while you have Elusive", + ["type"] = "explicit", + }, + }, + ["4948_AvoidElementalDamageChanceDuringSoulGainPrevention"] = { + ["Chest"] = { + ["max"] = 12, + ["min"] = 10, + }, ["Helmet"] = { - ["max"] = 25, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1710508327", - ["text"] = "Socketed Gems are Supported by Level # Blastchain Mine", - ["type"] = "explicit", - }, - }, - ["4983_AilmentDamage"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_720398262", + ["text"] = "#% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", + ["type"] = "explicit", + }, + }, + ["4955_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", + }, + }, + ["4988_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", - }, - }, - ["4984_AilmentDurationIfNotAppliedThatAilmentRecently"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_690707482", + ["text"] = "#% increased Damage with Ailments", + ["type"] = "explicit", + }, + }, + ["4989_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", - }, - }, - ["4993_ChanceToAvoidProjectiles"] = { + ["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", + }, + }, + ["4998_ChanceToAvoidProjectiles"] = { ["Boots"] = { - ["max"] = 12, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3452269808", - ["text"] = "#% chance to avoid Projectiles", - ["type"] = "explicit", - }, - }, - ["4993_ChanceToAvoidProjectilesMaven"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3452269808", + ["text"] = "#% chance to avoid Projectiles", + ["type"] = "explicit", + }, + }, + ["4998_ChanceToAvoidProjectilesMaven"] = { ["Boots"] = { - ["max"] = 12, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3452269808", - ["text"] = "#% chance to avoid Projectiles", - ["type"] = "explicit", - }, - }, - ["4994_BleedChanceAndDurationForJewel"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3452269808", + ["text"] = "#% chance to avoid Projectiles", + ["type"] = "explicit", + }, + }, + ["4999_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", - }, - }, - ["4994_BleedDamageAndDuration"] = { + ["max"] = 16, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "explicit", + }, + }, + ["4999_BleedDamageAndDuration"] = { ["Ring"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", - ["type"] = "explicit", - }, - }, - ["4994_BleedDuration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", - ["type"] = "explicit", - }, - }, - ["4994_FasterBleedDamageMaven"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "explicit", + }, + }, + ["4999_BleedDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "explicit", + }, + }, + ["4999_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", + }, + }, + ["499_SupportedByInspirationWeapon"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_24", + ["text"] = "Socketed Gems are Supported by Level # Inspiration", + ["type"] = "explicit", + }, + }, + ["499_WeaponSpellDamageReducedMana"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_24", + ["text"] = "Socketed Gems are Supported by Level # Inspiration", + ["type"] = "explicit", + }, + }, ["5005_GlobalCooldownRecovery"] = { + ["Belt"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["5010_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"] = 10, + }, ["Boots"] = { - ["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, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["Dagger"] = { - ["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", - }, - }, - ["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", - }, - }, - ["5014_ColdDamageESLeech"] = { + ["max"] = 20, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["5019_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", - }, - }, - ["5016_FireDamageESLeech"] = { + ["max"] = 0.4, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1939452467", + ["text"] = "#% of Cold Damage Leeched as Energy Shield", + ["type"] = "explicit", + }, + }, + ["501_DisplaySocketedGemsSupportedByFortify"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_79", + ["text"] = "Socketed Gems are Supported by Level # Fortify", + ["type"] = "explicit", + }, + }, + ["501_LocalPhysicalDamagePercentFortify"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_79", + ["text"] = "Socketed Gems are Supported by Level # Fortify", + ["type"] = "explicit", + }, + }, + ["501_SupportedByFortifyWeapon"] = { + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_79", + ["text"] = "Socketed Gems are Supported by Level # Fortify", + ["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", + }, + }, + ["5021_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", - }, - }, - ["5017_LightningDamageESLeech"] = { + ["max"] = 0.4, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3885409671", + ["text"] = "#% of Fire Damage Leeched as Energy Shield", + ["type"] = "explicit", + }, + }, + ["5022_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", - }, - }, - ["5020_BaseFrozenEffectOnSelf"] = { + ["max"] = 0.4, + ["min"] = 0.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_308127151", + ["text"] = "#% of Lightning Damage Leeched as Energy Shield", + ["type"] = "explicit", + }, + }, + ["502_AdditionalMinesPlacedSupported"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_23", + ["text"] = "Socketed Gems are Supported by Level # Blastchain Mine", + ["type"] = "explicit", + }, + }, + ["502_MineDamageSupported"] = { ["Helmet"] = { - ["max"] = -11, - ["min"] = -20, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2069161757", - ["text"] = "#% increased Effect of Freeze on you", - ["type"] = "explicit", - }, - }, - ["5026_ColdExposureOnHit"] = { + ["max"] = 25, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_23", + ["text"] = "Socketed Gems are Supported by Level # Blastchain Mine", + ["type"] = "explicit", + }, + }, + ["5031_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", - }, - }, - ["5027_FireExposureOnHit"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2630708439", + ["text"] = "#% chance to inflict Cold Exposure on Hit", + ["type"] = "explicit", + }, + }, + ["5032_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", - }, - }, - ["5028_LightningExposureOnHit"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3602667353", + ["text"] = "#% chance to inflict Fire Exposure on Hit", + ["type"] = "explicit", + }, + }, + ["5033_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", - }, - }, - ["5032_MinionDuration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_999511066", - ["text"] = "#% increased Minion Duration", - ["type"] = "explicit", - }, - }, - ["5041_PhysicalDamageOverTimeTaken"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4265906483", + ["text"] = "#% chance to inflict Lightning Exposure on Hit", + ["type"] = "explicit", + }, + }, + ["5037_MinionDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_999511066", + ["text"] = "#% increased Minion Duration", + ["type"] = "explicit", + }, + }, + ["5046_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", - }, - }, - ["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", - }, - }, - ["5055_DesecratedGroundEffectEffectivenessMaven"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_511024200", + ["text"] = "#% reduced Physical Damage taken over time", + ["type"] = "explicit", + }, + }, + ["505_IncreasedCastSpeedFasterCasting"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_85", + ["text"] = "Socketed Gems are Supported by Level # Faster Casting", + ["type"] = "explicit", + }, + }, + ["505_IncreasedCastSpeedSupported"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_85", + ["text"] = "Socketed Gems are Supported by Level # Faster Casting", + ["type"] = "explicit", + }, + }, + ["5060_DesecratedGroundEffectEffectivenessMaven"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1953432004", - ["text"] = "Unaffected by Poison", - ["type"] = "explicit", - }, - }, - ["505_SupportedByLesserMultipleProjectilesDamage"] = { - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1953432004", + ["text"] = "Unaffected by Poison", + ["type"] = "explicit", + }, + }, + ["509_MinionLifeSupported"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_63", + ["text"] = "Socketed Gems are Supported by Level # Minion Life", + ["type"] = "explicit", + }, + }, + ["510_SupportedByLesserMultipleProjectilesDamage"] = { + ["1HWeapon"] = { + ["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", - }, - }, - ["506_MinionDamageSupported"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_55", + ["text"] = "Socketed Gems are Supported by Level # Multiple Projectiles", + ["type"] = "explicit", + }, + }, + ["511_MinionDamageSupported"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_808939569", - ["text"] = "Socketed Gems are Supported by Level # Minion Damage", - ["type"] = "explicit", - }, - }, - ["511_ChillEffectSupported"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_64", + ["text"] = "Socketed Gems are Supported by Level # Minion Damage", + ["type"] = "explicit", + }, + }, + ["516_ChillEffectSupported"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_13669281", - ["text"] = "Socketed Gems are Supported by Level # Hypothermia", - ["type"] = "explicit", - }, - }, - ["513_ColdDamagePrefixColdPenetration"] = { - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_74", + ["text"] = "Socketed Gems are Supported by Level # Hypothermia", + ["type"] = "explicit", + }, + }, + ["518_ColdDamagePrefixColdPenetration"] = { + ["1HWeapon"] = { + ["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", - }, - }, - ["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", - }, - }, - ["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", - }, - }, - ["5216_OnHitBlindChilledEnemies"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["5223_ClonesInheritGloves"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3148879215", - ["text"] = "Your Blink and Mirror arrow clones use your Gloves", - ["type"] = "explicit", - }, - }, - ["5230_AttackBlockIfBlockedAttackRecently"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_100", + ["text"] = "Socketed Gems are Supported by Level # Cold Penetration", + ["type"] = "explicit", + }, + }, + ["519_DisplaySupportedByManaLeech"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_49", + ["text"] = "Socketed Gems are Supported by Level # Mana Leech", + ["type"] = "explicit", + }, + }, + ["519_DisplaySupportedByManaLeechMaven"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_49", + ["text"] = "Socketed Gems are Supported by Level # Mana Leech", + ["type"] = "explicit", + }, + }, + ["5221_OnHitBlindChilledEnemies"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3450276548", + ["text"] = "Blind Chilled Enemies on Hit", + ["type"] = "explicit", + }, + }, + ["5228_ClonesInheritGloves"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3148879215", + ["text"] = "Your Blink and Mirror arrow clones use your Gloves", + ["type"] = "explicit", + }, + }, + ["5235_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", - }, - }, - ["523_ChanceToPoisonSupported"] = { + ["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", + }, + }, + ["526_ShockEffectSupported"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_60", + ["text"] = "Socketed Gems are Supported by Level # Innervate", + ["type"] = "explicit", + }, + }, + ["528_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", - }, - }, - ["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", - }, - }, - ["523_PoisonDamageWeaponSupported"] = { - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_54", + ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", + ["type"] = "explicit", + }, + }, + ["528_PoisonDamageSupported"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_54", + ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", + ["type"] = "explicit", + }, + }, + ["528_PoisonDamageWeaponSupported"] = { + ["1HWeapon"] = { + ["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", - }, - }, - ["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", - }, - }, - ["525_WeaponSpellDamageControlledDestruction"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_54", + ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", + ["type"] = "explicit", + }, + }, + ["528_PoisonDurationSupported"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_54", + ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", + ["type"] = "explicit", + }, + }, + ["530_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", - }, - }, - ["526_LocalPhysicalDamagePercentEnduranceChargeOnStun"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3375208082", - ["text"] = "Socketed Gems are Supported by Level # Endurance Charge on Melee Stun", - ["type"] = "explicit", - }, - }, - ["526_SupportedByEnduranceChargeOnStunWeapon"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_97", + ["text"] = "Socketed Gems are Supported by Level # Controlled Destruction", + ["type"] = "explicit", + }, + }, + ["531_LocalPhysicalDamagePercentEnduranceChargeOnStun"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.indexable_support_88", + ["text"] = "Socketed Gems are Supported by Level # Endurance Charge on Melee Stun", + ["type"] = "explicit", + }, + }, + ["531_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", - }, - }, - ["528_DisplaySocketedGemsGetReducedReservation"] = { + ["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", + }, + }, + ["533_DisplaySocketedGemsGetReducedReservation"] = { ["Shield"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3289633055", - ["text"] = "Socketed Gems have #% increased Reservation Efficiency", - ["type"] = "explicit", - }, - }, - ["534_DisplaySupportedSkillsHaveAChanceToIgnite"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3984519770", - ["text"] = "Socketed Gems have #% chance to Ignite", - ["type"] = "explicit", - }, - }, - ["5396_CannotBeChilledOrFrozenWhileMoving"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3289633055", + ["text"] = "Socketed Gems have #% increased Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["539_DisplaySupportedSkillsHaveAChanceToIgnite"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3984519770", + ["text"] = "Socketed Gems have #% chance to Ignite", + ["type"] = "explicit", + }, + }, + ["5401_CannotBeChilledOrFrozenWhileMoving"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["540_DisplaySocketedSkillsChain"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2788729902", - ["text"] = "Socketed Gems Chain # additional times", - ["type"] = "explicit", - }, - }, - ["5412_CannotBeShockedOrIgnitedWhileMoving"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_628032624", + ["text"] = "Cannot be Chilled or Frozen while moving", + ["type"] = "explicit", + }, + }, + ["5413_CorruptedBloodImmunity"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1658498488", + ["text"] = "Corrupted Blood cannot be inflicted on you", + ["type"] = "explicit", + }, + }, + ["5417_CannotBeShockedOrIgnitedWhileMoving"] = { ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["5465_MinionSkillCastSpeed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1516375869", - ["text"] = "#% increased Cast Speed with Minion Skills", - ["type"] = "explicit", - }, - }, - ["5466_CastSpeedDuringFlaskEffect"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3592330380", + ["text"] = "Cannot be Shocked or Ignited while moving", + ["type"] = "explicit", + }, + }, + ["545_DisplaySocketedSkillsChain"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2788729902", + ["text"] = "Socketed Gems Chain # additional times", + ["type"] = "explicit", + }, + }, + ["546_SocketedSkillsCriticalChance"] = { + ["Gloves"] = { + ["max"] = 3.5, + ["min"] = 3.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1681904129", + ["text"] = "Socketed Gems have +#% Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["5470_MinionSkillCastSpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1516375869", + ["text"] = "#% increased Cast Speed with Minion Skills", + ["type"] = "explicit", + }, + }, + ["5471_CastSpeedDuringFlaskEffect"] = { ["Belt"] = { - ["max"] = 14, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_252194507", - ["text"] = "#% increased Cast Speed during any Flask Effect", - ["type"] = "explicit", - }, - }, - ["5467_CastSpeedIfEnemyKilledRecently"] = { + ["max"] = 14, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_252194507", + ["text"] = "#% increased Cast Speed during any Flask Effect", + ["type"] = "explicit", + }, + }, + ["5472_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", - }, - }, - ["5467_IncreasedCastSpeedTwoHandedKilledRecently"] = { - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2072625596", + ["text"] = "#% increased Cast Speed if you've Killed Recently", + ["type"] = "explicit", + }, + }, + ["5472_IncreasedCastSpeedTwoHandedKilledRecently"] = { + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, ["Staff"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2072625596", - ["text"] = "#% increased Cast Speed if you've Killed Recently", - ["type"] = "explicit", - }, - }, - ["5468_CastSpeedIfCriticalStrikeDealtRecently"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2072625596", + ["text"] = "#% increased Cast Speed if you've Killed Recently", + ["type"] = "explicit", + }, + }, + ["5473_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", - }, - }, - ["5469_CastSpeedIfMinionKilledRecently"] = { + ["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", + }, + }, + ["5474_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", - }, - }, - ["546_SocketedAttacksDamageFinal"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3110907148", + ["text"] = "#% increased Cast Speed if a Minion has been Killed Recently", + ["type"] = "explicit", + }, + }, + ["551_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", - }, - }, - ["547_SocketedAttackCriticalStrikeChance"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1970781345", + ["text"] = "Socketed Skills deal #% more Attack Damage", + ["type"] = "explicit", + }, + }, + ["552_SocketedAttackCriticalStrikeChance"] = { ["Helmet"] = { - ["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", - }, - }, - ["549_SocketedAttacksManaCost"] = { + ["max"] = 4, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2867348718", + ["text"] = "Socketed Attacks have +#% to Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["553_SocketedAttackCriticalMultiplier"] = { + ["Gloves"] = { + ["max"] = 90, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_356456977", + ["text"] = "Socketed Attacks have +#% to Critical Strike Multiplier", + ["type"] = "explicit", + }, + }, + ["554_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", - }, - }, - ["549_SocketedAttacksManaCostMaven"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2264586521", + ["text"] = "Socketed Attacks have +# to Total Mana Cost", + ["type"] = "explicit", + }, + }, + ["554_SocketedAttacksManaCostMaven"] = { ["Chest"] = { - ["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", - }, - }, - ["552_DisplaySupportedSkillsDealDamageOnLowLife"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2264586521", + ["text"] = "Socketed Attacks have +# to Total Mana Cost", + ["type"] = "explicit", + }, + }, + ["555_SocketedGemsHaveMoreAttackAndCastSpeed"] = { + ["Gloves"] = { + ["max"] = 16, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_346351023", + ["text"] = "Socketed Gems have #% more Attack and Cast Speed", + ["type"] = "explicit", + }, + }, + ["557_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", - }, - }, - ["553_SocketedGemsDealMoreElementalDamage"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1235873320", + ["text"] = "Socketed Gems deal #% more Damage while on Low Life", + ["type"] = "explicit", + }, + }, + ["558_SocketedGemsDealMoreElementalDamage"] = { ["Helmet"] = { - ["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", - }, - }, - ["557_SocketedGemsAddPercentageOfPhysicalAsLightning"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3835899275", + ["text"] = "Socketed Gems deal #% more Elemental Damage", + ["type"] = "explicit", + }, + }, + ["561_SocketedGemsDealAdditionalFireDamage"] = { + ["Gloves"] = { + ["max"] = 200, + ["min"] = 200, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1289910726", + ["text"] = "Socketed Gems deal # to # Added Fire Damage", + ["type"] = "explicit", + }, + }, + ["562_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", - }, - }, - ["560_DisplayMovementSkillsCostNoMana"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1859937391", + ["text"] = "Socketed Gems gain #% of Physical Damage as extra Lightning Damage", + ["type"] = "explicit", + }, + }, + ["5656_SpellBlockChanceIfHitRecently"] = { + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["AbyssJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["AnyJewel"] = { + ["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", + }, + }, + ["5659_DoubleDamageChance"] = { + ["1HAxe"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["1HMace"] = { + ["max"] = 5, + ["min"] = 3, + }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 5, + ["min"] = 3, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 5, + ["min"] = 3, + }, + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 6, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3263216405", - ["text"] = "Socketed Movement Skills Cost no Mana", - ["type"] = "explicit", - }, - }, - ["561_SocketedSkillsAttackSpeed"] = { - ["Gloves"] = { - ["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", - }, - }, - ["564_DisplaySocketedSkillsFork"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 10, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 6, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1519665289", - ["text"] = "Projectiles from Socketed Gems Fork", - ["type"] = "explicit", - }, - }, - ["5651_SpellBlockChanceIfHitRecently"] = { - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["AbyssJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["max"] = 10, + ["min"] = 6, + }, + ["Claw"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["Dagger"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["Shield"] = { + ["max"] = 5, + ["min"] = 3, + }, ["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", - }, - }, - ["5655_CrushOnHitChance"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1172810729", + ["text"] = "#% chance to deal Double Damage", + ["type"] = "explicit", + }, + }, + ["565_DisplayMovementSkillsCostNoMana"] = { + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3263216405", + ["text"] = "Socketed Movement Skills Cost no Mana", + ["type"] = "explicit", + }, + }, + ["5660_CrushOnHitChance"] = { ["Amulet"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2228892313", - ["text"] = "#% chance to Crush on Hit", - ["type"] = "explicit", - }, - }, - ["5659_AttackSpeedDoubleDamage"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2228892313", + ["text"] = "#% chance to Crush on Hit", + ["type"] = "explicit", + }, + }, + ["5664_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", - }, - }, - ["5659_DoubleDamageChance"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1172810729", + ["text"] = "#% chance to deal Double Damage", + ["type"] = "explicit", + }, + }, + ["5664_DoubleDamageChance"] = { ["1HAxe"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 6, + }, ["1HMace"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 6, + }, ["1HSword"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 6, + }, ["1HWeapon"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 6, + }, ["2HAxe"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 14, + ["min"] = 12, + }, ["2HMace"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 14, + ["min"] = 12, + }, ["2HSword"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 14, + ["min"] = 12, + }, ["2HWeapon"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 14, + ["min"] = 12, + }, ["Bow"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 14, + ["min"] = 12, + }, ["Claw"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 6, + }, ["Dagger"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 6, + }, ["Shield"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["max"] = 7, + ["min"] = 6, + }, ["Staff"] = { - ["max"] = 14, - ["min"] = 6, - }, + ["max"] = 14, + ["min"] = 12, + }, ["Wand"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1172810729", - ["text"] = "#% chance to deal Double Damage", - ["type"] = "explicit", - }, - }, - ["565_SocketedSpellsDamageFinal"] = { + ["max"] = 7, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1172810729", + ["text"] = "#% chance to deal Double Damage", + ["type"] = "explicit", + }, + }, + ["5666_ChanceToDealDoubleDamageWhileFocused"] = { ["1HAxe"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 15, + ["min"] = 7, + }, ["1HMace"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 15, + ["min"] = 7, + }, ["1HSword"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 15, + ["min"] = 7, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 15, + ["min"] = 7, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 16, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 16, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 16, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 16, + }, ["Bow"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 16, + }, ["Claw"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Dagger"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 15, + ["min"] = 7, + }, + ["Shield"] = { + ["max"] = 15, + ["min"] = 7, + }, ["Staff"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 16, + }, ["Wand"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2964800094", - ["text"] = "Socketed Skills deal #% more Spell Damage", - ["type"] = "explicit", - }, - }, - ["5661_DoubleDamageStunnedRecently"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2908886986", + ["text"] = "#% chance to deal Double Damage while Focused", + ["type"] = "explicit", + }, + }, + ["5666_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", - }, - }, - ["5666_ChanceToDealDoubleDamageWhileFocused"] = { + ["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", + }, + }, + ["566_SocketedSkillsAttackSpeed"] = { + ["Gloves"] = { + ["max"] = 18, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2881124988", + ["text"] = "Socketed Skills have #% increased Attack Speed", + ["type"] = "explicit", + }, + }, + ["5671_ChanceToDealDoubleDamageWhileFocused"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 18, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 18, + }, ["2HAxe"] = { - ["max"] = 40, - ["min"] = 16, - }, + ["max"] = 40, + ["min"] = 36, + }, ["2HMace"] = { - ["max"] = 40, - ["min"] = 16, - }, + ["max"] = 40, + ["min"] = 36, + }, ["2HSword"] = { - ["max"] = 40, - ["min"] = 16, - }, + ["max"] = 40, + ["min"] = 36, + }, ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 16, - }, + ["max"] = 40, + ["min"] = 36, + }, ["Bow"] = { - ["max"] = 40, - ["min"] = 16, - }, + ["max"] = 40, + ["min"] = 36, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Shield"] = { - ["max"] = 20, - ["min"] = 7, - }, + ["max"] = 20, + ["min"] = 18, + }, ["Staff"] = { - ["max"] = 40, - ["min"] = 16, - }, + ["max"] = 40, + ["min"] = 36, + }, ["Wand"] = { - ["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", - }, - }, - ["5671_ChanceWhenHitForArmourToBeDoubled"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2908886986", + ["text"] = "#% chance to deal Double Damage while Focused", + ["type"] = "explicit", + }, + }, + ["5676_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", - }, - }, - ["5673_AdditionalChanceToEvade"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_327253797", + ["text"] = "#% chance to Defend with 200% of Armour", + ["type"] = "explicit", + }, + }, + ["5678_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", - }, - }, - ["5673_AdditionalChanceToEvadeMaven"] = { - ["Gloves"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2021058489", - ["text"] = "+#% chance to Evade Attack Hits", - ["type"] = "explicit", - }, - }, - ["5678_FortifyOnMeleeStun"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2021058489", + ["text"] = "+#% chance to Evade Attack Hits", + ["type"] = "explicit", + }, + }, + ["5678_AdditionalChanceToEvadeMaven"] = { + ["Gloves"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2021058489", + ["text"] = "+#% chance to Evade Attack Hits", + ["type"] = "explicit", + }, + }, + ["567_SocketedSkillsCastSpeed"] = { + ["Gloves"] = { + ["max"] = 18, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3425934849", + ["text"] = "Socketed Skills have #% increased Cast Speed", + ["type"] = "explicit", + }, + }, + ["5683_FortifyOnMeleeStun"] = { ["Belt"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3206381437", - ["text"] = "Melee Hits which Stun have #% chance to Fortify", - ["type"] = "explicit", - }, - }, - ["5678_GainFortifyOnStunChance"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3206381437", + ["text"] = "Melee Hits which Stun have #% chance to Fortify", + ["type"] = "explicit", + }, + }, + ["5683_GainFortifyOnStunChance"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3206381437", - ["text"] = "Melee Hits which Stun have #% chance to Fortify", - ["type"] = "explicit", - }, - }, - ["567_SocketedSpellCriticalMultiplier"] = { - ["Gloves"] = { - ["max"] = 90, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2828710986", - ["text"] = "Socketed Spells have +#% to Critical Strike Multiplier", - ["type"] = "explicit", - }, - }, - ["5686_GainEnduranceChargeOnHittingBleedingEnemy"] = { + ["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", + }, + }, + ["5691_GainEnduranceChargeOnHittingBleedingEnemy"] = { ["1HAxe"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["2HAxe"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1536266147", - ["text"] = "#% chance to gain an Endurance Charge when you Hit a Bleeding Enemy", - ["type"] = "explicit", - }, - }, - ["5688_GainEnduranceChargeOnTauntingEnemies"] = { + ["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", + }, + }, + ["5693_GainEnduranceChargeOnTauntingEnemies"] = { ["2HAxe"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1657549833", - ["text"] = "#% chance to gain an Endurance Charge when you Taunt an Enemy", - ["type"] = "explicit", - }, - }, - ["568_SocketedSpellsManaCost"] = { - ["Boots"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Shield"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1688834903", - ["text"] = "Socketed Spells have #% reduced Mana Cost", - ["type"] = "explicit", - }, - }, - ["5690_AccuracyRatingPerFrenzyChargeUber"] = { + ["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", + }, + }, + ["5695_AccuracyRatingPerFrenzyChargeUber"] = { ["1HSword"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["2HSword"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3769211656", - ["text"] = "#% chance to gain a Frenzy Charge when you Block", - ["type"] = "explicit", - }, - }, - ["5693_ChanceToGainOnslaughtOnFlaskUse"] = { + ["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", + }, + }, + ["5698_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", - }, - }, - ["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", - }, - }, - ["5725_ChanceToUnnerveOnHit"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1324450398", + ["text"] = "#% chance to gain Onslaught when you use a Flask", + ["type"] = "explicit", + }, + }, + ["569_DisplaySocketedSkillsFork"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1519665289", + ["text"] = "Projectiles from Socketed Gems Fork", + ["type"] = "explicit", + }, + }, + ["570_SocketedSpellsDamageFinal"] = { + ["1HAxe"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["1HMace"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["1HSword"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Claw"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Dagger"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2964800094", + ["text"] = "Socketed Skills deal #% more Spell Damage", + ["type"] = "explicit", + }, + }, + ["571_SocketedSpellCriticalStrikeChance"] = { + ["Helmet"] = { + ["max"] = 4, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_135378852", + ["text"] = "Socketed Spells have +#% to Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["5720_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", + }, + }, + ["572_SocketedSpellCriticalMultiplier"] = { + ["Gloves"] = { + ["max"] = 90, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2828710986", + ["text"] = "Socketed Spells have +#% to Critical Strike Multiplier", + ["type"] = "explicit", + }, + }, + ["5730_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", - }, - }, - ["5729_ChaosDamageDoesNotBypassESNotLowLifeOrMana"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_887556907", - ["text"] = "Chaos Damage taken does not bypass Energy Shield while not on Low Life", - ["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", + }, + }, + ["5734_ChaosDamageDoesNotBypassESNotLowLifeOrMana"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2266636761", + ["text"] = "+#% Chaos Resistance against Damage Over Time", + ["type"] = "explicit", + }, + }, + ["5739_ChaosResistanceAgainstDamageOverTime"] = { ["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", + }, + }, + ["573_SocketedSpellsManaCost"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 20, + }, ["Shield"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2266636761", - ["text"] = "+#% Chaos Resistance against Damage Over Time", - ["type"] = "explicit", - }, - }, - ["5756_GlobalChaosGemLevel"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1688834903", + ["text"] = "Socketed Spells have #% reduced Mana Cost", + ["type"] = "explicit", + }, + }, + ["5761_GlobalChaosGemLevel"] = { ["Amulet"] = { - ["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"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_67169579", + ["text"] = "+# to Level of all Chaos Skill Gems", + ["type"] = "explicit", + }, + }, + ["5771_ChanceToChillAttackersOnBlock"] = { + ["2HWeapon"] = { + ["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", - }, - }, - ["5777_CurseEffectChillingAreas"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_608898129", - ["text"] = "Curses on Enemies in your Chilling Areas have #% increased Effect", - ["type"] = "explicit", - }, - }, - ["5796_ColdAilmentDuration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3571964448", - ["text"] = "#% increased Duration of Cold Ailments", - ["type"] = "explicit", - }, - }, - ["5798_AbyssJewelChillEffect"] = { + ["max"] = 50, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_864879045", + ["text"] = "#% chance to Chill Attackers for 4 seconds on Block", + ["type"] = "explicit", + }, + }, + ["5782_CurseEffectChillingAreas"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_608898129", + ["text"] = "Curses on Enemies in your Chilling Areas have #% increased Effect", + ["type"] = "explicit", + }, + }, + ["5800_ColdAndChaosDamageResistance"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Belt"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Boots"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Chest"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Gloves"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Helmet"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Quiver"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Shield"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3393628375", + ["text"] = "+#% to Cold and Chaos Resistances", + ["type"] = "explicit", + }, + }, + ["5801_ColdAilmentDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3571964448", + ["text"] = "#% increased Duration of Cold Ailments", + ["type"] = "explicit", + }, + }, + ["5803_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", - }, - }, - ["5798_ChillEffectSupported"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1793818220", + ["text"] = "#% increased Effect of Cold Ailments", + ["type"] = "explicit", + }, + }, + ["5803_ChillEffectSupported"] = { ["Helmet"] = { - ["max"] = 20, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1793818220", - ["text"] = "#% increased Effect of Cold Ailments", - ["type"] = "explicit", - }, - }, - ["5800_ColdAndChaosDamageResistance"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1793818220", + ["text"] = "#% increased Effect of Cold Ailments", + ["type"] = "explicit", + }, + }, + ["5805_ColdAndChaosDamageResistance"] = { ["Amulet"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Belt"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Boots"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Chest"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Gloves"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Helmet"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Quiver"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Ring"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Shield"] = { - ["max"] = 20, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3393628375", - ["text"] = "+#% to Cold and Chaos Resistances", - ["type"] = "explicit", - }, - }, - ["5818_PhysicalDamageTakenAsColdUberMaven"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3393628375", + ["text"] = "+#% to Cold and Chaos Resistances", + ["type"] = "explicit", + }, + }, + ["5823_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", - }, - }, - ["5836_GlobalColdGemLevel"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3679418014", + ["text"] = "#% of Cold Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, + ["5841_GlobalColdGemLevel"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1078455967", - ["text"] = "+# to Level of all Cold Skill Gems", - ["type"] = "explicit", - }, - }, - ["5856_ConsecratedGroundStationary"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1078455967", + ["text"] = "+# to Level of all Cold Skill Gems", + ["type"] = "explicit", + }, + }, + ["5861_ConsecratedGroundStationary"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_880970200", - ["text"] = "You have Consecrated Ground around you while stationary", - ["type"] = "explicit", - }, - }, - ["5856_ConsecratedGroundStationaryMaven"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_880970200", + ["text"] = "You have Consecrated Ground around you while stationary", + ["type"] = "explicit", + }, + }, + ["5861_ConsecratedGroundStationaryMaven"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_880970200", - ["text"] = "You have Consecrated Ground around you while stationary", - ["type"] = "explicit", - }, - }, - ["5913_CritChanceShockedEnemies"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_880970200", + ["text"] = "You have Consecrated Ground around you while stationary", + ["type"] = "explicit", + }, + }, + ["5918_CritChanceShockedEnemies"] = { ["Belt"] = { - ["max"] = 45, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_276103140", - ["text"] = "#% increased Critical Strike Chance against Shocked Enemies", - ["type"] = "explicit", - }, - }, - ["5913_LightningResistanceAilments"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["5925_CriticalStrikeChanceIfKilledRecently"] = { + ["max"] = 45, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_276103140", + ["text"] = "#% increased Critical Strike Chance against Shocked Enemies", + ["type"] = "explicit", + }, + }, + ["5918_LightningResistanceAilments"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_276103140", + ["text"] = "#% increased Critical Strike Chance against Shocked Enemies", + ["type"] = "explicit", + }, + }, + ["5924_CriticalChanceIncreasedByUncappedLightningResistance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2478752719", + ["text"] = "Critical Strike Chance is increased by Overcapped Lightning Resistance", + ["type"] = "explicit", + }, + }, + ["5930_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", - }, - }, - ["5925_CriticalStrikeChanceTwoHandedCritChanceRecently"] = { + ["max"] = 50, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3914638685", + ["text"] = "#% increased Critical Strike Chance if you have Killed Recently", + ["type"] = "explicit", + }, + }, + ["5930_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", - }, - }, - ["5926_ReducedShockEffectOnSelfMaven"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3914638685", + ["text"] = "#% increased Critical Strike Chance if you have Killed Recently", + ["type"] = "explicit", + }, + }, + ["5931_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", - }, - }, - ["5927_CriticalStrikeChanceIfNoCriticalStrikeDealtRecently"] = { + ["max"] = 75, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1434381067", + ["text"] = "#% increased Critical Strike Chance if you've been Shocked Recently", + ["type"] = "explicit", + }, + }, + ["5932_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", - }, - }, - ["5927_CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber"] = { - ["2HWeapon"] = { - ["max"] = 100, - ["min"] = 80, - }, + ["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", + }, + }, + ["5932_CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber"] = { + ["2HWeapon"] = { + ["max"] = 100, + ["min"] = 80, + }, ["Staff"] = { - ["max"] = 100, - ["min"] = 80, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2856328513", - ["text"] = "#% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", - ["type"] = "explicit", - }, - }, - ["5930_GainAccuracyEqualToStrengthMaven"] = { + ["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", + }, + }, + ["5935_GainAccuracyEqualToStrengthMaven"] = { ["Helmet"] = { - ["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"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2511370818", + ["text"] = "#% increased Critical Strike Chance per 10 Strength", + ["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", + }, + }, + ["5961_CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby"] = { + ["1HAxe"] = { + ["max"] = 30, + ["min"] = 17, + }, + ["1HMace"] = { + ["max"] = 30, + ["min"] = 17, + }, + ["1HSword"] = { + ["max"] = 30, + ["min"] = 17, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 17, + }, + ["2HAxe"] = { + ["max"] = 45, + ["min"] = 25, + }, + ["2HMace"] = { + ["max"] = 45, + ["min"] = 25, + }, + ["2HSword"] = { + ["max"] = 45, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 45, + ["min"] = 25, + }, + ["Bow"] = { + ["max"] = 45, + ["min"] = 25, + }, + ["Claw"] = { + ["max"] = 30, + ["min"] = 17, + }, + ["Dagger"] = { + ["max"] = 30, + ["min"] = 17, + }, + ["Staff"] = { + ["max"] = 45, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3992439283", + ["text"] = "+#% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", + ["type"] = "explicit", + }, + }, + ["5962_CriticalStrikeMultiplierIfEnemySlainRecently"] = { + ["1HWeapon"] = { + ["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", - }, - }, - ["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", - }, - }, - ["5960_CriticalStrikeChanceTwoHandedCritMultiRecently"] = { + ["max"] = 35, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2937483991", + ["text"] = "+#% to Critical Strike Multiplier if you've Killed Recently", + ["type"] = "explicit", + }, + }, + ["5963_CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_536929014", + ["text"] = "+#% to Critical Strike Multiplier if you've Shattered an Enemy Recently", + ["type"] = "explicit", + }, + }, + ["5965_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", - }, - }, - ["5961_CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby"] = { + ["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", + }, + }, + ["5966_CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby"] = { ["1HAxe"] = { - ["max"] = 40, - ["min"] = 17, - }, + ["max"] = 40, + ["min"] = 36, + }, ["1HMace"] = { - ["max"] = 40, - ["min"] = 17, - }, + ["max"] = 40, + ["min"] = 36, + }, ["1HSword"] = { - ["max"] = 40, - ["min"] = 17, - }, + ["max"] = 40, + ["min"] = 36, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 17, - }, + ["max"] = 40, + ["min"] = 36, + }, ["2HAxe"] = { - ["max"] = 60, - ["min"] = 25, - }, + ["max"] = 60, + ["min"] = 54, + }, ["2HMace"] = { - ["max"] = 60, - ["min"] = 25, - }, + ["max"] = 60, + ["min"] = 54, + }, ["2HSword"] = { - ["max"] = 60, - ["min"] = 25, - }, + ["max"] = 60, + ["min"] = 54, + }, ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 25, - }, + ["max"] = 60, + ["min"] = 54, + }, ["Bow"] = { - ["max"] = 60, - ["min"] = 25, - }, + ["max"] = 60, + ["min"] = 54, + }, ["Claw"] = { - ["max"] = 40, - ["min"] = 17, - }, + ["max"] = 40, + ["min"] = 36, + }, ["Dagger"] = { - ["max"] = 40, - ["min"] = 17, - }, + ["max"] = 40, + ["min"] = 36, + }, ["Staff"] = { - ["max"] = 60, - ["min"] = 25, - }, + ["max"] = 60, + ["min"] = 54, + }, ["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", - }, - }, - ["5963_CriticalStrikeMultiplierIfBlockedRecentlyUber"] = { - ["2HWeapon"] = { - ["max"] = 45, - ["min"] = 35, - }, + ["max"] = 40, + ["min"] = 36, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3992439283", + ["text"] = "+#% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", + ["type"] = "explicit", + }, + }, + ["5968_CriticalStrikeMultiplierIfBlockedRecentlyUber"] = { + ["2HWeapon"] = { + ["max"] = 45, + ["min"] = 35, + }, ["Staff"] = { - ["max"] = 45, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3527458221", - ["text"] = "+#% to Critical Strike Multiplier if you have Blocked Recently", - ["type"] = "explicit", - }, - }, - ["5994_OLDAdditionalCurseOnEnemiesMaven"] = { + ["max"] = 45, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3527458221", + ["text"] = "+#% to Critical Strike Multiplier if you have Blocked Recently", + ["type"] = "explicit", + }, + }, + ["5999_OLDAdditionalCurseOnEnemiesMaven"] = { ["Chest"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_443165947", - ["text"] = "#% increased Mana Reservation Efficiency of Curse Aura Skills", - ["type"] = "explicit", - }, - }, - ["5995_AdditionalCurseOnEnemiesMaven"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_443165947", + ["text"] = "#% increased Mana Reservation Efficiency of Curse Aura Skills", + ["type"] = "explicit", + }, + }, + ["6000_AdditionalCurseOnEnemiesMaven"] = { ["Chest"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_443165947", - ["text"] = "#% increased Mana Reservation Efficiency of Curse Aura Skills", - ["type"] = "explicit", - }, - }, - ["5996_EnchantmentConsecratedGround"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_443165947", + ["text"] = "#% increased Mana Reservation Efficiency of Curse Aura Skills", + ["type"] = "explicit", + }, + }, + ["6001_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", - }, - }, - ["6000_CurseDuration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1435748744", - ["text"] = "Curse Skills have #% increased Skill Effect Duration", - ["type"] = "explicit", - }, - }, - ["6020_DamageWithBowSkills"] = { + ["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", + }, + }, + ["6005_CurseDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1435748744", + ["text"] = "Curse Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + }, + ["6025_DamageWithBowSkills"] = { ["Quiver"] = { - ["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", - }, - }, - ["6032_DamagePenetratesElementalResistancesIfNoEnemySlainRecently"] = { + ["max"] = 50, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1241625305", + ["text"] = "#% increased Damage with Bow Skills", + ["type"] = "explicit", + }, + }, + ["6037_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", - }, - }, - ["6042_DamageIfEnemySlainRecently"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_455556407", + ["text"] = "Damage Penetrates #% Elemental Resistances if you haven't Killed Recently", + ["type"] = "explicit", + }, + }, + ["6047_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", - }, - }, - ["6045_ReducedBurnDurationMaven"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1072119541", + ["text"] = "#% increased Damage if you've Killed Recently", + ["type"] = "explicit", + }, + }, + ["6050_ReducedBurnDurationMaven"] = { ["Helmet"] = { - ["max"] = 50, - ["min"] = 36, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_430821956", - ["text"] = "#% increased Damage if you've been Ignited Recently", - ["type"] = "explicit", - }, - }, - ["6056_DamagePer15Dexterity"] = { + ["max"] = 50, + ["min"] = 36, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_430821956", + ["text"] = "#% increased Damage if you've been Ignited Recently", + ["type"] = "explicit", + }, + }, + ["6061_DamagePer15Dexterity"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2062174346", - ["text"] = "#% increased Damage per 15 Dexterity", - ["type"] = "explicit", - }, - }, - ["6057_DamagePer15Intelligence"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2062174346", + ["text"] = "#% increased Damage per 15 Dexterity", + ["type"] = "explicit", + }, + }, + ["6062_DamagePer15Intelligence"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3801128794", - ["text"] = "#% increased Damage per 15 Intelligence", - ["type"] = "explicit", - }, - }, - ["6058_DamagePer15Strength"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3801128794", + ["text"] = "#% increased Damage per 15 Intelligence", + ["type"] = "explicit", + }, + }, + ["6063_DamagePer15Strength"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3948776386", - ["text"] = "#% increased Damage per 15 Strength", - ["type"] = "explicit", - }, - }, - ["6059_DamagePerBlockChance"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3948776386", + ["text"] = "#% increased Damage per 15 Strength", + ["type"] = "explicit", + }, + }, + ["6064_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"] = 4, + ["min"] = 3, + }, + ["1HMace"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["1HSword"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["1HWeapon"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["2HAxe"] = { + ["max"] = 6, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 6, + ["min"] = 5, + }, + ["2HSword"] = { + ["max"] = 6, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 6, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 6, + ["min"] = 5, + }, + ["Claw"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["Dagger"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["Staff"] = { + ["max"] = 6, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2034658008", + ["text"] = "#% increased Damage per Power Charge", + ["type"] = "explicit", + }, + }, + ["6071_IncreasedDamagePerPowerCharge"] = { + ["1HAxe"] = { + ["max"] = 6, + ["min"] = 5, + }, ["1HMace"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 5, + }, ["1HSword"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 5, + }, ["2HAxe"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 7, + }, ["2HMace"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 7, + }, ["2HSword"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 7, + }, ["2HWeapon"] = { - ["max"] = 17, - ["min"] = 5, - }, + ["max"] = 17, + ["min"] = 7, + }, ["Amulet"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 3, + }, ["Bow"] = { - ["max"] = 8, - ["min"] = 5, - }, + ["max"] = 8, + ["min"] = 7, + }, ["Claw"] = { - ["max"] = 6, - ["min"] = 3, - }, + ["max"] = 6, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 17, - ["min"] = 5, - }, + ["max"] = 17, + ["min"] = 7, + }, ["Wand"] = { - ["max"] = 10, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2034658008", - ["text"] = "#% increased Damage per Power Charge", - ["type"] = "explicit", - }, - }, - ["6066_PowerChargeOnCriticalStrikeChanceMaven"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2034658008", + ["text"] = "#% increased Damage per Power Charge", + ["type"] = "explicit", + }, + }, + ["6071_PowerChargeOnCriticalStrikeChanceMaven"] = { ["Chest"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2034658008", - ["text"] = "#% increased Damage per Power Charge", - ["type"] = "explicit", - }, - }, - ["6069_DamageVSAbyssMonsters"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2034658008", + ["text"] = "#% increased Damage per Power Charge", + ["type"] = "explicit", + }, + }, + ["6074_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", - }, - }, - ["6070_ColdResistanceAilments"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2805714016", - ["text"] = "#% increased Damage with Hits against Chilled Enemies", - ["type"] = "explicit", - }, - }, - ["6070_DamageChilledEnemies"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3257279374", + ["text"] = "#% increased Damage with Hits and Ailments against Abyssal Monsters", + ["type"] = "explicit", + }, + }, + ["6075_ColdResistanceAilments"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2805714016", + ["text"] = "#% increased Damage with Hits against Chilled Enemies", + ["type"] = "explicit", + }, + }, + ["6075_DamageChilledEnemies"] = { ["Belt"] = { - ["max"] = 40, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2805714016", - ["text"] = "#% increased Damage with Hits against Chilled Enemies", - ["type"] = "explicit", - }, - }, - ["6074_DamageOnFullLife"] = { + ["max"] = 40, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2805714016", + ["text"] = "#% increased Damage with Hits against Chilled Enemies", + ["type"] = "explicit", + }, + }, + ["6079_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", + }, + }, + ["607_SupportDamageOverTime"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3846088475", + ["text"] = "Socketed Gems deal #% more Damage over Time", + ["type"] = "explicit", + }, + }, ["6084_DamageWithNonVaalSkillsDuringSoulGainPrevention"] = { ["Boots"] = { - ["max"] = 80, - ["min"] = 30, - }, - ["Gloves"] = { - ["max"] = 80, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1583385065", - ["text"] = "#% increased Damage with Non-Vaal Skills during Soul Gain Prevention", - ["type"] = "explicit", - }, - }, + ["max"] = 60, + ["min"] = 30, + }, + ["Gloves"] = { + ["max"] = 60, + ["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", - }, - }, - ["6105_DamageTakenGainedAsLife"] = { + ["max"] = 15, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1588539856", + ["text"] = "#% of Damage is taken from Mana before Life while Focused", + ["type"] = "explicit", + }, + }, + ["6089_DamageWithNonVaalSkillsDuringSoulGainPrevention"] = { + ["Boots"] = { + ["max"] = 80, + ["min"] = 71, + }, + ["Gloves"] = { + ["max"] = 80, + ["min"] = 71, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1583385065", + ["text"] = "#% increased Damage with Non-Vaal Skills during Soul Gain Prevention", + ["type"] = "explicit", + }, + }, + ["6094_DamageRemovedFromManaBeforeLifeWhileFocused"] = { + ["Chest"] = { + ["max"] = 22, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1588539856", + ["text"] = "#% of Damage is taken from Mana before Life while Focused", + ["type"] = "explicit", + }, + }, + ["6110_DamageTakenGainedAsLife"] = { ["Ring"] = { - ["max"] = 15, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "explicit", - }, - }, - ["6105_LifeRecoupForJewel"] = { + ["max"] = 15, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, + ["6110_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", - }, - }, - ["6117_ReducedFreezeDurationMaven"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, + ["6122_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", - }, - }, - ["6124_RecoupWhileFrozen"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2585984986", - ["text"] = "#% of Damage taken while Frozen Recouped as Life", - ["type"] = "explicit", - }, - }, - ["6127_FasterAilmentDamageForJewel"] = { + ["max"] = -4, + ["min"] = -7, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3616645755", + ["text"] = "#% increased Damage taken if you've been Frozen Recently", + ["type"] = "explicit", + }, + }, + ["6129_RecoupWhileFrozen"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2585984986", + ["text"] = "#% of Damage taken while Frozen Recouped as Life", + ["type"] = "explicit", + }, + }, + ["6132_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", - }, - }, - ["6151_SelfDebilitate"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1238227257", - ["text"] = "Debuffs on you expire #% faster", - ["type"] = "explicit", - }, - }, - ["6161_MalevolenceAuraEffect"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_538241406", + ["text"] = "Damaging Ailments deal damage #% faster", + ["type"] = "explicit", + }, + }, + ["6156_SelfDebilitate"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", + ["type"] = "explicit", + }, + }, + ["6166_MalevolenceAuraEffect"] = { + ["1HMace"] = { + ["max"] = 40, + ["min"] = 28, + }, + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 28, + }, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 48, + }, + ["Dagger"] = { + ["max"] = 40, + ["min"] = 28, + }, + ["Staff"] = { + ["max"] = 60, + ["min"] = 48, + }, + ["Wand"] = { + ["max"] = 40, + ["min"] = 28, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4175197580", + ["text"] = "Malevolence has #% increased Aura Effect", + ["type"] = "explicit", + }, + }, + ["6177_DeterminationReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2721871046", + ["text"] = "Determination has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["6178_DeterminationReservationEfficiency"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2721871046", + ["text"] = "Determination has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["6182_GlobalDexterityGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_146924886", + ["text"] = "+# to Level of all Dexterity Skill Gems", + ["type"] = "explicit", + }, + }, + ["6193_DisciplineReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1692887998", + ["text"] = "Discipline has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["6194_DisciplineReservationEfficiency"] = { + ["Amulet"] = { + ["max"] = 60, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1692887998", + ["text"] = "Discipline has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["6302_CriticalChanceAndElementalDamagePercentIfHaveCritRecently"] = { + ["Gloves"] = { + ["max"] = 22, + ["min"] = 14, + }, + ["Quiver"] = { + ["max"] = 22, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2379781920", + ["text"] = "#% increased Elemental Damage if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["6307_CriticalChanceAndElementalDamagePercentIfHaveCritRecently"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 27, + }, + ["Quiver"] = { + ["max"] = 30, + ["min"] = 27, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2379781920", + ["text"] = "#% increased Elemental Damage if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["6321_IncreasedWeaponElementalDamagePercent"] = { + ["1HAxe"] = { + ["max"] = 32, + ["min"] = 15, + }, ["1HMace"] = { - ["max"] = 40, - ["min"] = 28, - }, + ["max"] = 32, + ["min"] = 15, + }, + ["1HSword"] = { + ["max"] = 32, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 28, - }, + ["max"] = 32, + ["min"] = 15, + }, + ["2HAxe"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["2HSword"] = { + ["max"] = 32, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 48, - }, + ["max"] = 32, + ["min"] = 15, + }, + ["Amulet"] = { + ["max"] = 23, + ["min"] = 15, + }, + ["Belt"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 32, + ["min"] = 15, + }, ["Dagger"] = { - ["max"] = 40, - ["min"] = 28, - }, + ["max"] = 32, + ["min"] = 15, + }, + ["Quiver"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["Ring"] = { + ["max"] = 23, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 60, - ["min"] = 48, - }, + ["max"] = 32, + ["min"] = 15, + }, ["Wand"] = { - ["max"] = 40, - ["min"] = 28, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4175197580", - ["text"] = "Malevolence has #% increased Aura Effect", - ["type"] = "explicit", - }, - }, - ["6172_DeterminationReservation"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_325889252", - ["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", - }, - }, - ["6177_GlobalDexterityGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_146924886", - ["text"] = "+# to Level of all Dexterity Skill Gems", - ["type"] = "explicit", - }, - }, - ["6188_DisciplineReservation"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2081344089", - ["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"] = { - ["Gloves"] = { - ["max"] = 30, - ["min"] = 14, - }, - ["Quiver"] = { - ["max"] = 30, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2379781920", - ["text"] = "#% increased Elemental Damage if you've dealt a Critical Strike Recently", - ["type"] = "explicit", - }, - }, - ["6321_IncreasedWeaponElementalDamagePercent"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attack Skills", + ["type"] = "explicit", + }, + }, + ["6326_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"] = 19, + }, ["2HMace"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 100, + ["min"] = 19, + }, ["2HSword"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 100, + ["min"] = 19, + }, ["2HWeapon"] = { - ["max"] = 100, - ["min"] = 15, - }, + ["max"] = 100, + ["min"] = 19, + }, ["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"] = 19, + }, ["Claw"] = { - ["max"] = 59, - ["min"] = 11, - }, + ["max"] = 59, + ["min"] = 11, + }, ["Dagger"] = { - ["max"] = 59, - ["min"] = 11, - }, - ["Quiver"] = { - ["max"] = 32, - ["min"] = 15, - }, + ["max"] = 59, + ["min"] = 11, + }, ["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"] = 19, + }, ["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", + }, + }, + ["6326_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", + }, + }, + ["6339_ReducedElementalReflectTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2160417795", + ["text"] = "You and your Minions take #% reduced Reflected Elemental Damage", + ["type"] = "explicit", + }, + }, + ["6339_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", + }, + }, + ["6354_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", + }, + }, + ["6361_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", + }, + }, + ["6377_EnemiesExplodeOnDeathPhysical"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1220361974", + ["text"] = "Enemies you Kill Explode, dealing #% of their Life as Physical Damage", + ["type"] = "explicit", + }, + }, + ["6377_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", + }, + }, + ["6409_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", + }, + }, + ["6415_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", + }, + }, + ["6418_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", + }, + }, + ["6419_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", + }, + }, + ["6421_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"] = { - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1032614900", + ["text"] = "Enemies Withered by you have +#% to all Resistances", + ["type"] = "explicit", + }, + }, + ["6422_EnemiesHaveReducedEvasionIfHitRecently"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1773891268", - ["text"] = "Enemies have #% reduced Evasion if you have Hit them Recently", - ["type"] = "explicit", - }, - }, - ["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", + }, + }, + ["6455_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", - }, - }, + ["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_EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby"] = { ["Belt"] = { - ["max"] = 200, - ["min"] = 90, - }, + ["max"] = 150, + ["min"] = 90, + }, + ["Chest"] = { + ["max"] = 150, + ["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", + }, + }, + ["6460_EnergyShieldRegenerationRatePercentageIfCorpseConsumedRecently"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2160190507", + ["text"] = "Regenerate #% of Energy Shield per second if you've Consumed a Corpse Recently", + ["type"] = "explicit", + }, + }, + ["6461_EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby"] = { + ["Belt"] = { + ["max"] = 200, + ["min"] = 200, + }, ["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"] = 200, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2238019079", + ["text"] = "Regenerate # Energy Shield per second while a Rare or Unique Enemy is Nearby", + ["type"] = "explicit", + }, + }, + ["6463_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", + }, + }, + ["6466_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", - }, - }, + ["max"] = 20, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1330109706", + ["text"] = "Regenerate # Energy Shield per second", + ["type"] = "explicit", + }, + }, ["6477_DodgeChanceDuringFocus"] = { ["Boots"] = { - ["max"] = 32, - ["min"] = 16, - }, + ["max"] = 25, + ["min"] = 16, + }, + ["Helmet"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3839620417", + ["text"] = "#% increased Evasion Rating while Focused", + ["type"] = "explicit", + }, + }, + ["6482_DodgeChanceDuringFocus"] = { + ["Boots"] = { + ["max"] = 32, + ["min"] = 30, + }, ["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", - }, - }, + ["max"] = 32, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3839620417", + ["text"] = "#% increased Evasion Rating while Focused", + ["type"] = "explicit", + }, + }, ["6487_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, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3244118730", + ["text"] = "#% of Evasion Rating is Regenerated as Life per second while Focused", + ["type"] = "explicit", + }, + }, + ["6491_EvasionIncreasedByUncappedColdResistance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2358015838", + ["text"] = "Evasion Rating is increased by Overcapped Cold Resistance", + ["type"] = "explicit", + }, + }, + ["6492_LifeRegenerationPerEvasionDuringFocus"] = { + ["Chest"] = { + ["max"] = 1.5, + ["min"] = 1.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3244118730", + ["text"] = "#% of Evasion Rating is Regenerated as Life per second while Focused", + ["type"] = "explicit", + }, + }, + ["6494_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", + }, + }, + ["6501_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", + }, + }, + ["6503_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", - }, - }, + ["max"] = 35, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_734823525", + ["text"] = "#% increased Evasion Rating while moving", + ["type"] = "explicit", + }, + }, ["6530_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", + }, + }, + ["6535_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", + }, + }, + ["6549_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", + }, + }, + ["6549_FasterBleedDamageMaven"] = { + ["Boots"] = { + ["max"] = 15, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3828375170", + ["text"] = "Bleeding you inflict deals Damage #% faster", + ["type"] = "explicit", + }, + }, + ["6549_FireAndChaosDamageResistance"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Belt"] = { + ["max"] = 15, + ["min"] = 9, + }, ["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"] = 9, + }, + ["Chest"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Gloves"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Helmet"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Quiver"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Shield"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_378817135", + ["text"] = "+#% to Fire and Chaos Resistances", + ["type"] = "explicit", + }, + }, + ["6550_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", + }, + }, + ["6550_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", + }, + }, + ["6554_FireAndChaosDamageResistance"] = { ["Amulet"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Belt"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Boots"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Chest"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Gloves"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Helmet"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Quiver"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Ring"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 16, + }, ["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"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_378817135", + ["text"] = "+#% to Fire and Chaos Resistances", + ["type"] = "explicit", + }, + }, + ["6576_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", + }, + }, + ["6591_GlobalFireGemLevel"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_599749213", - ["text"] = "+# to Level of all Fire Skill Gems", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_599749213", + ["text"] = "+# to Level of all Fire Skill Gems", + ["type"] = "explicit", + }, + }, ["6653_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"] = 25, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["6658_FocusCooldownRecovery"] = { + ["Boots"] = { + ["max"] = 35, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["6658_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", + }, + }, + ["6658_LuckyCriticalsDuringFocusCDR"] = { ["Belt"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3610263531", - ["text"] = "Focus has #% increased Cooldown Recovery Rate", - ["type"] = "explicit", - }, - }, - ["6653_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", + }, + }, + ["6658_MinionsRecoverMaximumLifeWhenYouFocusCDR"] = { + ["Gloves"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["6658_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", + }, + }, + ["6658_ShockYourselfOnFocusCDR"] = { + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["6658_SkillsCostNoManaWhileFocusedCDR"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["6658_TriggerSocketedSpellWhenYouFocusCDR"] = { ["Helmet"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3610263531", - ["text"] = "Focus has #% increased Cooldown Recovery Rate", - ["type"] = "explicit", - }, - }, - ["6696_GainRareMonsterModsOnKillChance"] = { - ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 15, - }, + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3610263531", + ["text"] = "Focus has #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["6701_GainRareMonsterModsOnKillChance"] = { + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 40, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2736829661", - ["text"] = "When you Kill a Rare Monster, #% chance to gain one of its Modifiers for 10 seconds", - ["type"] = "explicit", - }, - }, - ["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", + }, + }, + ["6717_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", + }, + }, + ["6717_GainAccuracyEqualToStrengthMaven"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1575519214", - ["text"] = "Gain Accuracy Rating equal to your Strength", - ["type"] = "explicit", - }, - }, - ["6725_GainArcaneSurgeOnCrit"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_446027070", - ["text"] = "#% chance to Gain Arcane Surge when you deal a Critical Strike", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1575519214", + ["text"] = "Gain Accuracy Rating equal to your Strength", + ["type"] = "explicit", + }, + }, ["6730_CastSpeedAndGainArcaneSurgeOnKillChance"] = { ["1HAxe"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, + ["1HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["1HSword"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_573223427", + ["text"] = "#% chance to gain Arcane Surge when you Kill an Enemy", + ["type"] = "explicit", + }, + }, + ["6730_GainArcaneSurgeOnCrit"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_446027070", + ["text"] = "#% chance to Gain Arcane Surge when you deal a Critical Strike", + ["type"] = "explicit", + }, + }, + ["6735_CastSpeedAndGainArcaneSurgeOnKillChance"] = { + ["1HAxe"] = { + ["max"] = 15, + ["min"] = 15, + }, ["1HMace"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 15, + }, ["1HSword"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 15, + }, ["2HAxe"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 15, + }, ["2HSword"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Dagger"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 15, + }, ["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"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_573223427", + ["text"] = "#% chance to gain Arcane Surge when you Kill an Enemy", + ["type"] = "explicit", + }, + }, + ["6751_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", + }, + }, + ["6751_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", - }, - }, + ["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"] = { ["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"] = 5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3032585258", + ["text"] = "#% chance to gain a Frenzy Charge on Critical Strike", + ["type"] = "explicit", + }, + }, + ["6760_CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent"] = { ["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"] = { - ["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", - }, - }, + ["max"] = 7, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3032585258", + ["text"] = "#% chance to gain a Frenzy Charge on Critical Strike", + ["type"] = "explicit", + }, + }, + ["6765_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", + }, + }, + ["6778_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"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1572897579", - ["text"] = "You have Onslaught during Soul Gain Prevention", - ["type"] = "explicit", - }, - }, - ["6812_GainRandomChargeOnBlock"] = { + ["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", + }, + }, + ["6785_GainOnslaughtDuringSoulGainPrevention"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1572897579", + ["text"] = "You have Onslaught during Soul Gain Prevention", + ["type"] = "explicit", + }, + }, + ["6817_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", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2199099676", + ["text"] = "Gain an Endurance, Frenzy or Power charge when you Block", + ["type"] = "explicit", + }, + }, ["6828_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", + }, + }, + ["6833_EnemyLifeLeechPermyriadWhileFocusedAndVaalPact"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2022851697", + ["text"] = "You have Vaal Pact while Focused", + ["type"] = "explicit", + }, + }, + ["6833_GainVaalPactWhileFocused"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2022851697", + ["text"] = "You have Vaal Pact while Focused", + ["type"] = "explicit", + }, + }, + ["6833_LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2022851697", + ["text"] = "You have Vaal Pact while Focused", + ["type"] = "explicit", + }, + }, + ["6879_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", + }, + }, + ["6888_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", + }, + }, + ["6889_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", + }, + }, + ["6891_ChanceToShockAddedDamage"] = { ["Ring"] = { - ["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, - }, - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Staff"] = { - ["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"] = 47, + ["min"] = 35.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_90012347", + ["text"] = "Adds # to # Lightning Damage against Shocked Enemies", + ["type"] = "explicit", + }, + }, + ["6907_GraceReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1803598623", + ["text"] = "Grace has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["6908_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", + }, + }, + ["6946_HatredReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1920370417", + ["text"] = "Hatred has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["6947_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", + }, + }, + ["7107_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", + }, + }, + ["7108_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", + }, + }, + ["7156_HitAndAilmentDamageCursedEnemies"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_539970476", + ["text"] = "#% increased Damage with Hits and Ailments against Cursed Enemies", + ["type"] = "explicit", + }, + }, + ["7175_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", - }, - }, + ["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"] = { ["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", + }, + }, + ["7244_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", + }, + }, + ["7247_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", + }, + }, + ["7254_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", + }, + }, + ["7297_GlobalIntelligenceGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_493812998", + ["text"] = "+# to Level of all Intelligence Skill Gems", + ["type"] = "explicit", + }, + }, + ["7352_LifeRecoveryRateMaven"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2592686757", - ["text"] = "Life Flasks gain # Charge every 3 seconds", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2592686757", + ["text"] = "Life Flasks gain # Charge every 3 seconds", + ["type"] = "explicit", + }, + }, ["7362_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"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3324747104", + ["text"] = "#% of Damage Leeched as Life while Focused", + ["type"] = "explicit", + }, + }, + ["7367_LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3324747104", + ["text"] = "#% of Damage Leeched as Life while Focused", + ["type"] = "explicit", + }, + }, + ["7368_EnemyLifeLeechPermyriadWhileFocusedAndVaalPact"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_497196601", + ["text"] = "#% of Damage Leeched by Enemy as Life while Focused", + ["type"] = "explicit", + }, + }, + ["7398_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", + }, + }, + ["73_AbyssJewelSocket"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, ["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"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["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", + }, + }, + ["7418_LifeRegenerationRatePercentageIfCorpseConsumedRecently"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1107877645", + ["text"] = "Regenerate #% of Life per second if you've Consumed a corpse Recently", + ["type"] = "explicit", + }, + }, + ["7429_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", + }, + }, + ["7431_LifeRegenerationRatePerMinuteWhileUsingFlask"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3500911418", + ["text"] = "Regenerate #% of Life per second during any Flask Effect", + ["type"] = "explicit", + }, + }, + ["7435_LightningAndChaosDamageResistance"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Belt"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Boots"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Chest"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Gloves"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Helmet"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Quiver"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["Shield"] = { + ["max"] = 15, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3465022881", + ["text"] = "+#% to Lightning and Chaos Resistances", + ["type"] = "explicit", + }, + }, + ["7438_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", + }, + }, + ["7438_LightningAilmentEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3081816887", + ["text"] = "#% increased Effect of Lightning Ailments", + ["type"] = "explicit", + }, + }, + ["7438_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", + }, + }, + ["7438_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", + }, + }, + ["7440_LightningAndChaosDamageResistance"] = { ["Amulet"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Belt"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Boots"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Chest"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Gloves"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Helmet"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Quiver"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 16, + }, ["Ring"] = { - ["max"] = 20, - ["min"] = 9, - }, + ["max"] = 20, + ["min"] = 16, + }, ["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"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3465022881", + ["text"] = "+#% to Lightning and Chaos Resistances", + ["type"] = "explicit", + }, + }, + ["7456_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", + }, + }, + ["7470_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", - }, - }, - ["758_CurseOnHitCriticalWeakness"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3924520095", - ["text"] = "Trigger Level # Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", - ["type"] = "explicit", - }, - }, - ["759_CurseOnHitPoachersMark"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3904501306", - ["text"] = "Trigger Level # Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", - ["type"] = "explicit", - }, - }, - ["761_CurseOnHitWarlordsMark"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2021420128", - ["text"] = "Trigger Level # Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark", - ["type"] = "explicit", - }, - }, - ["779_FireBurstOnHit"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1147690586", + ["text"] = "+# to Level of all Lightning Skill Gems", + ["type"] = "explicit", + }, + }, + ["7471_LightningSkillManaCostWhileShocked"] = { + ["inverseKey"] = "less", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3964669425", + ["text"] = "#% more Mana cost of Lightning Skills while Shocked", + ["type"] = "explicit", + }, + }, + ["763_CurseOnHitCriticalWeakness"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3382957283", + ["text"] = "Trigger Level # Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + }, + ["764_CurseOnHitPoachersMark"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2659463225", + ["text"] = "Trigger Level # Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + }, + ["766_CurseOnHitWarlordsMark"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2021420128", + ["text"] = "Trigger Level # Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + }, + ["784_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, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1621470436", - ["text"] = "Cast Level 20 Fire Burst on Hit", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1621470436", + ["text"] = "Cast Level 20 Fire Burst on Hit", + ["type"] = "explicit", + }, + }, ["7860_LocalIncreasedPhysicalDamageAndImpaleChance"] = { ["1HAxe"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 20, + ["min"] = 13, + }, ["1HMace"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 20, + ["min"] = 13, + }, ["1HSword"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 20, + ["min"] = 13, + }, ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 20, + ["min"] = 13, + }, ["2HAxe"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 20, + ["min"] = 13, + }, ["2HMace"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 20, + ["min"] = 13, + }, ["2HSword"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 20, + ["min"] = 13, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 20, + ["min"] = 13, + }, ["Bow"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 20, + ["min"] = 13, + }, ["Claw"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 20, + ["min"] = 13, + }, ["Dagger"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 20, + ["min"] = 13, + }, ["Staff"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 20, + ["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"] = 20, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["7865_LocalIncreasedPhysicalDamageAndImpaleChance"] = { ["1HAxe"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 25, + ["min"] = 21, + }, ["1HMace"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 25, + ["min"] = 21, + }, ["1HSword"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 25, + ["min"] = 21, + }, ["1HWeapon"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 25, + ["min"] = 21, + }, ["2HAxe"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 25, + ["min"] = 21, + }, ["2HMace"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 25, + ["min"] = 21, + }, ["2HSword"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 25, + ["min"] = 21, + }, ["2HWeapon"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 25, + ["min"] = 21, + }, ["Bow"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 25, + ["min"] = 21, + }, ["Claw"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 25, + ["min"] = 21, + }, ["Dagger"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 25, + ["min"] = 21, + }, ["Staff"] = { - ["max"] = 59, - ["min"] = 37, - }, + ["max"] = 25, + ["min"] = 21, + }, ["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"] = 25, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["7869_LocalBleedDamageOverTimeMultiplier"] = { ["1HAxe"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 59, + ["min"] = 37, + }, ["1HMace"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 59, + ["min"] = 37, + }, ["1HSword"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 59, + ["min"] = 37, + }, ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 59, + ["min"] = 37, + }, ["2HAxe"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 59, + ["min"] = 37, + }, ["2HMace"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 59, + ["min"] = 37, + }, ["2HSword"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 59, + ["min"] = 37, + }, ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 59, + ["min"] = 37, + }, ["Bow"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 59, + ["min"] = 37, + }, ["Claw"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 59, + ["min"] = 37, + }, ["Dagger"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 59, + ["min"] = 37, + }, ["Staff"] = { - ["max"] = 60, - ["min"] = 60, - }, + ["max"] = 59, + ["min"] = 37, + }, ["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"] = 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", + }, + }, + ["7875_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_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_1560880986", + ["text"] = "#% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", + ["type"] = "explicit", + }, + }, + ["7875_LocalChaosPenetration"] = { ["1HAxe"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 13, + ["min"] = 6, + }, ["1HMace"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 13, + ["min"] = 6, + }, ["1HSword"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 13, + ["min"] = 6, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 13, + ["min"] = 6, + }, ["2HAxe"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 13, + ["min"] = 6, + }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 13, + ["min"] = 6, + }, ["2HSword"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 13, + ["min"] = 6, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 13, + ["min"] = 6, + }, ["Bow"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 13, + ["min"] = 6, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 13, + ["min"] = 6, + }, ["Dagger"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 13, + ["min"] = 6, + }, ["Staff"] = { - ["max"] = 15, - ["min"] = 7, - }, + ["max"] = 13, + ["min"] = 6, + }, ["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"] = 13, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3762412853", + ["text"] = "Attacks with this Weapon Penetrate #% Chaos Resistance", + ["type"] = "explicit", + }, + }, + ["7876_LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon"] = { ["1HAxe"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 60, + ["min"] = 60, + }, ["1HMace"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 60, + ["min"] = 60, + }, ["1HSword"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 60, + ["min"] = 60, + }, ["1HWeapon"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 60, + ["min"] = 60, + }, ["2HAxe"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 60, + ["min"] = 60, + }, ["2HMace"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 60, + ["min"] = 60, + }, ["2HSword"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 60, + ["min"] = 60, + }, ["2HWeapon"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 60, + ["min"] = 60, + }, ["Bow"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 60, + ["min"] = 60, + }, ["Claw"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 60, + ["min"] = 60, + }, ["Dagger"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 60, + ["min"] = 60, + }, ["Staff"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 60, + ["min"] = 60, + }, ["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"] = 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", + }, + }, + ["7879_LocalChanceToIntimidateOnHit"] = { ["1HAxe"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 15, + ["min"] = 7, + }, ["1HMace"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 15, + ["min"] = 7, + }, ["1HSword"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 15, + ["min"] = 7, + }, ["1HWeapon"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 15, + ["min"] = 7, + }, ["2HAxe"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 15, + ["min"] = 7, + }, ["2HMace"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 15, + ["min"] = 7, + }, ["2HSword"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 15, + ["min"] = 7, + }, ["2HWeapon"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Bow"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Claw"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Dagger"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 15, + ["min"] = 7, + }, ["Staff"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["max"] = 15, + ["min"] = 7, + }, ["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"] = 15, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2089652545", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["type"] = "explicit", + }, + }, + ["7880_LocalChaosDamagePenetrationHybrid"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["1HMace"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["1HSword"] = { + ["max"] = 6, + ["min"] = 4, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 6, + ["min"] = 4, + }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2558253923", - ["text"] = "Hits with this Weapon have Culling Strike against Bleeding Enemies", - ["type"] = "explicit", - }, - }, - ["7892_PowerChargeOnManaSpent"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 6, + ["min"] = 4, + }, + ["2HMace"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HSword"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Bow"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Claw"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Dagger"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Staff"] = { + ["max"] = 6, + ["min"] = 4, + }, ["Wand"] = { - ["max"] = 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"] = { - ["Helmet"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1902595112", - ["text"] = "Nearby Enemies have +#% to Chaos Resistance", - ["type"] = "explicit", - }, - }, - ["7912_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"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3762412853", + ["text"] = "Attacks with this Weapon Penetrate #% Chaos Resistance", + ["type"] = "explicit", + }, + }, + ["7880_LocalChaosPenetration"] = { + ["1HAxe"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["1HMace"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["1HSword"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["1HWeapon"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["2HAxe"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["2HMace"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["2HSword"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["Bow"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["Claw"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["Dagger"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["Staff"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3762412853", + ["text"] = "Attacks with this Weapon Penetrate #% Chaos Resistance", + ["type"] = "explicit", + }, + }, + ["7889_CullingStrikeOnBleedingEnemiesUber"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2558253923", + ["text"] = "Hits with this Weapon have Culling Strike against Bleeding Enemies", + ["type"] = "explicit", + }, + }, + ["7897_PowerChargeOnManaSpent"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3269060224", + ["text"] = "Gain a Power Charge after Spending a total of 200 Mana", + ["type"] = "explicit", + }, + }, + ["7916_NearbyEnemyChaosDamageResistance"] = { ["Helmet"] = { - ["max"] = 9, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_639595152", - ["text"] = "Nearby Enemies take #% increased Elemental Damage", - ["type"] = "explicit", - }, - }, - ["7914_NearbyEnemyFireDamageResistance"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1902595112", + ["text"] = "Nearby Enemies have +#% to Chaos Resistance", + ["type"] = "explicit", + }, + }, + ["7917_NearbyEnemyColdDamageResistance"] = { ["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_2674336304", + ["text"] = "Nearby Enemies have +#% to Cold Resistance", + ["type"] = "explicit", + }, + }, + ["7918_NearbyEnemyElementalDamageTaken"] = { ["Helmet"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1849749435", - ["text"] = "Nearby Enemies have +#% to Lightning Resistance", - ["type"] = "explicit", - }, - }, - ["7918_NearbyEnemyPhysicalDamageTaken"] = { + ["max"] = 9, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_639595152", + ["text"] = "Nearby Enemies take #% increased Elemental Damage", + ["type"] = "explicit", + }, + }, + ["7919_NearbyEnemyFireDamageResistance"] = { ["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_3914021960", + ["text"] = "Nearby Enemies have +#% to Fire Resistance", + ["type"] = "explicit", + }, + }, ["791_SummonWolfOnKillOld"] = { ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1468606528", - ["text"] = "Trigger Level 10 Summon Spectral Wolf on Kill", - ["type"] = "explicit", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1468606528", + ["text"] = "Trigger Level 10 Summon Spectral Wolf on Kill", + ["type"] = "explicit", + }, + }, + ["7921_NearbyEnemyLightningDamageResistance"] = { + ["Helmet"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1849749435", + ["text"] = "Nearby Enemies have +#% to Lightning Resistance", + ["type"] = "explicit", + }, + }, + ["7923_NearbyEnemyPhysicalDamageTaken"] = { + ["Helmet"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_415837237", + ["text"] = "Nearby Enemies take #% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["792_LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance"] = { ["1HAxe"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["1HMace"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["1HSword"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HAxe"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HSword"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Dagger"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 10, + ["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"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_205619502", + ["text"] = "#% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", + ["type"] = "explicit", + }, + }, + ["7944_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", + }, + }, + ["7955_DexterityAndLocalItemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2016708976", + ["text"] = "+#% to Quality", + ["type"] = "explicit", + }, + }, + ["7955_IntelligenceAndLocalItemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2016708976", + ["text"] = "+#% to Quality", + ["type"] = "explicit", + }, + }, + ["7955_LocalAccuracyRatingAndLocalItemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2016708976", + ["text"] = "+#% to Quality", + ["type"] = "explicit", + }, + }, + ["7955_LocalAttackSpeedAndLocalItemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2016708976", + ["text"] = "+#% to Quality", + ["type"] = "explicit", + }, + }, + ["7955_LocalCriticalStrikeChanceAndLocalItemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2016708976", + ["text"] = "+#% to Quality", + ["type"] = "explicit", + }, + }, + ["7955_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", + }, + }, + ["7955_StrengthAndLocalItemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2016708976", + ["text"] = "+#% to Quality", + ["type"] = "explicit", + }, + }, + ["796_SummonWolfOnKillOld"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1468606528", + ["text"] = "Trigger Level 10 Summon Spectral Wolf on Kill", + ["type"] = "explicit", + }, + }, + ["797_LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance"] = { + ["1HAxe"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["1HMace"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["1HSword"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["2HAxe"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["2HSword"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Dagger"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_205619502", + ["text"] = "#% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", + ["type"] = "explicit", + }, + }, + ["7987_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"] = { - ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 35, - }, + ["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", + }, + }, + ["7989_LifeGainPerBlindedEnemyHit"] = { + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 35, + }, ["Claw"] = { - ["max"] = 50, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1649099067", - ["text"] = "Gain # Life per Blinded Enemy Hit with this Weapon", - ["type"] = "explicit", - }, - }, - ["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", + }, + }, + ["7993_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", + }, + }, + ["7993_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", - }, - }, - ["798_TriggerOnRareAssassinsMark"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3924520095", - ["text"] = "Trigger Level # Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", - ["type"] = "explicit", - }, - }, - ["8002_ChanceToPoisonSupported"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2763429652", + ["text"] = "#% chance to Maim on Hit", + ["type"] = "explicit", + }, + }, + ["8002_LocalIncreasedPhysicalDamageAndPoisonChance"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 13, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 13, + }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 13, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 13, + }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 13, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 13, + }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 13, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["max"] = 20, + ["min"] = 13, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 13, + }, ["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"] = 13, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% chance to Poison on Hit", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3885634897", + ["text"] = "#% chance to Poison on Hit (Local)", + ["type"] = "explicit", + }, + }, + ["8007_ChanceToPoisonSupported"] = { ["1HAxe"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 20, + ["min"] = 15, + }, ["1HMace"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 20, + ["min"] = 15, + }, ["1HSword"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 20, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 20, + ["min"] = 15, + }, ["2HAxe"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 20, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 20, + ["min"] = 15, + }, ["2HSword"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 20, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 20, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "explicit", + }, + }, + ["8007_LocalChanceToPoisonOnHit"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% chance to Poison on Hit", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3885634897", + ["text"] = "#% chance to Poison on Hit (Local)", + ["type"] = "explicit", + }, + }, + ["8007_LocalChanceToPoisonOnHitChaosDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% chance to Poison on Hit", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3885634897", + ["text"] = "#% chance to Poison on Hit (Local)", + ["type"] = "explicit", + }, + }, + ["8007_LocalIncreasedPhysicalDamageAndPoisonChance"] = { + ["1HAxe"] = { + ["max"] = 25, + ["min"] = 21, + }, + ["1HMace"] = { + ["max"] = 25, + ["min"] = 21, + }, + ["1HSword"] = { + ["max"] = 25, + ["min"] = 21, + }, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 21, + }, + ["2HAxe"] = { + ["max"] = 25, + ["min"] = 21, + }, + ["2HMace"] = { + ["max"] = 25, + ["min"] = 21, + }, + ["2HSword"] = { + ["max"] = 25, + ["min"] = 21, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 21, + }, ["Bow"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["Claw"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["Dagger"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["Staff"] = { - ["max"] = 25, - ["min"] = 13, - }, + ["max"] = 25, + ["min"] = 21, + }, ["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"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% chance to Poison on Hit", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3885634897", + ["text"] = "#% chance to Poison on Hit (Local)", + ["type"] = "explicit", + }, + }, + ["8007_PoisonDamageAndLocalChanceOnHit"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% chance to Poison on Hit", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3885634897", + ["text"] = "#% chance to Poison on Hit (Local)", + ["type"] = "explicit", + }, + }, + ["8014_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", + }, + }, + ["8022_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", - }, - }, - ["803_TriggerOnRarePoachersMark"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3904501306", - ["text"] = "Trigger Level # Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", - ["type"] = "explicit", - }, - }, - ["806_TriggerOnRareWarlordsMark"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2049471530", - ["text"] = "Trigger Level # Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark", - ["type"] = "explicit", - }, - }, - ["8148_MagicFlaskEffectNoAdjacentFlasks"] = { + ["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", + }, + }, + ["8024_MagicGhastlyJewelEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2526952837", + ["text"] = "#% increased Effect of Socketed Magic Ghastly Eye Jewels", + ["type"] = "explicit", + }, + }, + ["8025_MagicHypnoticJewelEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_654501336", + ["text"] = "#% increased Effect of Socketed Magic Hypnotic Eye Jewels", + ["type"] = "explicit", + }, + }, + ["8026_MagicMurderousJewelEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3949536301", + ["text"] = "#% increased Effect of Socketed Magic Murderous Eye Jewels", + ["type"] = "explicit", + }, + }, + ["8027_MagicSearchingJewelEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1938324031", + ["text"] = "#% increased Effect of Socketed Magic Searching Eye Jewels", + ["type"] = "explicit", + }, + }, + ["8028_RareGhastlyJewelEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1974290842", + ["text"] = "#% increased Effect of Socketed Rare Ghastly Eye Jewels", + ["type"] = "explicit", + }, + }, + ["8029_RareHypnoticJewelEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1337730278", + ["text"] = "#% increased Effect of Socketed Rare Hypnotic Eye Jewels", + ["type"] = "explicit", + }, + }, + ["8030_RareMurderousJewelEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1217940944", + ["text"] = "#% increased Effect of Socketed Rare Murderous Eye Jewels", + ["type"] = "explicit", + }, + }, + ["8031_RareSearchingJewelEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3524275808", + ["text"] = "#% increased Effect of Socketed Rare Searching Eye Jewels", + ["type"] = "explicit", + }, + }, + ["803_TriggerOnRareAssassinsMark"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3382957283", + ["text"] = "Trigger Level # Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + }, + ["808_TriggerOnRarePoachersMark"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2659463225", + ["text"] = "Trigger Level # Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + }, + ["811_TriggerOnRareWarlordsMark"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2049471530", + ["text"] = "Trigger Level # Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + }, + ["8153_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", + }, + }, + ["8159_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", + }, + }, + ["8166_MalevolenceReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3266567165", + ["text"] = "Malevolence has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["8167_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", + }, + }, + ["8180_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", + }, + }, + ["8184_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", + }, + }, + ["8191_ManaGainedOnBlock"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3041288981", + ["text"] = "Recover #% of your maximum Mana when you Block", + ["type"] = "explicit", + }, + }, + ["8191_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", + }, + }, + ["8196_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", + }, + }, + ["8199_ManaRegenerationRatePercentageIfCorpseConsumedRecently"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1309492287", + ["text"] = "Regenerate #% of Mana per second if you've Consumed a corpse Recently", + ["type"] = "explicit", + }, + }, + ["8204_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", + }, + }, + ["8216_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", - }, - }, - ["837_FlaskExtraMaxCharges"] = { - ["Flask"] = { - ["max"] = 35, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1437957544", - ["text"] = "+# to Maximum Charges", - ["type"] = "explicit", - }, - }, - ["840_FlaskFullRechargeOnHit"] = { + ["max"] = 70, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1327522346", + ["text"] = "#% increased Mana Regeneration Rate while moving", + ["type"] = "explicit", + }, + }, + ["842_FlaskExtraMaxCharges"] = { ["Flask"] = { - ["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"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2961372685", - ["text"] = "Recharges # Charge when you deal a Critical Strike", - ["type"] = "explicit", - }, - }, - ["842_FlaskChanceRechargeOnCrit"] = { + ["max"] = 35, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1437957544", + ["text"] = "+# to Maximum Charges", + ["type"] = "explicit", + }, + }, + ["845_FlaskFullRechargeOnHit"] = { ["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", - }, - }, - ["845_FlaskIncreasedChargesAdded"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1582728645", + ["text"] = "Gain # Charge when you are Hit by an Enemy", + ["type"] = "explicit", + }, + }, + ["846_FlaskFullRechargeOnCrit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2961372685", + ["text"] = "Recharges # Charge when you deal a Critical Strike", + ["type"] = "explicit", + }, + }, + ["847_FlaskChanceRechargeOnCrit"] = { ["Flask"] = { - ["max"] = 50, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3196823591", - ["text"] = "#% increased Charge Recovery", - ["type"] = "explicit", - }, - }, - ["845_FlaskIncreasedRecoveryReducedEffect"] = { + ["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", + }, + }, + ["850_FlaskIncreasedChargesAdded"] = { ["Flask"] = { - ["max"] = 66, - ["min"] = 37, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3196823591", - ["text"] = "#% increased Charge Recovery", - ["type"] = "explicit", - }, - }, - ["846_FlaskChargesUsed"] = { + ["max"] = 50, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3196823591", + ["text"] = "#% increased Charge Recovery", + ["type"] = "explicit", + }, + }, + ["850_FlaskIncreasedRecoveryReducedEffect"] = { ["Flask"] = { - ["max"] = -14, - ["min"] = -28, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_388617051", - ["text"] = "#% increased Charges per use", - ["type"] = "explicit", - }, - }, - ["846_FlaskIncreasedHealingCharges"] = { + ["max"] = 66, + ["min"] = 37, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3196823591", + ["text"] = "#% increased Charge Recovery", + ["type"] = "explicit", + }, + }, + ["851_FlaskChargesUsed"] = { ["Flask"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_388617051", - ["text"] = "#% increased Charges per use", - ["type"] = "explicit", - }, - }, - ["849_FlaskExtraLifeCostsMana"] = { + ["max"] = -14, + ["min"] = -28, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_388617051", + ["text"] = "#% increased Charges per use", + ["type"] = "explicit", + }, + }, + ["851_FlaskIncreasedHealingCharges"] = { ["Flask"] = { - ["max"] = 60, - ["min"] = 35, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1261982764", - ["text"] = "#% increased Life Recovered", - ["type"] = "explicit", - }, - }, - ["850_FlaskHealsMinions"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_388617051", + ["text"] = "#% increased Charges per use", + ["type"] = "explicit", + }, + }, + ["854_FlaskExtraLifeCostsMana"] = { ["Flask"] = { - ["max"] = 200, - ["min"] = 100, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2416869319", - ["text"] = "Grants #% of Life Recovery to Minions", - ["type"] = "explicit", - }, - }, - ["853_FlaskExtraManaCostsLife"] = { + ["max"] = 60, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1261982764", + ["text"] = "#% increased Life Recovered", + ["type"] = "explicit", + }, + }, + ["855_FlaskHealsMinions"] = { ["Flask"] = { - ["max"] = 70, - ["min"] = 41, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1811130680", - ["text"] = "#% increased Mana Recovered", - ["type"] = "explicit", - }, - }, - ["854_FlaskEffectNotRemovedOnFullManaReducedRecovery"] = { + ["max"] = 200, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2416869319", + ["text"] = "Grants #% of Life Recovery to Minions", + ["type"] = "explicit", + }, + }, + ["858_FlaskExtraManaCostsLife"] = { ["Flask"] = { - ["max"] = -66, - ["min"] = -66, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", - ["type"] = "explicit", - }, - }, - ["854_FlaskFullInstantRecovery"] = { + ["max"] = 70, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1811130680", + ["text"] = "#% increased Mana Recovered", + ["type"] = "explicit", + }, + }, + ["859_FlaskEffectNotRemovedOnFullManaReducedRecovery"] = { ["Flask"] = { - ["max"] = -66, - ["min"] = -66, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", - ["type"] = "explicit", - }, - }, - ["854_FlaskIncreasedHealingCharges"] = { + ["max"] = -66, + ["min"] = -66, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, + ["859_FlaskFullInstantRecovery"] = { ["Flask"] = { - ["max"] = 50, - ["min"] = 21, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", - ["type"] = "explicit", - }, - }, - ["854_FlaskIncreasedRecoveryAmount"] = { + ["max"] = -66, + ["min"] = -66, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, + ["859_FlaskIncreasedHealingCharges"] = { ["Flask"] = { - ["max"] = 70, - ["min"] = 41, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", - ["type"] = "explicit", - }, - }, - ["854_FlaskInstantRecoveryOnLowLife"] = { + ["max"] = 50, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, + ["859_FlaskIncreasedRecoveryAmount"] = { ["Flask"] = { - ["max"] = -11, - ["min"] = -30, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", - ["type"] = "explicit", - }, - }, - ["854_FlaskManaRecoveryAtEnd"] = { + ["max"] = 70, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, + ["859_FlaskInstantRecoveryOnLowLife"] = { ["Flask"] = { - ["max"] = 66, - ["min"] = 66, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", - ["type"] = "explicit", - }, - }, - ["854_FlaskPartialInstantRecovery"] = { + ["max"] = -11, + ["min"] = -30, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, + ["859_FlaskManaRecoveryAtEnd"] = { ["Flask"] = { - ["max"] = -36, - ["min"] = -55, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", - ["type"] = "explicit", - }, - }, - ["855_FlaskIncreasedRecoveryAmount"] = { + ["max"] = 66, + ["min"] = 66, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, + ["859_FlaskPartialInstantRecovery"] = { ["Flask"] = { - ["max"] = -33, - ["min"] = -33, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_173226756", - ["text"] = "#% increased Recovery rate", - ["type"] = "explicit", - }, - }, - ["855_FlaskIncreasedRecoverySpeed"] = { + ["max"] = -36, + ["min"] = -55, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, + ["860_FlaskIncreasedRecoveryAmount"] = { ["Flask"] = { - ["max"] = 70, - ["min"] = 41, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_173226756", - ["text"] = "#% increased Recovery rate", - ["type"] = "explicit", - }, - }, - ["855_FlaskPartialInstantRecovery"] = { + ["max"] = -33, + ["min"] = -33, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_173226756", + ["text"] = "#% increased Recovery rate", + ["type"] = "explicit", + }, + }, + ["860_FlaskIncreasedRecoverySpeed"] = { ["Flask"] = { - ["max"] = 135, - ["min"] = 135, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_173226756", - ["text"] = "#% increased Recovery rate", - ["type"] = "explicit", - }, - }, - ["857_FlaskEffectReducedDuration"] = { + ["max"] = 70, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_173226756", + ["text"] = "#% increased Recovery rate", + ["type"] = "explicit", + }, + }, + ["860_FlaskPartialInstantRecovery"] = { ["Flask"] = { - ["max"] = -23, - ["min"] = -38, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1256719186", - ["text"] = "#% increased Duration", - ["type"] = "explicit", - }, - }, - ["857_FlaskUtilityIncreasedDuration"] = { + ["max"] = 135, + ["min"] = 135, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_173226756", + ["text"] = "#% increased Recovery rate", + ["type"] = "explicit", + }, + }, + ["862_FlaskEffectReducedDuration"] = { ["Flask"] = { - ["max"] = 40, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1256719186", - ["text"] = "#% increased Duration", - ["type"] = "explicit", - }, - }, - ["858_FlaskBleedingAndCorruptedBloodImmunityDuringEffect"] = { + ["max"] = -23, + ["min"] = -38, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1256719186", + ["text"] = "#% increased Duration", + ["type"] = "explicit", + }, + }, + ["862_FlaskUtilityIncreasedDuration"] = { ["Flask"] = { - ["max"] = -35, - ["min"] = -49, - }, - ["inverseKey"] = "less", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1506355899", - ["text"] = "#% more Duration", - ["type"] = "explicit", - }, - }, - ["858_FlaskFreezeAndChillImmunityDuringEffect"] = { + ["max"] = 40, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1256719186", + ["text"] = "#% increased Duration", + ["type"] = "explicit", + }, + }, + ["863_FlaskBleedingAndCorruptedBloodImmunityDuringEffect"] = { ["Flask"] = { - ["max"] = -35, - ["min"] = -49, - }, - ["inverseKey"] = "less", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1506355899", - ["text"] = "#% more Duration", - ["type"] = "explicit", - }, - }, - ["858_FlaskIgniteImmunityDuringEffect"] = { + ["max"] = -35, + ["min"] = -49, + }, + ["inverseKey"] = "less", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1506355899", + ["text"] = "#% more Duration", + ["type"] = "explicit", + }, + }, + ["863_FlaskFreezeAndChillImmunityDuringEffect"] = { ["Flask"] = { - ["max"] = -35, - ["min"] = -49, - }, - ["inverseKey"] = "less", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1506355899", - ["text"] = "#% more Duration", - ["type"] = "explicit", - }, - }, - ["858_FlaskPoisonImmunityDuringEffect"] = { + ["max"] = -35, + ["min"] = -49, + }, + ["inverseKey"] = "less", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1506355899", + ["text"] = "#% more Duration", + ["type"] = "explicit", + }, + }, + ["863_FlaskIgniteImmunityDuringEffect"] = { ["Flask"] = { - ["max"] = -35, - ["min"] = -49, - }, - ["inverseKey"] = "less", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1506355899", - ["text"] = "#% more Duration", - ["type"] = "explicit", - }, - }, - ["858_FlaskShockImmunityDuringEffect"] = { + ["max"] = -35, + ["min"] = -49, + }, + ["inverseKey"] = "less", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1506355899", + ["text"] = "#% more Duration", + ["type"] = "explicit", + }, + }, + ["863_FlaskPoisonImmunityDuringEffect"] = { ["Flask"] = { - ["max"] = -35, - ["min"] = -49, - }, - ["inverseKey"] = "less", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1506355899", - ["text"] = "#% more Duration", - ["type"] = "explicit", - }, - }, - ["859_FlaskIncreasedRecoveryOnLowLife"] = { + ["max"] = -35, + ["min"] = -49, + }, + ["inverseKey"] = "less", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1506355899", + ["text"] = "#% more Duration", + ["type"] = "explicit", + }, + }, + ["863_FlaskShockImmunityDuringEffect"] = { ["Flask"] = { - ["max"] = 130, - ["min"] = 101, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_886931978", - ["text"] = "#% more Recovery if used while on Low Life", - ["type"] = "explicit", - }, - }, - ["860_FlaskInstantRecoveryOnLowLife"] = { + ["max"] = -35, + ["min"] = -49, + }, + ["inverseKey"] = "less", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1506355899", + ["text"] = "#% more Duration", + ["type"] = "explicit", + }, + }, + ["864_FlaskIncreasedRecoveryOnLowLife"] = { ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3812107348", - ["text"] = "Instant Recovery when on Low Life", - ["type"] = "explicit", - }, - }, - ["861_FlaskPartialInstantRecovery"] = { + ["max"] = 130, + ["min"] = 101, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_886931978", + ["text"] = "#% more Recovery if used while on Low Life", + ["type"] = "explicit", + }, + }, + ["865_FlaskInstantRecoveryOnLowLife"] = { ["Flask"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2503377690", - ["text"] = "#% of Recovery applied Instantly", - ["type"] = "explicit", - }, - }, - ["865_FlaskManaRecoveryAtEnd"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3812107348", + ["text"] = "Instant Recovery when on Low Life", + ["type"] = "explicit", + }, + }, + ["866_FlaskPartialInstantRecovery"] = { ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4204954479", - ["text"] = "Mana Recovery occurs instantly at the end of Effect", - ["type"] = "explicit", - }, - }, - ["866_FlaskFullInstantRecovery"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2503377690", + ["text"] = "#% of Recovery applied Instantly", + ["type"] = "explicit", + }, + }, + ["870_FlaskManaRecoveryAtEnd"] = { ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1526933524", - ["text"] = "Instant Recovery", - ["type"] = "explicit", - }, - }, - ["869_FlaskExtraManaCostsLife"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4204954479", + ["text"] = "Mana Recovery occurs instantly at the end of Effect", + ["type"] = "explicit", + }, + }, + ["871_FlaskFullInstantRecovery"] = { ["Flask"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_959641748", - ["text"] = "Removes #% of Mana Recovered from Life when used", - ["type"] = "explicit", - }, - }, - ["871_FlaskExtraLifeCostsMana"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1526933524", + ["text"] = "Instant Recovery", + ["type"] = "explicit", + }, + }, + ["874_FlaskExtraManaCostsLife"] = { ["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", - }, - }, - ["897_FlaskCurseImmunity"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_959641748", + ["text"] = "Removes #% of Mana Recovered from Life when used", + ["type"] = "explicit", + }, + }, + ["8766_MapMonsterPacksVaalMapWorlds"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2609768284", + ["text"] = "Area is inhabited by the Vaal", + ["type"] = "explicit", + }, + }, + ["876_FlaskExtraLifeCostsMana"] = { ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3895393544", - ["text"] = "Removes Curses on use", - ["type"] = "explicit", - }, - }, - ["899_LocalLifeFlaskAdditionalLifeRecovery"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_648019518", + ["text"] = "Removes #% of Life Recovered from Mana when used", + ["type"] = "explicit", + }, + }, + ["902_FlaskCurseImmunity"] = { ["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", - }, - }, - ["906_LocalFlaskImmuneToMaimAndHinder"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3895393544", + ["text"] = "Removes Curses on use", + ["type"] = "explicit", + }, + }, + ["904_LocalLifeFlaskAdditionalLifeRecovery"] = { ["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", - }, - }, - ["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", - }, - }, - ["908_FlaskDispellsPoison"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3596333054", - ["text"] = "Grants Immunity to Poison for 4 seconds if used while Poisoned", - ["type"] = "explicit", - }, - }, - ["909_FlaskPoisonImmunity"] = { + ["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", + }, + }, + ["9118_FortifyEffectWhileFocused"] = { + ["Chest"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_922014346", + ["text"] = "+# to maximum Fortification while Focused", + ["type"] = "explicit", + }, + }, + ["911_LocalFlaskImmuneToMaimAndHinder"] = { ["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", - }, - }, - ["910_FlaskRemovesShock"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1823903967", - ["text"] = "Grants Immunity to Shock for 4 seconds if used while Shocked", - ["type"] = "explicit", - }, - }, - ["9117_FortifyEffect"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4003593289", + ["text"] = "Grants Immunity to Hinder for # seconds if used while Hindered", + ["type"] = "explicit", + }, + }, + ["9121_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", + }, + }, + ["9121_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", + }, + }, + ["9122_FortifyEffectWhileFocused"] = { ["Chest"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_922014346", - ["text"] = "+# to maximum Fortification while Focused", - ["type"] = "explicit", - }, - }, - ["911_FlaskShockImmunity"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_922014346", + ["text"] = "+# to maximum Fortification while Focused", + ["type"] = "explicit", + }, + }, + ["912_LocalFlaskImmuneToMaimAndHinder"] = { ["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", - }, - }, - ["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"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4232582040", + ["text"] = "Grants Immunity to Maim for # seconds if used while Maimed", + ["type"] = "explicit", + }, + }, + ["9137_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", - }, - }, - ["913_LocalManaFlaskHinderNearbyEnemies"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1195319608", + ["text"] = "#% increased Energy Shield from Equipped Body Armour", + ["type"] = "explicit", + }, + }, + ["913_FlaskDispellsPoison"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_542375676", + ["text"] = "Grants Immunity to Poison for # seconds if used while Poisoned", + ["type"] = "explicit", + }, + }, + ["914_FlaskPoisonImmunity"] = { + ["Flask"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_542375676", + ["text"] = "Grants Immunity to Poison for # seconds if used while Poisoned", + ["type"] = "explicit", + }, + }, + ["915_FlaskRemovesShock"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3854439683", + ["text"] = "Grants Immunity to Shock for # seconds if used while Shocked", + ["type"] = "explicit", + }, + }, + ["9164_LifeAddedAsEnergyShield"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_67280387", + ["text"] = "Gain #% of Maximum Life as Extra Maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["9165_MaximumLifeConvertedToEnergyShield"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2458962764", + ["text"] = "#% of Maximum Life Converted to Energy Shield", + ["type"] = "explicit", + }, + }, + ["9166_CorpseLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_586568910", + ["text"] = "Corpses you Spawn have #% increased Maximum Life", + ["type"] = "explicit", + }, + }, + ["916_FlaskShockImmunity"] = { ["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"] = { - ["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"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3854439683", + ["text"] = "Grants Immunity to Shock for # seconds if used while Shocked", + ["type"] = "explicit", + }, + }, + ["9178_MaxBlades"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3954265754", + ["text"] = "Skills that leave Lingering Blades have +# to Maximum Lingering Blades", + ["type"] = "explicit", + }, + }, + ["917_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", + }, + }, + ["9188_StrikeSkillsAdditionalTarget"] = { + ["Gloves"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1661253443", + ["text"] = "Non-Vaal Strike Skills target # additional nearby Enemy", + ["type"] = "explicit", + }, + }, + ["918_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", + }, + }, + ["9194_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", + }, + }, + ["9198_MovementSkillsFortifyOnHitChance"] = { ["2HSword"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_59547568", - ["text"] = "Hits with Melee Movement Skills have #% chance to Fortify", - ["type"] = "explicit", - }, - }, - ["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", - }, - }, + ["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", + }, + }, + ["9221_MineAreaOfEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2228913626", + ["text"] = "Skills used by Mines have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, ["9224_CriticalChanceAndAddedChaosDamageIfHaveCritRecently"] = { ["Gloves"] = { - ["max"] = 28.5, - ["min"] = 12, - }, + ["max"] = 20, + ["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"] = { - ["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"] = { - ["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"] = 20, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2523334466", + ["text"] = "Adds # to # Chaos Damage if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["9224_MineDetonationSpeedAndDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3085465082", + ["text"] = "Mines have #% increased Detonation Speed", + ["type"] = "explicit", + }, + }, + ["9228_CriticalChanceAndAddedChaosDamageIfHaveCritRecently"] = { + ["Gloves"] = { + ["max"] = 28.5, + ["min"] = 25, + }, + ["Quiver"] = { + ["max"] = 28.5, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2523334466", + ["text"] = "Adds # to # Chaos Damage if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["9234_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", + }, + }, + ["9235_ColdDamageToAttacksPerDexterity"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_769783486", + ["text"] = "Adds # to # Cold Damage to Attacks per 10 Dexterity", + ["type"] = "explicit", + }, + }, + ["9239_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", + }, + }, + ["9241_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"] = { - ["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"] = 5.5, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1073447019", + ["text"] = "# to # Fire Damage per Endurance Charge", + ["type"] = "explicit", + }, + }, + ["9243_FireDamageToAttacksPerStrength"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_68673913", + ["text"] = "Adds # to # Fire Damage to Attacks per 10 Strength", + ["type"] = "explicit", + }, + }, + ["9245_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", + }, + }, + ["9246_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"] = { - ["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"] = { - ["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"] = { - ["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"] = { - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 5, - }, + ["max"] = 6.5, + ["min"] = 3.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1917107159", + ["text"] = "# to # Lightning Damage per Power Charge", + ["type"] = "explicit", + }, + }, + ["9247_AddedLightningDamagePerShockedEnemyKilled"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4222857095", + ["text"] = "Adds # to # Lightning Damage for each Shocked Enemy you've Killed Recently", + ["type"] = "explicit", + }, + }, + ["9248_LightningDamageToAttacksPerIntelligence"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3168149399", + ["text"] = "Adds # to # Lightning Damage to Attacks per 10 Intelligence", + ["type"] = "explicit", + }, + }, + ["9251_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", + }, + }, + ["9253_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", + }, + }, + ["9254_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", + }, + }, + ["9267_MinionAccuracyRatingFlat"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1661151735", + ["text"] = "Minions have +# to Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["9267_MinionFlatAccuracyRating"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1661151735", + ["text"] = "Minions have +# to Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["9269_MinionAccuracyRating"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["9269_MinionAccuracyRatingForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["9273_MinionAttackSpeedAndCastSpeed"] = { + ["1HWeapon"] = { + ["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", + }, + }, + ["9274_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", + }, + }, + ["9280_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", + }, + }, + ["9281_MinionFireConvertToChaos"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2727256287", + ["text"] = "Minions convert #% of Fire Damage to Chaos Damage", + ["type"] = "explicit", + }, + }, + ["9283_MinionDamageOnWeaponDoubleDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_755922799", + ["text"] = "Minions have #% chance to deal Double Damage", + ["type"] = "explicit", + }, + }, + ["9288_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"] = { - ["1HWeapon"] = { - ["max"] = 109, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3945908658", + ["text"] = "Minions have #% chance to Ignite", + ["type"] = "explicit", + }, + }, + ["9291_MinionCooldownRecovery"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1691403182", + ["text"] = "Minions have #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["9292_MinionCriticalStrikeChanceIncrease"] = { + ["1HWeapon"] = { + ["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"] = { - ["1HWeapon"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["max"] = 109, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_491450213", + ["text"] = "Minions have #% increased Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["9294_MinionCriticalStrikeMultiplier"] = { + ["1HWeapon"] = { + ["max"] = 38, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 38, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1854213750", - ["text"] = "Minions have +#% to Critical Strike Multiplier", - ["type"] = "explicit", - }, - }, - ["9296_MinionDamageVSAbyssMonsters"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1854213750", + ["text"] = "Minions have +#% to Critical Strike Multiplier", + ["type"] = "explicit", + }, + }, + ["9300_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", + }, + }, + ["9318_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", + }, + }, + ["9321_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", + }, + }, + ["9338_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", - }, - }, - ["935_FlaskEffectReducedDuration"] = { - ["Flask"] = { - ["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", - }, - }, + ["max"] = 8, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2323739383", + ["text"] = "Minions have #% chance to Hinder Enemies on Hit with Spells", + ["type"] = "explicit", + }, + }, + ["9342_RecentMinionCrit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3913090641", + ["text"] = "Minions created Recently have #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + }, ["9366_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"] = { - ["Gloves"] = { - ["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", - }, - }, - ["937_FlaskBuffEvasionWhileHealing"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3500359417", + ["text"] = "Minions Recover #% of their Life when you Focus", + ["type"] = "explicit", + }, + }, + ["9370_MinionsRecoverMaximumLifeWhenYouFocusCDR"] = { + ["Gloves"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3500359417", + ["text"] = "Minions Recover #% of their Life when you Focus", + ["type"] = "explicit", + }, + }, + ["940_FlaskEffectReducedDuration"] = { ["Flask"] = { - ["max"] = 60, - ["min"] = 41, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_299054775", - ["text"] = "#% increased Evasion Rating during Effect", - ["type"] = "explicit", - }, - }, - ["939_FlaskBuffWardWhileHealing"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2448920197", + ["text"] = "#% increased effect", + ["type"] = "explicit", + }, + }, + ["940_FlaskIncreasedRecoveryReducedEffect"] = { ["Flask"] = { - ["max"] = 30, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2891175306", - ["text"] = "#% increased Ward during Effect", - ["type"] = "explicit", - }, - }, - ["9411_MovementSpeedPerNearbyEnemy"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2448920197", + ["text"] = "#% increased effect", + ["type"] = "explicit", + }, + }, + ["9410_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", + }, + }, + ["9417_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", + }, + }, + ["941_FlaskBuffArmourWhileHealing"] = { + ["Flask"] = { + ["max"] = 60, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1693613464", + ["text"] = "#% increased Armour during Effect", + ["type"] = "explicit", + }, + }, + ["9420_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", - }, - }, - ["943_FlaskBuffAccuracyWhileHealing"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3337754340", - ["text"] = "#% increased Accuracy Rating during Effect", - ["type"] = "explicit", - }, - }, - ["944_FlaskBuffAttackSpeedWhileHealing"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_968369591", - ["text"] = "#% increased Attack Speed during Effect", - ["type"] = "explicit", - }, - }, - ["945_FlaskBuffCastSpeedWhileHealing"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3256116097", - ["text"] = "#% increased Cast Speed during Effect", - ["type"] = "explicit", - }, - }, - ["9463_FortificationDamageAura"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4187518631", - ["text"] = "Nearby Enemies take #% increased Physical Damage per two Fortification on you", - ["type"] = "explicit", - }, - }, - ["946_FlaskBuffMovementSpeedWhileHealing"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3854949926", + ["text"] = "#% increased Movement Speed if you haven't taken Damage Recently", + ["type"] = "explicit", + }, + }, + ["942_FlaskBuffEvasionWhileHealing"] = { ["Flask"] = { - ["max"] = 14, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3182498570", - ["text"] = "#% increased Movement Speed during Effect", - ["type"] = "explicit", - }, - }, - ["947_FlaskBuffStunRecoveryWhileHealing"] = { + ["max"] = 60, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_299054775", + ["text"] = "#% increased Evasion Rating during Effect", + ["type"] = "explicit", + }, + }, + ["9433_MovementSpeedOnBurningChilledShockedGround"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1521863824", + ["text"] = "#% increased Movement speed while on Burning, Chilled or Shocked ground", + ["type"] = "explicit", + }, + }, + ["944_FlaskBuffWardWhileHealing"] = { ["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"] = 30, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891175306", + ["text"] = "#% increased Ward during Effect", + ["type"] = "explicit", + }, + }, + ["9462_FortificationDamageAura"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4187518631", + ["text"] = "Nearby Enemies take #% increased Physical Damage per two Fortification on you", + ["type"] = "explicit", + }, + }, + ["9485_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", + }, + }, + ["9487_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", + }, + }, + ["9487_SpellDamageAndNonChaosDamageToAddAsChaosDamage"] = { ["1HAxe"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 5, + }, ["1HMace"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 5, + }, ["1HSword"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 5, + }, ["2HAxe"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 5, + }, ["2HSword"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Bow"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Claw"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 10, - ["min"] = 3, - }, + ["max"] = 10, + ["min"] = 5, + }, ["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", - }, - }, - ["948_FlaskBuffResistancesWhileHealing"] = { - ["Flask"] = { - ["max"] = 20, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_962725504", - ["text"] = "#% additional Elemental Resistances during Effect", - ["type"] = "explicit", - }, - }, - ["9499_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"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2063695047", + ["text"] = "Gain #% of Non-Chaos Damage as extra Chaos Damage", + ["type"] = "explicit", + }, + }, + ["9487_WeaponSpellDamageAddedAsChaos"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2063695047", + ["text"] = "Gain #% of Non-Chaos Damage as extra Chaos Damage", + ["type"] = "explicit", + }, + }, + ["9488_SpellDamageAndNonChaosDamageToAddAsChaosDamage"] = { + ["1HAxe"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["1HMace"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["1HSword"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["1HWeapon"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["2HAxe"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["2HMace"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["2HSword"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["2HWeapon"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["Claw"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["Dagger"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["Staff"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["Wand"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2063695047", + ["text"] = "Gain #% of Non-Chaos Damage as extra Chaos Damage", + ["type"] = "explicit", + }, + }, + ["948_FlaskBuffAccuracyWhileHealing"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3337754340", + ["text"] = "#% increased Accuracy Rating during Effect", + ["type"] = "explicit", + }, + }, + ["9498_IncreasedAilmentDurationMaven"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 13, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_782230869", + ["text"] = "#% increased Effect of Non-Damaging Ailments", + ["type"] = "explicit", + }, + }, + ["9498_IncreasedAilmentEffectOnEnemies"] = { ["Amulet"] = { - ["max"] = 40, - ["min"] = 15, - }, + ["max"] = 40, + ["min"] = 15, + }, ["Boots"] = { - ["max"] = 60, - ["min"] = 16, - }, + ["max"] = 60, + ["min"] = 30, + }, ["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", - }, - }, - ["950_FlaskBuffSpellEnergyShieldLeechWhileHealing"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_782230869", + ["text"] = "#% increased Effect of Non-Damaging Ailments", + ["type"] = "explicit", + }, + }, + ["9499_IncreasedAilmentEffectOnEnemies"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 16, + }, + ["Boots"] = { + ["max"] = 30, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_782230869", + ["text"] = "#% increased Effect of Non-Damaging Ailments", + ["type"] = "explicit", + }, + }, + ["949_FlaskBuffAttackSpeedWhileHealing"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_968369591", + ["text"] = "#% increased Attack Speed during Effect", + ["type"] = "explicit", + }, + }, + ["950_FlaskBuffCastSpeedWhileHealing"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3256116097", + ["text"] = "#% increased Cast Speed during Effect", + ["type"] = "explicit", + }, + }, + ["951_FlaskBuffMovementSpeedWhileHealing"] = { ["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", - }, - }, - ["951_FlaskBuffAttackLifeLeechWhileHealing"] = { + ["max"] = 14, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3182498570", + ["text"] = "#% increased Movement Speed during Effect", + ["type"] = "explicit", + }, + }, + ["9527_AdditionalTrapsThrownSupported"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1220800126", + ["text"] = "Skills which Throw Traps throw up to 1 additional Trap", + ["type"] = "explicit", + }, + }, + ["952_FlaskBuffStunRecoveryWhileHealing"] = { ["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"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1220800126", - ["text"] = "Skills which Throw Traps throw up to 1 additional Trap", - ["type"] = "explicit", - }, - }, - ["952_FlaskBuffLifeLeechPermyriadWhileHealing"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3111255591", - ["text"] = "#% of Physical Attack Damage Leeched as Life during Effect", - ["type"] = "explicit", - }, - }, - ["9532_GainEnduranceChargeWhileStationary"] = { + ["max"] = 80, + ["min"] = 51, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3479987487", + ["text"] = "#% increased Block and Stun Recovery during Effect", + ["type"] = "explicit", + }, + }, + ["9531_GainEnduranceChargeWhileStationary"] = { ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2156210979", - ["text"] = "Gain an Endurance Charge every 4 seconds while Stationary", - ["type"] = "explicit", - }, - }, - ["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", - }, - }, - ["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"] = { - ["AbyssJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2810434465", - ["text"] = "Gain #% of Physical Damage as Extra Fire Damage if you've dealt a Critical Strike Recently", - ["type"] = "explicit", - }, - }, - ["963_FlaskBuffAvoidChillFreeze"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2156210979", + ["text"] = "Gain an Endurance Charge every 4 seconds while Stationary", + ["type"] = "explicit", + }, + }, + ["953_FlaskBuffResistancesWhileHealing"] = { ["Flask"] = { - ["max"] = 55, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1619168299", - ["text"] = "#% chance to Avoid being Chilled during Effect", - ["type"] = "explicit", - }, - }, - ["964_FlaskBuffAvoidChillFreeze"] = { + ["max"] = 20, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_962725504", + ["text"] = "#% additional Elemental Resistances during Effect", + ["type"] = "explicit", + }, + }, + ["954_FlaskBuffLifeLeechWhileHealing"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3111255591", + ["text"] = "#% of Physical Attack Damage Leeched as Life during Effect", + ["type"] = "explicit", + }, + }, + ["9551_OfferingDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2957407601", + ["text"] = "Offering Skills have #% increased Duration", + ["type"] = "explicit", + }, + }, + ["955_FlaskBuffSpellEnergyShieldLeechWhileHealing"] = { ["Flask"] = { - ["max"] = 55, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_475518267", - ["text"] = "#% chance to Avoid being Frozen 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", + }, + }, + ["956_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", + }, + }, + ["957_FlaskBuffLifeLeechPermyriadWhileHealing"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3111255591", + ["text"] = "#% of Physical Attack Damage Leeched as Life during Effect", + ["type"] = "explicit", + }, + }, + ["959_FlaskBuffManaLeechPermyriadWhileHealing"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_374891408", + ["text"] = "#% of Physical Attack Damage Leeched as Mana during Effect", + ["type"] = "explicit", + }, + }, + ["9609_EnemiesBlockedAreIntimidated"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2930706364", + ["text"] = "Permanently Intimidate Enemies on Block", + ["type"] = "explicit", + }, + }, + ["960_FlaskBuffKnockbackWhileHealing"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_251342217", + ["text"] = "Adds Knockback to Melee Attacks during Effect", + ["type"] = "explicit", + }, + }, + ["9613_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", + }, + }, + ["9632_PhysicalDamageAddedAsExtraFireIfCriticalStrikeDealtRecently"] = { + ["AbyssJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2810434465", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage if you've dealt a Critical Strike Recently", + ["type"] = "explicit", + }, + }, + ["9650_PhysicalDamageReductionRatingDuringSoulGainPrevention"] = { + ["Chest"] = { + ["max"] = 4000, + ["min"] = 3201, + }, + ["Shield"] = { + ["max"] = 4000, + ["min"] = 3201, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1539825365", + ["text"] = "+# to Armour during Soul Gain Prevention", + ["type"] = "explicit", + }, + }, ["9651_PhysicalDamageReductionRatingDuringSoulGainPrevention"] = { ["Chest"] = { - ["max"] = 4000, - ["min"] = 1000, - }, + ["max"] = 3000, + ["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"] = 3000, + ["min"] = 1000, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1539825365", + ["text"] = "+# to Armour during Soul Gain Prevention", + ["type"] = "explicit", + }, + }, + ["9651_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", - }, - }, - ["965_FlaskBuffAvoidIgnite"] = { - ["Flask"] = { - ["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"] = 1000, + ["min"] = 1000, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2368149582", + ["text"] = "+# to Armour if you've Hit an Enemy Recently", + ["type"] = "explicit", + }, + }, + ["9669_ReducedPhysicalReflectTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_129035625", + ["text"] = "You and your Minions take #% reduced Reflected Physical Damage", + ["type"] = "explicit", + }, + }, + ["9669_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", + }, + }, + ["9670_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_FlaskBuffAvoidChillFreeze"] = { + ["Flask"] = { + ["max"] = 55, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1053326368", + ["text"] = "#% chance to Avoid being Chilled during Effect", + ["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"] = 55, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_603134774", + ["text"] = "#% of Damage from your Hits cannot be Reflected during Effect", + ["type"] = "explicit", + }, + }, + ["969_FlaskBuffAvoidChillFreeze"] = { + ["Flask"] = { + ["max"] = 55, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2872815301", + ["text"] = "#% chance to Avoid being Frozen during Effect", + ["type"] = "explicit", + }, + }, + ["970_FlaskBuffAvoidIgnite"] = { + ["Flask"] = { + ["max"] = 55, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_20251177", + ["text"] = "#% chance to Avoid being Ignited during Effect", + ["type"] = "explicit", + }, + }, + ["9713_PrideReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3484910620", + ["text"] = "Pride has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["9714_PrideReservationEfficiency"] = { ["Amulet"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3993865658", - ["text"] = "Pride has #% increased Mana Reservation Efficiency", - ["type"] = "explicit", - }, - }, - ["9728_ProjectileAttackDamageDuringFlaskEffect"] = { - ["Belt"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2771016039", - ["text"] = "#% increased Projectile Attack Damage during any Flask Effect", - ["type"] = "explicit", - }, - }, - ["972_FlaskBuffAvoidStunWhileHealing"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3484910620", + ["text"] = "Pride has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["971_FlaskBuffAvoidShock"] = { ["Flask"] = { - ["max"] = 55, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2312652600", - ["text"] = "#% Chance to Avoid being Stunned during Effect", - ["type"] = "explicit", - }, - }, - ["972_LocalFlaskAvoidStunChanceAndMovementSpeedDuringFlaskEffect"] = { - ["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_3642618258", + ["text"] = "#% chance to Avoid being Shocked during Effect", + ["type"] = "explicit", + }, + }, + ["9727_ProjectileAttackDamageDuringFlaskEffect"] = { + ["Belt"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2771016039", + ["text"] = "#% increased Projectile Attack Damage during any Flask 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"] = { - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2312652600", + ["text"] = "#% Chance to Avoid being Stunned during Effect", + ["type"] = "explicit", + }, + }, + ["9733_ProjectileDamagePerEnemyPierced"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_883169830", - ["text"] = "Projectiles deal #% increased Damage with Hits and Ailments for each Enemy Pierced", - ["type"] = "explicit", - }, - }, - ["9748_ProjectilesChainAtCloseRange"] = { - ["Quiver"] = { - ["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", - }, - }, - ["974_FlaskBuffFreezeShockIgniteChanceWhileHealing"] = { + ["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", + }, + }, + ["973_FlaskReflectReductionDuringFlaskEffect"] = { ["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"] = { + ["max"] = 80, + ["min"] = 60, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_603134774", + ["text"] = "#% of Damage from your Hits cannot be Reflected during Effect", + ["type"] = "explicit", + }, + }, + ["9747_ProjectilesChainAtCloseRange"] = { + ["Quiver"] = { + ["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", + }, + }, + ["9767_PurityOfFireReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1135152940", + ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["9768_PurityOfFireReservationEfficiency"] = { ["Amulet"] = { - ["max"] = 60, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3003688066", - ["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", - }, - }, - ["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"] = { + ["max"] = 60, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1135152940", + ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["9770_PurityOfIceReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_139925400", + ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["9771_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", + }, + }, + ["9773_PurityOfLightningReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1450978702", + ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["9774_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", - }, - }, - ["982_LocalFlaskIgnitedEnemiesHaveMalediction"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1558071928", - ["text"] = "Enemies Ignited by you during Effect have Malediction", - ["type"] = "explicit", - }, - }, - ["9830_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", - }, - }, - ["983_FlaskBleedingAndCorruptedBloodImmunityDuringEffect"] = { + ["max"] = 60, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1450978702", + ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", + ["type"] = "explicit", + }, + }, + ["977_FlaskBuffAvoidStunWhileHealing"] = { ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3965637181", - ["text"] = "Immunity to Bleeding and Corrupted Blood during Effect", - ["type"] = "explicit", - }, - }, - ["985_FlaskFreezeAndChillImmunityDuringEffect"] = { + ["max"] = 55, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2312652600", + ["text"] = "#% Chance to Avoid being Stunned during Effect", + ["type"] = "explicit", + }, + }, + ["977_LocalFlaskAvoidStunChanceAndMovementSpeedDuringFlaskEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2312652600", + ["text"] = "#% Chance to Avoid being Stunned during Effect", + ["type"] = "explicit", + }, + }, + ["977_LocalFlaskAvoidStunChanceDuringFlaskEffect"] = { ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3838369929", - ["text"] = "Immunity to Freeze and Chill during Effect", - ["type"] = "explicit", - }, - }, - ["986_FlaskPoisonImmunityDuringEffect"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2312652600", + ["text"] = "#% Chance to Avoid being Stunned during Effect", + ["type"] = "explicit", + }, + }, + ["9781_Quiver1AdditionalPierceOld"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLineSingular"] = "Projectiles Pierce an additional Target", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + ["type"] = "explicit", + }, + }, + ["9782_Quiver2AdditionalPierceOld"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + ["type"] = "explicit", + }, + }, + ["979_FlaskBuffFreezeShockIgniteChanceWhileHealing"] = { ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1349296959", - ["text"] = "Immunity to Poison during Effect", - ["type"] = "explicit", - }, - }, - ["987_FlaskShockImmunityDuringEffect"] = { + ["max"] = 34, + ["min"] = 19, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_97064873", + ["text"] = "#% chance to Freeze, Shock and Ignite during Effect", + ["type"] = "explicit", + }, + }, + ["9801_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", + }, + }, + ["981_FlaskBuffCriticalWhileHealing"] = { + ["Flask"] = { + ["max"] = 55, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2008255263", + ["text"] = "#% increased Critical Strike Chance during Effect", + ["type"] = "explicit", + }, + }, + ["981_LocalFlaskCriticalStrikeChanceDuringFlaskEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2008255263", + ["text"] = "#% increased Critical Strike Chance during Effect", + ["type"] = "explicit", + }, + }, + ["9829_RareOrUniqueMonsterDroppedItemRarity"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2161689853", + ["text"] = "#% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", + ["type"] = "explicit", + }, + }, + ["9830_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", + }, + }, + ["987_LocalFlaskIgnitedEnemiesHaveMalediction"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1558071928", + ["text"] = "Enemies Ignited by you during Effect have Malediction", + ["type"] = "explicit", + }, + }, + ["9881_ReflectDamageTaken"] = { + ["inverseKey"] = "increased", + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3577248251", + ["text"] = "You and your Minions take #% reduced Reflected Damage", + ["type"] = "explicit", + }, + }, + ["9883_ReflectsShocks"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3291999509", + ["text"] = "Shock Reflection", + ["type"] = "explicit", + }, + }, + ["988_FlaskBleedingAndCorruptedBloodImmunityDuringEffect"] = { ["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_3965637181", + ["text"] = "Immunity to Bleeding and Corrupted Blood during Effect", + ["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", + }, + }, + ["9901_RemoveBleedingOnWarcry"] = { ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3936926420", - ["text"] = "Removes Bleeding when you use a Warcry", - ["type"] = "explicit", - }, - }, - ["9903_RemoveFreezeOnFlaskUse"] = { + ["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", + }, + }, + ["9902_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", + }, + }, + ["9906_RemoveIgniteOnFlaskUse"] = { ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1162425204", - ["text"] = "Remove Ignite and Burning when you use a Flask", - ["type"] = "explicit", - }, - }, - ["990_LocalFlaskIgniteDamageLifeLeech"] = { - ["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"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1162425204", + ["text"] = "Remove Ignite and Burning when you use a Flask", + ["type"] = "explicit", + }, + }, + ["990_FlaskFreezeAndChillImmunityDuringEffect"] = { + ["Flask"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3838369929", + ["text"] = "Immunity to Freeze and Chill during Effect", + ["type"] = "explicit", + }, + }, + ["9916_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", - }, - }, + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_561861132", + ["text"] = "Remove Shock when you use a Flask", + ["type"] = "explicit", + }, + }, + ["991_FlaskPoisonImmunityDuringEffect"] = { + ["Flask"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1349296959", + ["text"] = "Immunity to Poison during Effect", + ["type"] = "explicit", + }, + }, + ["9923_RestoreManaAndEnergyShieldOnFocus"] = { + ["Chest"] = { + ["max"] = 40, + ["min"] = 37, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2992263716", + ["text"] = "Recover #% of Mana and Energy Shield when you Focus", + ["type"] = "explicit", + }, + }, ["9924_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"] = 31, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2992263716", + ["text"] = "Recover #% of Mana and Energy Shield when you Focus", + ["type"] = "explicit", + }, + }, + ["992_FlaskShockImmunityDuringEffect"] = { + ["Flask"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_589991690", + ["text"] = "Immunity to Shock during Effect", + ["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", + }, + }, + ["994_LocalFlaskItemFoundRarityDuringFlaskEffect"] = { + ["Flask"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1740200922", + ["text"] = "#% increased Rarity of Items found during Effect", + ["type"] = "explicit", + }, + }, + ["995_LocalFlaskIgniteDamageLifeLeech"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_96869632", + ["text"] = "Leech #% of Expected Ignite Damage as Life when you Ignite an Enemy during Effect", + ["type"] = "explicit", + }, + }, + ["9968_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", + }, + }, + ["9973_SelfDebilitate"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1989416016", + ["text"] = "You are Debilitated", + ["type"] = "explicit", + }, + }, + ["9977_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", - }, - }, - ["998_LocalFlaskPhysicalDamageCanIgnite"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3914001710", - ["text"] = "Your Physical Damage can Ignite during Effect", - ["type"] = "explicit", - }, - }, - ["999_LocalFlaskSkillManaCostDuringFlaskEffect"] = { - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_683273571", - ["text"] = "#% increased Mana Cost of Skills during Effect", - ["type"] = "explicit", - }, - }, - }, + ["max"] = -30, + ["min"] = -35, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3301100256", + ["text"] = "#% increased Poison Duration on you", + ["type"] = "explicit", + }, + }, + ["9978_TakeNoExtraDamageFromCriticalStrikesIfEnergyShieldRechargeStartedRecently"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3753680856", + ["text"] = "Take no Extra Damage from Critical Strikes if Energy Shield Recharge started Recently", + ["type"] = "explicit", + }, + }, + ["997_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", + }, + }, + ["998_LocalFlaskLifeRegenerationPerMinuteDuringFlaskEffect"] = { + ["Flask"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_871270154", + ["text"] = "Regenerate #% of Life per second 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", - }, - ["Gloves"] = { - ["max"] = 20, - ["min"] = 16, - ["subType"] = "Armour", - }, + ["max"] = 20, + ["min"] = 16, + ["subType"] = "Armour", + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 16, + ["subType"] = "Armour", + }, ["Helmet"] = { - ["max"] = 20, - ["min"] = 16, - ["subType"] = "Armour", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", - ["type"] = "implicit", - }, - }, + ["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", - }, - ["Gloves"] = { - ["max"] = 50, - ["min"] = 45, - ["subType"] = "Energy Shield", - }, + ["max"] = 50, + ["min"] = 45, + ["subType"] = "Energy Shield", + }, + ["Gloves"] = { + ["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", - }, - ["Gloves"] = { - ["max"] = 4, - ["min"] = 2, - ["subType"] = "Armour/Evasion", - }, + ["max"] = 4, + ["min"] = 2, + ["subType"] = "Armour/Evasion", + }, + ["Gloves"] = { + ["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", - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 15, - ["subType"] = "Thrusting", - }, + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["1HWeapon"] = { + ["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", - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 15, - ["subType"] = "Thrusting", - }, + ["max"] = 20, + ["min"] = 15, + ["subType"] = "Thrusting", + }, + ["2HWeapon"] = { + ["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", - }, - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 10, - ["subType"] = "Rune Dagger", - }, + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune Dagger", + }, + ["1HWeapon"] = { + ["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", - }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 10, - ["subType"] = "Rune Dagger", - }, + ["max"] = 30, + ["min"] = 10, + ["subType"] = "Rune Dagger", + }, + ["2HWeapon"] = { + ["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", - }, - ["Gloves"] = { - ["max"] = 30, - ["min"] = 25, - ["subType"] = "Energy Shield", - }, + ["max"] = 30, + ["min"] = 25, + ["subType"] = "Energy Shield", + }, + ["Gloves"] = { + ["max"] = 30, + ["min"] = 25, + ["subType"] = "Energy Shield", + }, ["Helmet"] = { - ["max"] = 30, - ["min"] = 25, - ["subType"] = "Energy Shield", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1915414884", - ["text"] = "#% chance when you pay a Skill's Cost to gain that much Mana", - ["type"] = "implicit", - }, - }, + ["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", - }, - ["Gloves"] = { - ["max"] = 18, - ["min"] = 14, - ["subType"] = "Evasion", - }, + ["max"] = 18, + ["min"] = 14, + ["subType"] = "Evasion", + }, + ["Gloves"] = { + ["max"] = 18, + ["min"] = 14, + ["subType"] = "Evasion", + }, ["Helmet"] = { - ["max"] = 18, - ["min"] = 14, - ["subType"] = "Evasion", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2162876159", - ["text"] = "#% increased Projectile Attack Damage", - ["type"] = "implicit", - }, - }, + ["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, - }, - ["Gloves"] = { - ["max"] = 9, - ["min"] = 3, - ["subType"] = "Evasion", - }, + ["max"] = 10, + ["min"] = 6, + }, + ["Gloves"] = { + ["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", - }, - ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 20, - ["subType"] = "Rune Dagger", - }, + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune Dagger", + }, + ["1HWeapon"] = { + ["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", - }, - ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 20, - ["subType"] = "Rune Dagger", - }, + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune Dagger", + }, + ["2HWeapon"] = { + ["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", - }, - ["Gloves"] = { - ["max"] = 50, - ["min"] = 30, - ["subType"] = "Armour", - }, + ["max"] = 50, + ["min"] = 30, + ["subType"] = "Armour", + }, + ["Gloves"] = { + ["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, - }, - ["Gloves"] = { - ["max"] = 6, - ["min"] = 3, - ["subType"] = "Armour", - }, + ["max"] = 6, + ["min"] = 4, + }, + ["Gloves"] = { + ["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", - }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 10, - ["subType"] = "Evasion", - }, + ["max"] = 25, + ["min"] = 10, + ["subType"] = "Evasion", + }, + ["Gloves"] = { + ["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", - }, - ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, - ["subType"] = "Armour", - }, + ["max"] = 10, + ["min"] = 10, + ["subType"] = "Armour", + }, + ["Gloves"] = { + ["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", - }, - ["Gloves"] = { - ["max"] = 12, - ["min"] = 8, - ["subType"] = "Armour/Evasion", - }, + ["max"] = 12, + ["min"] = 8, + ["subType"] = "Armour/Evasion", + }, + ["Gloves"] = { + ["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, - }, - ["Gloves"] = { - ["max"] = 16, - ["min"] = 3, - ["subType"] = "Energy Shield", - }, + ["max"] = 40, + ["min"] = 8, + }, + ["Gloves"] = { + ["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", - }, - ["Gloves"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 40, + ["min"] = 10, + ["subType"] = "Armour", + }, + ["Gloves"] = { + ["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", - }, - ["Gloves"] = { - ["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", + }, ["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", - }, - ["Gloves"] = { - ["max"] = 180, - ["min"] = 60, - ["subType"] = "Armour/Evasion", - }, + ["max"] = 180, + ["min"] = 60, + ["subType"] = "Armour/Evasion", + }, + ["Gloves"] = { + ["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", - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Warstaff", - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["1HWeapon"] = { + ["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", - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Warstaff", - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Warstaff", + }, + ["2HWeapon"] = { + ["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", - }, - ["Gloves"] = { - ["max"] = 3.5, - ["min"] = 3, - ["subType"] = "Evasion", - }, + ["max"] = 3.5, + ["min"] = 3, + ["subType"] = "Evasion", + }, + ["Gloves"] = { + ["max"] = 3.5, + ["min"] = 3, + ["subType"] = "Evasion", + }, ["Helmet"] = { - ["max"] = 3.5, - ["min"] = 3, - ["subType"] = "Evasion", - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4139229725", - ["text"] = "# to # Added Attack Lightning Damage per 200 Accuracy Rating", - ["type"] = "implicit", - }, - }, + ["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", - }, - ["Gloves"] = { - ["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", + }, ["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", - }, - ["Gloves"] = { - ["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", + }, ["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", - }, - ["Gloves"] = { - ["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", + }, ["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", - }, - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Evasion", - }, + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Evasion", + }, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Armour/Evasion", + }, ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Armour/Evasion", - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_846313030", - ["text"] = "You are Crushed", - ["type"] = "implicit", - }, - }, + ["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", - }, - ["Gloves"] = { - ["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", + }, ["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", - }, - }, - }, + ["7559_AfflictionNotableAdrenaline"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4022743870", + ["text"] = "1 Added Passive Skill is Adrenaline", + ["type"] = "explicit", + }, + }, + ["7560_AfflictionNotableAdvanceGuard"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1625939562", + ["text"] = "1 Added Passive Skill is Advance Guard", + ["type"] = "explicit", + }, + }, + ["7561_AfflictionNotableAerialist"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3848677307", + ["text"] = "1 Added Passive Skill is Aerialist", + ["type"] = "explicit", + }, + }, + ["7562_AfflictionNotableAerodynamics"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4120556534", + ["text"] = "1 Added Passive Skill is Aerodynamics", + ["type"] = "explicit", + }, + }, + ["7563_AfflictionNotableAgentofDestruction"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3122491961", + ["text"] = "1 Added Passive Skill is Agent of Destruction", + ["type"] = "explicit", + }, + }, + ["7564_AfflictionNotableAggressiveDefence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4154008618", + ["text"] = "1 Added Passive Skill is Aggressive Defence", + ["type"] = "explicit", + }, + }, + ["7565_AfflictionNotableAlchemist"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2912949210", + ["text"] = "1 Added Passive Skill is Alchemist", + ["type"] = "explicit", + }, + }, + ["7566_AfflictionNotableAncestralEcho"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_957679205", + ["text"] = "1 Added Passive Skill is Ancestral Echo", + ["type"] = "explicit", + }, + }, + ["7567_AfflictionNotableAncestralGuidance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2387747995", + ["text"] = "1 Added Passive Skill is Ancestral Guidance", + ["type"] = "explicit", + }, + }, + ["7568_AfflictionNotableAncestralInspiration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_77045106", + ["text"] = "1 Added Passive Skill is Ancestral Inspiration", + ["type"] = "explicit", + }, + }, + ["7569_AfflictionNotableAncestralMight"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3998316", + ["text"] = "1 Added Passive Skill is Ancestral Might", + ["type"] = "explicit", + }, + }, + ["7570_AfflictionNotableAncestralPreservation"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3746703776", + ["text"] = "1 Added Passive Skill is Ancestral Preservation", + ["type"] = "explicit", + }, + }, + ["7571_AfflictionNotableAncestralReach"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3294884567", + ["text"] = "1 Added Passive Skill is Ancestral Reach", + ["type"] = "explicit", + }, + }, + ["7572_AfflictionNotableAntifreeze"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2622946553", + ["text"] = "1 Added Passive Skill is Antifreeze", + ["type"] = "explicit", + }, + }, + ["7573_AfflictionNotableAntivenom"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_774369953", + ["text"] = "1 Added Passive Skill is Antivenom", + ["type"] = "explicit", + }, + }, + ["7574_AfflictionNotableArcaneAdept"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_393565679", + ["text"] = "1 Added Passive Skill is Arcane Adept", + ["type"] = "explicit", + }, + }, + ["7575_AfflictionNotableArcaneHeroism"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3901992019", + ["text"] = "1 Added Passive Skill is Arcane Heroism", + ["type"] = "explicit", + }, + }, + ["7576_AfflictionNotableArcanePyrotechnics"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2043503530", + ["text"] = "1 Added Passive Skill is Arcane Pyrotechnics", + ["type"] = "explicit", + }, + }, + ["7577_AfflictionNotableArcingShot"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3212859169", + ["text"] = "1 Added Passive Skill is Arcing Shot", + ["type"] = "explicit", + }, + }, + ["7578_AfflictionNotableAssertDominance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4222265138", + ["text"] = "1 Added Passive Skill is Assert Dominance", + ["type"] = "explicit", + }, + }, + ["7579_AfflictionNotableAstonishingAffliction"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2428334013", + ["text"] = "1 Added Passive Skill is Astonishing Affliction", + ["type"] = "explicit", + }, + }, + ["7580_AfflictionNotableBasicsofPain"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3084359503", + ["text"] = "1 Added Passive Skill is Basics of Pain", + ["type"] = "explicit", + }, + }, + ["7581_AfflictionNotableBattleHardened"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4188581520", + ["text"] = "1 Added Passive Skill is Battle-Hardened", + ["type"] = "explicit", + }, + }, + ["7582_AfflictionNotableBattlefieldDominator"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1499057234", + ["text"] = "1 Added Passive Skill is Battlefield Dominator", + ["type"] = "explicit", + }, + }, + ["7583_AfflictionNotableBlacksmith"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1127706436", + ["text"] = "1 Added Passive Skill is Blacksmith", + ["type"] = "explicit", + }, + }, + ["7584_AfflictionNotableBlanketedSnow"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1085167979", + ["text"] = "1 Added Passive Skill is Blanketed Snow", + ["type"] = "explicit", + }, + }, + ["7585_AfflictionNotableBlastFreeze"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_693808153", + ["text"] = "1 Added Passive Skill is Blast-Freeze", + ["type"] = "explicit", + }, + }, + ["7586_AfflictionNotableBlessed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_775689239", + ["text"] = "1 Added Passive Skill is Blessed", + ["type"] = "explicit", + }, + }, + ["7587_AfflictionNotableBlessedRebirth"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1424794574", + ["text"] = "1 Added Passive Skill is Blessed Rebirth", + ["type"] = "explicit", + }, + }, + ["7588_AfflictionNotableBloodArtist"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2284771334", + ["text"] = "1 Added Passive Skill is Blood Artist", + ["type"] = "explicit", + }, + }, + ["7589_AfflictionNotableBloodscent"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3967765261", + ["text"] = "1 Added Passive Skill is Bloodscent", + ["type"] = "explicit", + }, + }, + ["7590_AfflictionNotableBlowback"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1612414696", + ["text"] = "1 Added Passive Skill is Blowback", + ["type"] = "explicit", + }, + }, + ["7591_AfflictionNotableBodyguards"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_791125124", + ["text"] = "1 Added Passive Skill is Bodyguards", + ["type"] = "explicit", + }, + }, + ["7592_AfflictionNotableBornofChaos"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2449392400", + ["text"] = "1 Added Passive Skill is Born of Chaos", + ["type"] = "explicit", + }, + }, + ["7593_AfflictionNotableBrandLoyalty"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3198006994", + ["text"] = "1 Added Passive Skill is Brand Loyalty", + ["type"] = "explicit", + }, + }, + ["7594_AfflictionNotableBrewedforPotency"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3250272113", + ["text"] = "1 Added Passive Skill is Brewed for Potency", + ["type"] = "explicit", + }, + }, + ["7595_AfflictionNotableBroadside"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2205982416", + ["text"] = "1 Added Passive Skill is Broadside", + ["type"] = "explicit", + }, + }, + ["7596_AfflictionNotableBrushwithDeath"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2900833792", + ["text"] = "1 Added Passive Skill is Brush with Death", + ["type"] = "explicit", + }, + }, + ["7597_AfflictionNotableBrutalInfamy"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2068574831", + ["text"] = "1 Added Passive Skill is Brutal Infamy", + ["type"] = "explicit", + }, + }, + ["7598_AfflictionNotableBurdenProjection"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2008682345", + ["text"] = "1 Added Passive Skill is Burden Projection", + ["type"] = "explicit", + }, + }, + ["7599_AfflictionNotableBurningBright"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4199056048", + ["text"] = "1 Added Passive Skill is Burning Bright", + ["type"] = "explicit", + }, + }, + ["7600_AfflictionNotableCalamitous"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3359207393", + ["text"] = "1 Added Passive Skill is Calamitous", + ["type"] = "explicit", + }, + }, + ["7601_AfflictionNotableCalltotheSlaughter"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3317068522", + ["text"] = "1 Added Passive Skill is Call to the Slaughter", + ["type"] = "explicit", + }, + }, + ["7602_AfflictionNotableCapacitor"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4025536654", + ["text"] = "1 Added Passive Skill is Capacitor", + ["type"] = "explicit", + }, + }, + ["7603_AfflictionNotableCarefulHandling"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_456502758", + ["text"] = "1 Added Passive Skill is Careful Handling", + ["type"] = "explicit", + }, + }, + ["7604_AfflictionNotableChillingPresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2834490860", + ["text"] = "1 Added Passive Skill is Chilling Presence", + ["type"] = "explicit", + }, + }, + ["7605_AfflictionNotableChipAway"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_968069586", + ["text"] = "1 Added Passive Skill is Chip Away", + ["type"] = "explicit", + }, + }, + ["7606_AfflictionNotableCirclingOblivion"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2129392647", + ["text"] = "1 Added Passive Skill is Circling Oblivion", + ["type"] = "explicit", + }, + }, + ["7607_AfflictionNotableClarityofPurpose"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_684087686", + ["text"] = "1 Added Passive Skill is Clarity of Purpose", + ["type"] = "explicit", + }, + }, + ["7608_AfflictionNotableColdBloodedKiller"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_836566759", + ["text"] = "1 Added Passive Skill is Cold-Blooded Killer", + ["type"] = "explicit", + }, + }, + ["7609_AfflictionNotableColdConduction"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1274505521", + ["text"] = "1 Added Passive Skill is Cold Conduction", + ["type"] = "explicit", + }, + }, + ["7610_AfflictionNotableColdtotheCore"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_744783843", + ["text"] = "1 Added Passive Skill is Cold to the Core", + ["type"] = "explicit", + }, + }, + ["7611_AfflictionNotableCombatRhythm"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3122505794", + ["text"] = "1 Added Passive Skill is Combat Rhythm", + ["type"] = "explicit", + }, + }, + ["7612_AfflictionNotableCompoundInjury"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4018305528", + ["text"] = "1 Added Passive Skill is Compound Injury", + ["type"] = "explicit", + }, + }, + ["7613_AfflictionNotableConfidentCombatant"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3930242735", + ["text"] = "1 Added Passive Skill is Confident Combatant", + ["type"] = "explicit", + }, + }, + ["7614_AfflictionNotableConjuredWall"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4105031548", + ["text"] = "1 Added Passive Skill is Conjured Wall", + ["type"] = "explicit", + }, + }, + ["7615_AfflictionNotableConservationofEnergy"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2083777017", + ["text"] = "1 Added Passive Skill is Conservation of Energy", + ["type"] = "explicit", + }, + }, + ["7616_AfflictionNotableCookedAlive"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2938895712", + ["text"] = "1 Added Passive Skill is Cooked Alive", + ["type"] = "explicit", + }, + }, + ["7617_AfflictionNotableCorrosiveElements"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1777139212", + ["text"] = "1 Added Passive Skill is Corrosive Elements", + ["type"] = "explicit", + }, + }, + ["7618_AfflictionNotableCremator"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1153801980", + ["text"] = "1 Added Passive Skill is Cremator", + ["type"] = "explicit", + }, + }, + ["7619_AfflictionNotableCryWolf"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1821748178", + ["text"] = "1 Added Passive Skill is Cry Wolf", + ["type"] = "explicit", + }, + }, + ["7620_AfflictionNotableCultLeader"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2026112251", + ["text"] = "1 Added Passive Skill is Cult-Leader", + ["type"] = "explicit", + }, + }, + ["7621_AfflictionNotableDaringIdeas"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2534405517", + ["text"] = "1 Added Passive Skill is Daring Ideas", + ["type"] = "explicit", + }, + }, + ["7622_AfflictionNotableDarkDiscourse"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_462115791", + ["text"] = "1 Added Passive Skill is Doedre's Spite", + ["type"] = "explicit", + }, + }, + ["7623_AfflictionNotableDarkIdeation"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1603621602", + ["text"] = "1 Added Passive Skill is Dark Ideation", + ["type"] = "explicit", + }, + }, + ["7624_AfflictionNotableDarkMessenger"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3784610129", + ["text"] = "1 Added Passive Skill is Dark Messenger", + ["type"] = "explicit", + }, + }, + ["7625_AfflictionNotableDartingMovements"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_846491278", + ["text"] = "1 Added Passive Skill is Darting Movements", + ["type"] = "explicit", + }, + }, + ["7626_AfflictionNotableDeadlyRepartee"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1013470938", + ["text"] = "1 Added Passive Skill is Deadly Repartee", + ["type"] = "explicit", + }, + }, + ["7627_AfflictionNotableDeepChill"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1703766309", + ["text"] = "1 Added Passive Skill is Deep Chill", + ["type"] = "explicit", + }, + }, + ["7628_AfflictionNotableDeepCuts"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_410939404", + ["text"] = "1 Added Passive Skill is Deep Cuts", + ["type"] = "explicit", + }, + }, + ["7629_AfflictionNotableMiseryEverlasting"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3832665876", + ["text"] = "1 Added Passive Skill is Misery Everlasting", + ["type"] = "explicit", + }, + }, + ["7630_AfflictionNotableUncompromising"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_382360671", + ["text"] = "1 Added Passive Skill is Uncompromising", + ["type"] = "explicit", + }, + }, + ["7631_AfflictionNotableDevastator"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3711553948", + ["text"] = "1 Added Passive Skill is Devastator", + ["type"] = "explicit", + }, + }, + ["7632_AfflictionNotableDisciples"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3177526694", + ["text"] = "1 Added Passive Skill is Disciples", + ["type"] = "explicit", + }, + }, + ["7633_AfflictionNotableSelfControl"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3025453294", + ["text"] = "1 Added Passive Skill is Self-Control", + ["type"] = "explicit", + }, + }, + ["7634_AfflictionNotableDiseaseVector"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_183591019", + ["text"] = "1 Added Passive Skill is Disease Vector", + ["type"] = "explicit", + }, + }, + ["7635_AfflictionNotableDisorientingDisplay"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3206911230", + ["text"] = "1 Added Passive Skill is Disorienting Display", + ["type"] = "explicit", + }, + }, + ["7636_AfflictionNotableDisorientingWounds"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3351136461", + ["text"] = "1 Added Passive Skill is Disorienting Wounds", + ["type"] = "explicit", + }, + }, + ["7637_AfflictionNotableDistilledPerfection"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3652138990", + ["text"] = "1 Added Passive Skill is Distilled Perfection", + ["type"] = "explicit", + }, + }, + ["7638_AfflictionNotableDoedresApathy"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1381945089", + ["text"] = "1 Added Passive Skill is Doedre's Apathy", + ["type"] = "explicit", + }, + }, + ["7639_AfflictionNotableDoedresGluttony"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2695848124", + ["text"] = "1 Added Passive Skill is Doedre's Gluttony", + ["type"] = "explicit", + }, + }, + ["7640_AfflictionNotableDoryanisLesson"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_228455793", + ["text"] = "1 Added Passive Skill is Doryani's Lesson", + ["type"] = "explicit", + }, + }, + ["7641_AfflictionNotableDragonHunter"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1038955006", + ["text"] = "1 Added Passive Skill is Dragon Hunter", + ["type"] = "explicit", + }, + }, + ["7642_AfflictionNotableDreadMarch"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3087667389", + ["text"] = "1 Added Passive Skill is Dread March", + ["type"] = "explicit", + }, + }, + ["7643_AfflictionNotableDrivetheDestruction"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1911162866", + ["text"] = "1 Added Passive Skill is Drive the Destruction", + ["type"] = "explicit", + }, + }, + ["7644_AfflictionNotableEldritchInspiration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3737604164", + ["text"] = "1 Added Passive Skill is Eldritch Inspiration", + ["type"] = "explicit", + }, + }, + ["7645_AfflictionNotableElegantForm"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_289714529", + ["text"] = "1 Added Passive Skill is Elegant Form", + ["type"] = "explicit", + }, + }, + ["7646_AfflictionNotableEmpoweredEnvoy"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2032453153", + ["text"] = "1 Added Passive Skill is Empowered Envoy", + ["type"] = "explicit", + }, + }, + ["7647_AfflictionNotableEndbringer"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2150878631", + ["text"] = "1 Added Passive Skill is Endbringer", + ["type"] = "explicit", + }, + }, + ["7648_AfflictionNotableEnduringComposure"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2043284086", + ["text"] = "1 Added Passive Skill is Enduring Composure", + ["type"] = "explicit", + }, + }, + ["7649_AfflictionNotableEnduringFocus"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2522970386", + ["text"] = "1 Added Passive Skill is Enduring Focus", + ["type"] = "explicit", + }, + }, + ["7650_AfflictionNotableEnduringWard"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_252724319", + ["text"] = "1 Added Passive Skill is Enduring Ward", + ["type"] = "explicit", + }, + }, + ["7651_AfflictionNotableEnergyFromNaught"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2195518432", + ["text"] = "1 Added Passive Skill is Energy From Naught", + ["type"] = "explicit", + }, + }, + ["7652_AfflictionNotableEssenceRush"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1096136223", + ["text"] = "1 Added Passive Skill is Essence Rush", + ["type"] = "explicit", + }, + }, + ["7653_AfflictionNotableEternalSuffering"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2144634814", + ["text"] = "1 Added Passive Skill is Eternal Suffering", + ["type"] = "explicit", + }, + }, + ["7654_AfflictionNotableEvilEye"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_156080652", + ["text"] = "1 Added Passive Skill is Evil Eye", + ["type"] = "explicit", + }, + }, + ["7655_AfflictionNotableExpansiveMight"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_394918362", + ["text"] = "1 Added Passive Skill is Expansive Might", + ["type"] = "explicit", + }, + }, + ["7656_AfflictionNotableExpendability"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2020075345", + ["text"] = "1 Added Passive Skill is Expendability", + ["type"] = "explicit", + }, + }, + ["7657_AfflictionNotableExpertSabotage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2084371547", + ["text"] = "1 Added Passive Skill is Expert Sabotage", + ["type"] = "explicit", + }, + }, + ["7658_AfflictionNotableExplosiveForce"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2017927451", + ["text"] = "1 Added Passive Skill is Explosive Force", + ["type"] = "explicit", + }, + }, + ["7659_AfflictionNotableExposureTherapy"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_131358113", + ["text"] = "1 Added Passive Skill is Exposure Therapy", + ["type"] = "explicit", + }, + }, + ["7660_AfflictionNotableEyeoftheStorm"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3818661553", + ["text"] = "1 Added Passive Skill is Eye of the Storm", + ["type"] = "explicit", + }, + }, + ["7661_AfflictionNotableEyetoEye"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_392942015", + ["text"] = "1 Added Passive Skill is Eye to Eye", + ["type"] = "explicit", + }, + }, + ["7662_AfflictionNotableFanofBlades"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2484082827", + ["text"] = "1 Added Passive Skill is Fan of Blades", + ["type"] = "explicit", + }, + }, + ["7663_AfflictionNotableFantheFlames"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2918755450", + ["text"] = "1 Added Passive Skill is Fan the Flames", + ["type"] = "explicit", + }, + }, + ["7664_AfflictionNotableFasting"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_37078857", + ["text"] = "1 Added Passive Skill is Fasting", + ["type"] = "explicit", + }, + }, + ["7665_AfflictionNotableFearsomeWarrior"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3134222965", + ["text"] = "1 Added Passive Skill is Fearsome Warrior", + ["type"] = "explicit", + }, + }, + ["7666_AfflictionNotableFeastofFlesh"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2396755365", + ["text"] = "1 Added Passive Skill is Feast of Flesh", + ["type"] = "explicit", + }, + }, + ["7667_AfflictionNotableFeastingFiends"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_383245807", + ["text"] = "1 Added Passive Skill is Feasting Fiends", + ["type"] = "explicit", + }, + }, + ["7668_AfflictionNotableFeedtheFury"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3944525413", + ["text"] = "1 Added Passive Skill is Feed the Fury", + ["type"] = "explicit", + }, + }, + ["7669_AfflictionNotableFettle"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1353571444", + ["text"] = "1 Added Passive Skill is Fettle", + ["type"] = "explicit", + }, + }, + ["7670_AfflictionNotableFieryAegis"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3233538204", + ["text"] = "1 Added Passive Skill is Fiery Aegis", + ["type"] = "explicit", + }, + }, + ["7671_AfflictionNotableFireAttunement"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3188756614", + ["text"] = "1 Added Passive Skill is Fire Attunement", + ["type"] = "explicit", + }, + }, + ["7672_AfflictionNotableFirstAmongEquals"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1134501245", + ["text"] = "1 Added Passive Skill is Spiteful Presence", + ["type"] = "explicit", + }, + }, + ["7673_AfflictionNotableLordofDrought"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2055715585", + ["text"] = "1 Added Passive Skill is Lord of Drought", + ["type"] = "explicit", + }, + }, + ["7674_AfflictionNotableFlexibleSentry"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_982290947", + ["text"] = "1 Added Passive Skill is Flexible Sentry", + ["type"] = "explicit", + }, + }, + ["7675_AfflictionNotableFlowofLife"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2350430215", + ["text"] = "1 Added Passive Skill is Flow of Life", + ["type"] = "explicit", + }, + }, + ["7676_AfflictionNotableFollowThrough"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3984980429", + ["text"] = "1 Added Passive Skill is Follow-Through", + ["type"] = "explicit", + }, + }, + ["7677_AfflictionNotableForceMultiplier"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1904581068", + ["text"] = "1 Added Passive Skill is Force Multiplier", + ["type"] = "explicit", + }, + }, + ["7678_AfflictionNotableBlizzardCaller"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3758712376", + ["text"] = "1 Added Passive Skill is Blizzard Caller", + ["type"] = "explicit", + }, + }, + ["7679_AfflictionNotableFueltheFight"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3599340381", + ["text"] = "1 Added Passive Skill is Fuel the Fight", + ["type"] = "explicit", + }, + }, + ["7680_AfflictionNotableFuriousAssault"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3415827027", + ["text"] = "1 Added Passive Skill is Furious Assault", + ["type"] = "explicit", + }, + }, + ["7681_AfflictionNotableGenius"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2763732093", + ["text"] = "1 Added Passive Skill is Genius", + ["type"] = "explicit", + }, + }, + ["7682_AfflictionNotableGladiatorialCombat"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1543731719", + ["text"] = "1 Added Passive Skill is Gladiatorial Combat", + ["type"] = "explicit", + }, + }, + ["7683_AfflictionNotableGladiatorsFortitude"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1591995797", + ["text"] = "1 Added Passive Skill is Gladiator's Fortitude", + ["type"] = "explicit", + }, + }, + ["7684_AfflictionNotableGracefulExecution"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1903496649", + ["text"] = "1 Added Passive Skill is Graceful Execution", + ["type"] = "explicit", + }, + }, + ["7685_AfflictionNotableSublimeForm"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2251304016", + ["text"] = "1 Added Passive Skill is Sublime Form", + ["type"] = "explicit", + }, + }, + ["7686_AfflictionNotableGrandDesign"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2350900742", + ["text"] = "1 Added Passive Skill is Grand Design", + ["type"] = "explicit", + }, + }, + ["7687_AfflictionNotableGrimOath"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2194205899", + ["text"] = "1 Added Passive Skill is Grim Oath", + ["type"] = "explicit", + }, + }, + ["7688_AfflictionNotableGroundedCommander"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1309218394", + ["text"] = "1 Added Passive Skill is Introspection", + ["type"] = "explicit", + }, + }, + ["7689_AfflictionNotableGuerillaTactics"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1882129725", + ["text"] = "1 Added Passive Skill is Guerilla Tactics", + ["type"] = "explicit", + }, + }, + ["7690_AfflictionNotableHaemorrhage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_72129119", + ["text"] = "1 Added Passive Skill is Haemorrhage", + ["type"] = "explicit", + }, + }, + ["7691_AfflictionNotableHauntingShout"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1080363357", + ["text"] = "1 Added Passive Skill is Haunting Shout", + ["type"] = "explicit", + }, + }, + ["7692_AfflictionNotableHeartofIron"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1483358825", + ["text"] = "1 Added Passive Skill is Heart of Iron", + ["type"] = "explicit", + }, + }, + ["7693_AfflictionNotableHeavyHitter"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3640252904", + ["text"] = "1 Added Passive Skill is Heavy Hitter", + ["type"] = "explicit", + }, + }, + ["7694_AfflictionNotableExploitWeakness"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_50129423", + ["text"] = "1 Added Passive Skill is Exploit Weakness", + ["type"] = "explicit", + }, + }, + ["7695_AfflictionNotableHeraldry"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3274270612", + ["text"] = "1 Added Passive Skill is Heraldry", + ["type"] = "explicit", + }, + }, + ["7696_AfflictionNotableHexBreaker"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2341828832", + ["text"] = "1 Added Passive Skill is Hex Breaker", + ["type"] = "explicit", + }, + }, + ["7697_AfflictionNotableHibernator"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2294919888", + ["text"] = "1 Added Passive Skill is Hibernator", + ["type"] = "explicit", + }, + }, + ["7698_AfflictionNotableHitandRun"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2665170385", + ["text"] = "1 Added Passive Skill is Hit and Run", + ["type"] = "explicit", + }, + }, + ["7699_AfflictionNotableHolisticHealth"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3667965781", + ["text"] = "1 Added Passive Skill is Holistic Health", + ["type"] = "explicit", + }, + }, + ["7700_AfflictionNotableHolyConquest"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3898572660", + ["text"] = "1 Added Passive Skill is Holy Conquest", + ["type"] = "explicit", + }, + }, + ["7701_AfflictionNotableHolyWord"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3697635701", + ["text"] = "1 Added Passive Skill is Holy Word", + ["type"] = "explicit", + }, + }, + ["7702_AfflictionNotableHoundsMark"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_555800967", + ["text"] = "1 Added Passive Skill is Hound's Mark", + ["type"] = "explicit", + }, + }, + ["7703_AfflictionNotableHulkingCorpses"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3467711950", + ["text"] = "1 Added Passive Skill is Hulking Corpses", + ["type"] = "explicit", + }, + }, + ["7704_AfflictionNotableImprovisor"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_810219447", + ["text"] = "1 Added Passive Skill is Improvisor", + ["type"] = "explicit", + }, + }, + ["7705_AfflictionNotableInsatiableKiller"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3904970959", + ["text"] = "1 Added Passive Skill is Insatiable Killer", + ["type"] = "explicit", + }, + }, + ["7706_AfflictionNotableInspiredOppression"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3872380586", + ["text"] = "1 Added Passive Skill is Inspired Oppression", + ["type"] = "explicit", + }, + }, + ["7707_AfflictionNotableInsulated"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_212648555", + ["text"] = "1 Added Passive Skill is Insulated", + ["type"] = "explicit", + }, + }, + ["7708_AfflictionNotableIntensity"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2785835061", + ["text"] = "1 Added Passive Skill is Intensity", + ["type"] = "explicit", + }, + }, + ["7709_AfflictionNotableInvigoratingPortents"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2262034536", + ["text"] = "1 Added Passive Skill is Invigorating Portents", + ["type"] = "explicit", + }, + }, + ["7710_AfflictionNotableIronBreaker"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3258653591", + ["text"] = "1 Added Passive Skill is Iron Breaker", + ["type"] = "explicit", + }, + }, + ["7711_AfflictionNotableLastingImpression"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_426715778", + ["text"] = "1 Added Passive Skill is Lasting Impression", + ["type"] = "explicit", + }, + }, + ["7712_AfflictionNotableLeadByExample"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2195406641", + ["text"] = "1 Added Passive Skill is Lead By Example", + ["type"] = "explicit", + }, + }, + ["7713_AfflictionNotableLifefromDeath"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2337273077", + ["text"] = "1 Added Passive Skill is Life from Death", + ["type"] = "explicit", + }, + }, + ["7714_AfflictionNotableTempttheStorm"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_348883745", + ["text"] = "1 Added Passive Skill is Tempt the Storm", + ["type"] = "explicit", + }, + }, + ["7715_AfflictionNotableLiquidInspiration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1094635162", + ["text"] = "1 Added Passive Skill is Liquid Inspiration", + ["type"] = "explicit", + }, + }, + ["7716_AfflictionNotableLowTolerance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3989400244", + ["text"] = "1 Added Passive Skill is Low Tolerance", + ["type"] = "explicit", + }, + }, + ["7717_AfflictionNotableMageBane"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_684155617", + ["text"] = "1 Added Passive Skill is Mage Bane", + ["type"] = "explicit", + }, + }, + ["7718_AfflictionNotableMageHunter"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2118664144", + ["text"] = "1 Added Passive Skill is Mage Hunter", + ["type"] = "explicit", + }, + }, + ["7719_AfflictionNotableMagnifier"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2886441936", + ["text"] = "1 Added Passive Skill is Magnifier", + ["type"] = "explicit", + }, + }, + ["7720_AfflictionNotableMartialMastery"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1015189426", + ["text"] = "1 Added Passive Skill is Martial Mastery", + ["type"] = "explicit", + }, + }, + ["7721_AfflictionNotableMartialMomentum"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2978494217", + ["text"] = "1 Added Passive Skill is Martial Momentum", + ["type"] = "explicit", + }, + }, + ["7722_AfflictionNotableMartialProwess"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1152182658", + ["text"] = "1 Added Passive Skill is Martial Prowess", + ["type"] = "explicit", + }, + }, + ["7723_AfflictionNotableMasterofCommand"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3257074218", + ["text"] = "1 Added Passive Skill is Master of Command", + ["type"] = "explicit", + }, + }, + ["7724_AfflictionNotableMasterofFear"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2771217016", + ["text"] = "1 Added Passive Skill is Master of Fear", + ["type"] = "explicit", + }, + }, + ["7725_AfflictionNotableMasterofFire"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1462135249", + ["text"] = "1 Added Passive Skill is Master of Fire", + ["type"] = "explicit", + }, + }, + ["7726_AfflictionNotableMasterOfTheMaelstrom"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_185592058", + ["text"] = "1 Added Passive Skill is Master of the Maelstrom", + ["type"] = "explicit", + }, + }, + ["7727_AfflictionNotableMastertheFundamentals"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3585232432", + ["text"] = "1 Added Passive Skill is Master the Fundamentals", + ["type"] = "explicit", + }, + }, + ["7728_AfflictionNotableMendersWellspring"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4291434923", + ["text"] = "1 Added Passive Skill is Mender's Wellspring", + ["type"] = "explicit", + }, + }, + ["7729_AfflictionNotableMilitarism"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4154709486", + ["text"] = "1 Added Passive Skill is Militarism", + ["type"] = "explicit", + }, + }, + ["7730_AfflictionNotableMindfulness"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2595115995", + ["text"] = "1 Added Passive Skill is Mindfulness", + ["type"] = "explicit", + }, + }, + ["7731_AfflictionNotableMobMentality"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1048879642", + ["text"] = "1 Added Passive Skill is Mob Mentality", + ["type"] = "explicit", + }, + }, + ["7732_AfflictionNotableMoltenOnesMark"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3875792669", + ["text"] = "1 Added Passive Skill is Molten One's Mark", + ["type"] = "explicit", + }, + }, + ["7733_AfflictionNotableMysticalWard"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2314111938", + ["text"] = "1 Added Passive Skill is Mystical Ward", + ["type"] = "explicit", + }, + }, + ["7734_AfflictionNotableNaturalVigour"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_510654792", + ["text"] = "1 Added Passive Skill is Natural Vigour", + ["type"] = "explicit", + }, + }, + ["7735_AfflictionNotableNoWitnesses"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1722480396", + ["text"] = "1 Added Passive Skill is No Witnesses", + ["type"] = "explicit", + }, + }, + ["7736_AfflictionNotableNonFlammable"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_731840035", + ["text"] = "1 Added Passive Skill is Non-Flammable", + ["type"] = "explicit", + }, + }, + ["7737_AfflictionNotableNumbingElixir"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1028754276", + ["text"] = "1 Added Passive Skill is Numbing Elixir", + ["type"] = "explicit", + }, + }, + ["7738_AfflictionNotableOnewiththeShield"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1976069869", + ["text"] = "1 Added Passive Skill is One with the Shield", + ["type"] = "explicit", + }, + }, + ["7739_AfflictionNotableOpenness"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_633943719", + ["text"] = "1 Added Passive Skill is Openness", + ["type"] = "explicit", + }, + }, + ["7740_AfflictionNotableOpportunisticFusilade"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4281625943", + ["text"] = "1 Added Passive Skill is Opportunistic Fusilade", + ["type"] = "explicit", + }, + }, + ["7741_AfflictionNotableOverlord"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2250169390", + ["text"] = "1 Added Passive Skill is Overlord", + ["type"] = "explicit", + }, + }, + ["7742_AfflictionNotableOvershock"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3777170562", + ["text"] = "1 Added Passive Skill is Overshock", + ["type"] = "explicit", + }, + }, + ["7743_AfflictionNotableOverwhelmingMalice"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_770408103", + ["text"] = "1 Added Passive Skill is Overwhelming Malice", + ["type"] = "explicit", + }, + }, + ["7744_AfflictionNotableParalysis"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4272503233", + ["text"] = "1 Added Passive Skill is Paralysis", + ["type"] = "explicit", + }, + }, + ["7745_AfflictionNotablePeaceAmidstChaos"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1734275536", + ["text"] = "1 Added Passive Skill is Peace Amidst Chaos", + ["type"] = "explicit", + }, + }, + ["7746_AfflictionNotablePeakVigour"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1722821275", + ["text"] = "1 Added Passive Skill is Peak Vigour", + ["type"] = "explicit", + }, + }, + ["7747_AfflictionNotablePhlebotomist"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3057154383", + ["text"] = "1 Added Passive Skill is Phlebotomist", + ["type"] = "explicit", + }, + }, + ["7748_AfflictionNotablePowerfulAssault"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1005475168", + ["text"] = "1 Added Passive Skill is Powerful Assault", + ["type"] = "explicit", + }, + }, + ["7749_AfflictionNotablePowerfulWard"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_164032122", + ["text"] = "1 Added Passive Skill is Powerful Ward", + ["type"] = "explicit", + }, + }, + ["7750_AfflictionNotablePracticedCaster"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3435403756", + ["text"] = "1 Added Passive Skill is Practiced Caster", + ["type"] = "explicit", + }, + }, + ["7751_AfflictionNotablePreciseCommander"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3860179422", + ["text"] = "1 Added Passive Skill is Destructive Aspect", + ["type"] = "explicit", + }, + }, + ["7752_AfflictionNotablePreciseFocus"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2913581789", + ["text"] = "1 Added Passive Skill is Precise Focus", + ["type"] = "explicit", + }, + }, + ["7753_AfflictionNotablePreciseRetaliation"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2335364359", + ["text"] = "1 Added Passive Skill is Precise Retaliation", + ["type"] = "explicit", + }, + }, + ["7754_AfflictionNotablePressurePoints"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3391925584", + ["text"] = "1 Added Passive Skill is Pressure Points", + ["type"] = "explicit", + }, + }, + ["7755_AfflictionNotablePrimordialBond"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_622362787", + ["text"] = "1 Added Passive Skill is Primordial Bond", + ["type"] = "explicit", + }, + }, + ["7756_AfflictionNotablePrismaticCarapace"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3492924480", + ["text"] = "1 Added Passive Skill is Prismatic Carapace", + ["type"] = "explicit", + }, + }, + ["7757_AfflictionNotablePrismaticDance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1149662934", + ["text"] = "1 Added Passive Skill is Prismatic Dance", + ["type"] = "explicit", + }, + }, + ["7758_AfflictionNotablePrismaticHeart"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2342448236", + ["text"] = "1 Added Passive Skill is Prismatic Heart", + ["type"] = "explicit", + }, + }, + ["7759_AfflictionNotableProdigiousDefense"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1705633890", + ["text"] = "1 Added Passive Skill is Prodigious Defence", + ["type"] = "explicit", + }, + }, + ["7760_AfflictionNotableProvocateur"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_814369372", + ["text"] = "1 Added Passive Skill is Provocateur", + ["type"] = "explicit", + }, + }, + ["7761_AfflictionNotablePureAgony"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1507409483", + ["text"] = "1 Added Passive Skill is Pure Agony", + ["type"] = "explicit", + }, + }, + ["7762_AfflictionNotablePureAptitude"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3509724289", + ["text"] = "1 Added Passive Skill is Pure Aptitude", + ["type"] = "explicit", + }, + }, + ["7763_AfflictionNotablePureCommander"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3950683692", + ["text"] = "1 Added Passive Skill is Electric Presence", + ["type"] = "explicit", + }, + }, + ["7764_AfflictionNotablePureGuile"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1621496909", + ["text"] = "1 Added Passive Skill is Pure Guile", + ["type"] = "explicit", + }, + }, + ["7765_AfflictionNotablePureMight"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2372915005", + ["text"] = "1 Added Passive Skill is Pure Might", + ["type"] = "explicit", + }, + }, + ["7766_AfflictionNotablePurposefulHarbinger"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_507505131", + ["text"] = "1 Added Passive Skill is Purposeful Harbinger", + ["type"] = "explicit", + }, + }, + ["7767_AfflictionNotableQuickandDeadly"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2169345147", + ["text"] = "1 Added Passive Skill is Quick and Deadly", + ["type"] = "explicit", + }, + }, + ["7768_AfflictionNotableQuickGetaway"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1626818279", + ["text"] = "1 Added Passive Skill is Quick Getaway", + ["type"] = "explicit", + }, + }, + ["7769_AfflictionNotableRapidInfusion"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1570474940", + ["text"] = "1 Added Passive Skill is Unrestrained Focus", + ["type"] = "explicit", + }, + }, + ["7770_AfflictionNotableRattlingBellow"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4288473380", + ["text"] = "1 Added Passive Skill is Rattling Bellow", + ["type"] = "explicit", + }, + }, + ["7771_AfflictionNotableRazeandPillage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1038897629", + ["text"] = "1 Added Passive Skill is Raze and Pillage", + ["type"] = "explicit", + }, + }, + ["7772_AfflictionNotableReadiness"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_845306697", + ["text"] = "1 Added Passive Skill is Readiness", + ["type"] = "explicit", + }, + }, + ["7773_AfflictionNotableRemarkable"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_691431951", + ["text"] = "1 Added Passive Skill is Remarkable", + ["type"] = "explicit", + }, + }, + ["7774_AfflictionNotableRend"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4263287206", + ["text"] = "1 Added Passive Skill is Rend", + ["type"] = "explicit", + }, + }, + ["7775_AfflictionNotableRenewal"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3607300552", + ["text"] = "1 Added Passive Skill is Renewal", + ["type"] = "explicit", + }, + }, + ["7776_AfflictionNotableRepeater"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2233272527", + ["text"] = "1 Added Passive Skill is Repeater", + ["type"] = "explicit", + }, + }, + ["7777_AfflictionNotableReplenishingPresence"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1496043857", + ["text"] = "1 Added Passive Skill is Replenishing Presence", + ["type"] = "explicit", + }, + }, + ["7778_AfflictionNotableRiotQueller"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_254194892", + ["text"] = "1 Added Passive Skill is Riot Queller", + ["type"] = "explicit", + }, + }, + ["7779_AfflictionNotableRotResistant"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_713945233", + ["text"] = "1 Added Passive Skill is Rot-Resistant", + ["type"] = "explicit", + }, + }, + ["7780_AfflictionNotableRoteReinforcement"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2478282326", + ["text"] = "1 Added Passive Skill is Rote Reinforcement", + ["type"] = "explicit", + }, + }, + ["7781_AfflictionNotableRottenClaws"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2289610642", + ["text"] = "1 Added Passive Skill is Rotten Claws", + ["type"] = "explicit", + }, + }, + ["7782_AfflictionNotableRunThrough"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1488030420", + ["text"] = "1 Added Passive Skill is Run Through", + ["type"] = "explicit", + }, + }, + ["7783_AfflictionNotableSadist"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3638731729", + ["text"] = "1 Added Passive Skill is Sadist", + ["type"] = "explicit", + }, + }, + ["7784_AfflictionNotableSage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_478147593", + ["text"] = "1 Added Passive Skill is Sage", + ["type"] = "explicit", + }, + }, + ["7785_AfflictionNotableSapPsyche"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_715786975", + ["text"] = "1 Added Passive Skill is Sap Psyche", + ["type"] = "explicit", + }, + }, + ["7786_AfflictionNotableSavageResponse"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4222635921", + ["text"] = "1 Added Passive Skill is Savage Response", + ["type"] = "explicit", + }, + }, + ["7787_AfflictionNotableSavourtheMoment"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3539175001", + ["text"] = "1 Added Passive Skill is Savour the Moment", + ["type"] = "explicit", + }, + }, + ["7788_AfflictionNotableScintillatingIdea"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2589589781", + ["text"] = "1 Added Passive Skill is Scintillating Idea", + ["type"] = "explicit", + }, + }, + ["7789_AfflictionNotableSealMender"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_876846990", + ["text"] = "1 Added Passive Skill is Seal Mender", + ["type"] = "explicit", + }, + }, + ["7790_AfflictionNotableSecondSkin"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2773515950", + ["text"] = "1 Added Passive Skill is Second Skin", + ["type"] = "explicit", + }, + }, + ["7791_AfflictionNotableSeekerRunes"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2261237498", + ["text"] = "1 Added Passive Skill is Seeker Runes", + ["type"] = "explicit", + }, + }, + ["7792_AfflictionNotableSelfFulfillingProphecy"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2644533453", + ["text"] = "1 Added Passive Skill is Self-Fulfilling Prophecy", + ["type"] = "explicit", + }, + }, + ["7793_AfflictionNotableSepticSpells"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4290522695", + ["text"] = "1 Added Passive Skill is Septic Spells", + ["type"] = "explicit", + }, + }, + ["7794_AfflictionNotableSetandForget"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1101250813", + ["text"] = "1 Added Passive Skill is Set and Forget", + ["type"] = "explicit", + }, + }, + ["7795_AfflictionNotableShiftingShadow"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1476913894", + ["text"] = "1 Added Passive Skill is Shifting Shadow", + ["type"] = "explicit", + }, + }, + ["7796_AfflictionNotableShriekingBolts"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2783012144", + ["text"] = "1 Added Passive Skill is Shrieking Bolts", + ["type"] = "explicit", + }, + }, + ["7797_AfflictionNotableSkeletalAtrophy"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1290215329", + ["text"] = "1 Added Passive Skill is Skeletal Atrophy", + ["type"] = "explicit", + }, + }, + ["7798_AfflictionNotableSkullbreaker"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_315697256", + ["text"] = "1 Added Passive Skill is Skullbreaker", + ["type"] = "explicit", + }, + }, + ["7799_AfflictionNotableSleeplessSentries"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3993957711", + ["text"] = "1 Added Passive Skill is Sleepless Sentries", + ["type"] = "explicit", + }, + }, + ["7800_AfflictionNotableSmitetheWeak"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_540300548", + ["text"] = "1 Added Passive Skill is Smite the Weak", + ["type"] = "explicit", + }, + }, + ["7801_AfflictionNotableSmokingRemains"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2322980282", + ["text"] = "1 Added Passive Skill is Smoking Remains", + ["type"] = "explicit", + }, + }, + ["7802_AfflictionNotableSnaringSpirits"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3319205340", + ["text"] = "1 Added Passive Skill is Snaring Spirits", + ["type"] = "explicit", + }, + }, + ["7803_AfflictionNotableSnowstorm"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1595367309", + ["text"] = "1 Added Passive Skill is Snowstorm", + ["type"] = "explicit", + }, + }, + ["7804_AfflictionNotableSpecialReserve"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4235300427", + ["text"] = "1 Added Passive Skill is Special Reserve", + ["type"] = "explicit", + }, + }, + ["7805_AfflictionNotableSpikedConcoction"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3372255769", + ["text"] = "1 Added Passive Skill is Spiked Concoction", + ["type"] = "explicit", + }, + }, + ["7806_AfflictionNotableSpringBack"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3603695769", + ["text"] = "1 Added Passive Skill is Spring Back", + ["type"] = "explicit", + }, + }, + ["7807_AfflictionNotableStalwartCommander"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2350668735", + ["text"] = "1 Added Passive Skill is Volatile Presence", + ["type"] = "explicit", + }, + }, + ["7808_AfflictionNotableSteadyTorment"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3500334379", + ["text"] = "1 Added Passive Skill is Steady Torment", + ["type"] = "explicit", + }, + }, + ["7809_AfflictionNotableStoicFocus"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1088949570", + ["text"] = "1 Added Passive Skill is Stoic Focus", + ["type"] = "explicit", + }, + }, + ["7810_AfflictionNotableStormDrinker"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2087561637", + ["text"] = "1 Added Passive Skill is Storm Drinker", + ["type"] = "explicit", + }, + }, + ["7811_AfflictionNotableStormrider"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_889728548", + ["text"] = "1 Added Passive Skill is Stormrider", + ["type"] = "explicit", + }, + }, + ["7812_AfflictionNotableStormsHand"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1122051203", + ["text"] = "1 Added Passive Skill is Storm's Hand", + ["type"] = "explicit", + }, + }, + ["7813_AfflictionNotableStreamlined"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1397498432", + ["text"] = "1 Added Passive Skill is Streamlined", + ["type"] = "explicit", + }, + }, + ["7814_AfflictionNotableStrikeLeader"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_282062371", + ["text"] = "1 Added Passive Skill is Strike Leader", + ["type"] = "explicit", + }, + }, + ["7815_AfflictionNotableStubbornStudent"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2383914651", + ["text"] = "1 Added Passive Skill is Stubborn Student", + ["type"] = "explicit", + }, + }, + ["7816_AfflictionNotableStudentofDecay"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3202667190", + ["text"] = "1 Added Passive Skill is Student of Decay", + ["type"] = "explicit", + }, + }, + ["7817_AfflictionNotableSublimeSensation"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1364858171", + ["text"] = "1 Added Passive Skill is Sublime Sensation", + ["type"] = "explicit", + }, + }, + ["7818_AfflictionNotableSummerCommander"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3881737087", + ["text"] = "1 Added Passive Skill is Mortifying Aspect", + ["type"] = "explicit", + }, + }, + ["7819_AfflictionNotableSupercharge"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3226074658", + ["text"] = "1 Added Passive Skill is Supercharge", + ["type"] = "explicit", + }, + }, + ["7820_AfflictionNotableSurefootedStriker"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3410752193", + ["text"] = "1 Added Passive Skill is Surefooted Striker", + ["type"] = "explicit", + }, + }, + ["7821_AfflictionNotableSurgingVitality"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2410501331", + ["text"] = "1 Added Passive Skill is Surging Vitality", + ["type"] = "explicit", + }, + }, + ["7822_AfflictionNotableSurpriseSabotage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3051562738", + ["text"] = "1 Added Passive Skill is Surprise Sabotage", + ["type"] = "explicit", + }, + }, + ["7823_AfflictionNotableTemperedArrowheads"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2631806437", + ["text"] = "1 Added Passive Skill is Tempered Arrowheads", + ["type"] = "explicit", + }, + }, + ["7824_AfflictionNotableThaumophage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_177215332", + ["text"] = "1 Added Passive Skill is Thaumophage", + ["type"] = "explicit", + }, + }, + ["7825_AfflictionNotableThunderstruck"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1741700339", + ["text"] = "1 Added Passive Skill is Thunderstruck", + ["type"] = "explicit", + }, + }, + ["7826_AfflictionNotableTitanicSwings"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2930275641", + ["text"] = "1 Added Passive Skill is Titanic Swings", + ["type"] = "explicit", + }, + }, + ["7827_AfflictionNotableTouchofCruelty"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2780712583", + ["text"] = "1 Added Passive Skill is Touch of Cruelty", + ["type"] = "explicit", + }, + }, + ["7828_AfflictionNotableToweringThreat"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3536778624", + ["text"] = "1 Added Passive Skill is Towering Threat", + ["type"] = "explicit", + }, + }, + ["7829_AfflictionNotableUnholyGrace"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4186213466", + ["text"] = "1 Added Passive Skill is Unholy Grace", + ["type"] = "explicit", + }, + }, + ["7830_AfflictionNotableUnspeakableGifts"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_729163974", + ["text"] = "1 Added Passive Skill is Unspeakable Gifts", + ["type"] = "explicit", + }, + }, + ["7831_AfflictionNotableUntouchable"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2758966888", + ["text"] = "1 Added Passive Skill is Untouchable", + ["type"] = "explicit", + }, + }, + ["7832_AfflictionNotableUnwaveringFocus"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_367638058", + ["text"] = "1 Added Passive Skill is Unwavering Focus", + ["type"] = "explicit", + }, + }, + ["7833_AfflictionNotableUnwaveringlyEvil"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2788982914", + ["text"] = "1 Added Passive Skill is Unwaveringly Evil", + ["type"] = "explicit", + }, + }, + ["7834_AfflictionNotableVastPower"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1996576560", + ["text"] = "1 Added Passive Skill is Vast Power", + ["type"] = "explicit", + }, + }, + ["7835_AfflictionNotableVengefulCommander"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2620267328", + ["text"] = "1 Added Passive Skill is Righteous Path", + ["type"] = "explicit", + }, + }, + ["7836_AfflictionNotableVeteranDefender"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_664010431", + ["text"] = "1 Added Passive Skill is Veteran Defender", + ["type"] = "explicit", + }, + }, + ["7837_AfflictionNotableViciousBite"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_882876854", + ["text"] = "1 Added Passive Skill is Vicious Bite", + ["type"] = "explicit", + }, + }, + ["7838_AfflictionNotableViciousGuard"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4054656914", + ["text"] = "1 Added Passive Skill is Vicious Guard", + ["type"] = "explicit", + }, + }, + ["7839_AfflictionNotableViciousSkewering"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_567971948", + ["text"] = "1 Added Passive Skill is Vicious Skewering", + ["type"] = "explicit", + }, + }, + ["7840_AfflictionNotableVictimMaker"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1936135020", + ["text"] = "1 Added Passive Skill is Victim Maker", + ["type"] = "explicit", + }, + }, + ["7841_AfflictionNotableVileReinvigoration"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_647201233", + ["text"] = "1 Added Passive Skill is Vile Reinvigoration", + ["type"] = "explicit", + }, + }, + ["7842_AfflictionNotableVitalFocus"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2134141047", + ["text"] = "1 Added Passive Skill is Vital Focus", + ["type"] = "explicit", + }, + }, + ["7843_AfflictionNotableVividHues"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3957006524", + ["text"] = "1 Added Passive Skill is Vivid Hues", + ["type"] = "explicit", + }, + }, + ["7844_AfflictionNotableWallofMuscle"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1363668533", + ["text"] = "1 Added Passive Skill is Wall of Muscle", + ["type"] = "explicit", + }, + }, + ["7845_AfflictionNotableWardbreaker"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2454339320", + ["text"] = "1 Added Passive Skill is Forbidden Words", + ["type"] = "explicit", + }, + }, + ["7846_AfflictionNotableWarningCall"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_578355556", + ["text"] = "1 Added Passive Skill is Warning Call", + ["type"] = "explicit", + }, + }, + ["7847_AfflictionNotableWastingAffliction"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2066820199", + ["text"] = "1 Added Passive Skill is Wasting Affliction", + ["type"] = "explicit", + }, + }, + ["7848_AfflictionNotableWeightAdvantage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2244243943", + ["text"] = "1 Added Passive Skill is Weight Advantage", + ["type"] = "explicit", + }, + }, + ["7849_AfflictionNotableWhispersofDeath"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_156080652", + ["text"] = "1 Added Passive Skill is Evil Eye", + ["type"] = "explicit", + }, + }, + ["7850_AfflictionNotableWickedPall"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1616734644", + ["text"] = "1 Added Passive Skill is Wicked Pall", + ["type"] = "explicit", + }, + }, + ["7851_AfflictionNotableWidespreadDestruction"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1678643716", + ["text"] = "1 Added Passive Skill is Widespread Destruction", + ["type"] = "explicit", + }, + }, + ["7852_AfflictionNotableWillShaper"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1162352537", + ["text"] = "1 Added Passive Skill is Will Shaper", + ["type"] = "explicit", + }, + }, + ["7853_AfflictionNotableWindup"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1938661964", + ["text"] = "1 Added Passive Skill is Wind-up", + ["type"] = "explicit", + }, + }, + ["7854_AfflictionNotableWinterCommander"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_792262925", + ["text"] = "1 Added Passive Skill is Frantic Aspect", + ["type"] = "explicit", + }, + }, + ["7855_AfflictionNotableWinterProwler"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_755881431", + ["text"] = "1 Added Passive Skill is Winter Prowler", + ["type"] = "explicit", + }, + }, + ["7856_AfflictionNotableWishforDeath"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_608164368", + ["text"] = "1 Added Passive Skill is Wish for Death", + ["type"] = "explicit", + }, + }, + ["7857_AfflictionNotableWizardry"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3078065247", + ["text"] = "1 Added Passive Skill is Wizardry", + ["type"] = "explicit", + }, + }, + ["7858_AfflictionNotableWoundAggravation"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_69078820", + ["text"] = "1 Added Passive Skill is Wound Aggravation", + ["type"] = "explicit", + }, + }, + ["7859_AfflictionNotableWrappedinFlame"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_241783558", + ["text"] = "1 Added Passive Skill is Wrapped in Flame", + ["type"] = "explicit", + }, + }, + }, ["Scourge"] = { - ["10019_ReducedShockEffectOnSelf"] = { + ["10018_ReducedShockEffectOnSelf"] = { ["Ring"] = { - ["max"] = 40, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_3801067695", - ["text"] = "#% reduced Effect of Shock on you", - ["type"] = "enchant", - }, - }, - ["1075_LocalAttributeRequirements"] = { + ["max"] = 40, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3801067695", + ["text"] = "#% reduced Effect of Shock on you", + ["type"] = "enchant", + }, + }, + ["10800_PointBlank"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2896346114", + ["text"] = "Point Blank", + ["type"] = "enchant", + }, + }, + ["1080_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", + }, + }, + ["10815_IronGrip"] = { ["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_573347393", + ["text"] = "Iron Grip", + ["type"] = "enchant", + }, + }, + ["10828_IronWill"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_573347393", - ["text"] = "Iron Grip", - ["type"] = "enchant", - }, - }, - ["10829_IronWill"] = { - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_4092697134", - ["text"] = "Iron Will", - ["type"] = "enchant", - }, - }, - ["1223_SpellDamage"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4092697134", + ["text"] = "Iron Will", + ["type"] = "enchant", + }, + }, + ["1228_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", - }, - }, - ["1362_LocalFireDamage"] = { + ["max"] = 50, + ["min"] = 23, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "enchant", + }, + }, + ["1367_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", - }, - }, - ["1371_LocalColdDamage"] = { + ["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", + }, + }, + ["1376_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", - }, - }, - ["1382_LocalLightningDamage"] = { + ["max"] = 50, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "enchant", + }, + }, + ["1387_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", - }, - }, - ["1390_LocalChaosDamage"] = { + ["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", + }, + }, + ["1395_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", - }, - }, - ["1446_IncreasedCastSpeed"] = { + ["max"] = 24, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", + ["type"] = "enchant", + }, + }, + ["1451_IncreasedCastSpeed"] = { ["Amulet"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "enchant", - }, - }, - ["1565_EnergyShieldRegeneration"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "enchant", + }, + }, + ["1570_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", - }, - }, - ["1609_GlobalIncreasePhysicalSpellSkillGemLevel"] = { + ["max"] = 25, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "enchant", + }, + }, + ["1614_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", - }, - }, - ["1610_GlobalIncreaseFireSpellSkillGemLevel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1600707273", + ["text"] = "+# to Level of all Physical Spell Skill Gems", + ["type"] = "enchant", + }, + }, + ["1615_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", - }, - }, - ["1611_GlobalIncreaseColdSpellSkillGemLevel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_591105508", + ["text"] = "+# to Level of all Fire Spell Skill Gems", + ["type"] = "enchant", + }, + }, + ["1616_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", - }, - }, - ["1612_GlobalIncreaseLightningSpellSkillGemLevel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2254480358", + ["text"] = "+# to Level of all Cold Spell Skill Gems", + ["type"] = "enchant", + }, + }, + ["1617_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", - }, - }, - ["1613_GlobalIncreaseChaosSpellSkillGemLevel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1545858329", + ["text"] = "+# to Level of all Lightning Spell Skill Gems", + ["type"] = "enchant", + }, + }, + ["1618_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", - }, - }, - ["1645_ChillEffectivenessOnSelf"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4226189338", + ["text"] = "+# to Level of all Chaos Spell Skill Gems", + ["type"] = "enchant", + }, + }, + ["1650_ChillEffectivenessOnSelf"] = { ["Ring"] = { - ["max"] = 40, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1478653032", - ["text"] = "#% reduced Effect of Chill on you", - ["type"] = "enchant", - }, - }, - ["1749_MaximumLifeOnKillPercent"] = { + ["max"] = 40, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1478653032", + ["text"] = "#% reduced Effect of Chill on you", + ["type"] = "enchant", + }, + }, + ["1754_MaximumLifeOnKillPercent"] = { ["Chest"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2023107756", - ["text"] = "Recover #% of Life on Kill", - ["type"] = "enchant", - }, - }, - ["1751_MaximumManaOnKillPercent"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2023107756", + ["text"] = "Recover #% of Life on Kill", + ["type"] = "enchant", + }, + }, + ["1756_MaximumManaOnKillPercent"] = { ["Chest"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1030153674", - ["text"] = "Recover #% of Mana on Kill", - ["type"] = "enchant", - }, - }, - ["1766_MinionLife"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1030153674", + ["text"] = "Recover #% of Mana on Kill", + ["type"] = "enchant", + }, + }, + ["1771_MinionLife"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "enchant", - }, - }, - ["1798_MovementVelocity"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "enchant", + }, + }, + ["1803_MovementVelocity"] = { ["Boots"] = { - ["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", - }, - }, - ["1844_ChanceToAvoidFreezeAndChill"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "enchant", + }, + }, + ["1849_ChanceToAvoidFreezeAndChill"] = { ["Ring"] = { - ["max"] = 40, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_3483999943", - ["text"] = "#% chance to Avoid being Chilled", - ["type"] = "enchant", - }, - }, - ["1845_ChanceToAvoidFreezeAndChill"] = { + ["max"] = 40, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", + ["type"] = "enchant", + }, + }, + ["184_LocalIncreaseSocketedMeleeGemLevel"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_829382474", + ["text"] = "+# to Level of Socketed Melee Gems", + ["type"] = "enchant", + }, + }, + ["1850_ChanceToAvoidFreezeAndChill"] = { ["Ring"] = { - ["max"] = 40, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", - ["type"] = "enchant", - }, - }, - ["1846_AvoidIgnite"] = { + ["max"] = 40, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "enchant", + }, + }, + ["1851_AvoidIgnite"] = { ["Ring"] = { - ["max"] = 40, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1783006896", - ["text"] = "#% chance to Avoid being Ignited", - ["type"] = "enchant", - }, - }, - ["1848_AvoidShock"] = { + ["max"] = 40, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", + ["type"] = "enchant", + }, + }, + ["1853_AvoidShock"] = { ["Ring"] = { - ["max"] = 40, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", - ["type"] = "enchant", - }, - }, - ["1849_ChanceToAvoidPoison"] = { + ["max"] = 40, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "enchant", + }, + }, + ["1854_ChanceToAvoidPoison"] = { ["Ring"] = { - ["max"] = 40, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_4053951709", - ["text"] = "#% chance to Avoid being Poisoned", - ["type"] = "enchant", - }, - }, - ["1851_AvoidStun"] = { + ["max"] = 40, + ["min"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", + ["type"] = "enchant", + }, + }, + ["1856_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", - }, - }, - ["1874_ReducedFreezeDuration"] = { + ["max"] = 25, + ["min"] = 17, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "enchant", + }, + }, + ["1879_ReducedFreezeDuration"] = { ["Helmet"] = { - ["max"] = 40, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", - ["type"] = "enchant", - }, - }, - ["1875_ReducedBurnDuration"] = { + ["max"] = 40, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "enchant", + }, + }, + ["1880_ReducedBurnDuration"] = { ["Ring"] = { - ["max"] = 40, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", - ["type"] = "enchant", - }, - }, - ["1973_MinionDamage"] = { + ["max"] = 40, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "enchant", + }, + }, + ["1978_MinionDamage"] = { ["Gloves"] = { - ["max"] = 15, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "enchant", - }, - }, - ["2026_ChanceToIgnite"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "enchant", + }, + }, + ["2031_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", - }, - }, - ["2029_ChanceToFreeze"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "enchant", + }, + }, + ["2034_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", - }, - }, - ["2033_ChanceToShock"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "enchant", + }, + }, + ["2038_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", - }, - }, - ["2039_CullingStrike"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "enchant", + }, + }, + ["2044_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, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2524254339", - ["text"] = "Culling Strike", - ["type"] = "enchant", - }, - }, - ["2500_LightRadius"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2524254339", + ["text"] = "Culling Strike", + ["type"] = "enchant", + }, + }, + ["2505_LightRadius"] = { ["Helmet"] = { - ["max"] = 35, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1263695895", - ["text"] = "#% increased Light Radius", - ["type"] = "enchant", - }, - }, - ["2519_TemporalChainsOnHit"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_4139135963", - ["text"] = "Curse Enemies with Temporal Chains on Hit", - ["type"] = "enchant", - }, - }, - ["2578_SummonTotemCastSpeed"] = { + ["max"] = 35, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "enchant", + }, + }, + ["2524_TemporalChainsOnHit"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4139135963", + ["text"] = "Curse Enemies with Temporal Chains on Hit", + ["type"] = "enchant", + }, + }, + ["2583_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", - }, - }, - ["2629_EnduranceChargeOnKillChance"] = { + ["max"] = 30, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "enchant", + }, + }, + ["2634_EnduranceChargeOnKillChance"] = { ["Ring"] = { - ["max"] = 12, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1054322244", - ["text"] = "#% chance to gain an Endurance Charge on Kill", - ["type"] = "enchant", - }, - }, - ["2631_FrenzyChargeOnKillChance"] = { + ["max"] = 12, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["type"] = "enchant", + }, + }, + ["2636_FrenzyChargeOnKillChance"] = { ["Ring"] = { - ["max"] = 12, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1826802197", - ["text"] = "#% chance to gain a Frenzy Charge on Kill", - ["type"] = "enchant", - }, - }, - ["2633_PowerChargeOnKillChance"] = { + ["max"] = 12, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["type"] = "enchant", + }, + }, + ["2638_PowerChargeOnKillChance"] = { ["Ring"] = { - ["max"] = 12, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2483795307", - ["text"] = "#% chance to gain a Power Charge on Kill", - ["type"] = "enchant", - }, - }, - ["2745_LocalMeleeWeaponRange"] = { + ["max"] = 12, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", + ["type"] = "enchant", + }, + }, + ["2750_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", - }, - }, - ["2824_ReturningAttackProjectiles"] = { + ["max"] = 0.4, + ["min"] = 0.1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_350598685", + ["text"] = "+# metres to Weapon Range", + ["type"] = "enchant", + }, + }, + ["2829_ReturningAttackProjectiles"] = { ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1658124062", - ["text"] = "Attack Projectiles Return to you", - ["type"] = "enchant", - }, - }, - ["5026_ColdExposureOnHit"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1658124062", + ["text"] = "Attack Projectiles Return to you", + ["type"] = "enchant", + }, + }, + ["5031_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", - }, - }, - ["5027_FireExposureOnHit"] = { + ["max"] = 12, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2630708439", + ["text"] = "#% chance to inflict Cold Exposure on Hit", + ["type"] = "enchant", + }, + }, + ["5032_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", - }, - }, - ["5028_LightningExposureOnHit"] = { + ["max"] = 12, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3602667353", + ["text"] = "#% chance to inflict Fire Exposure on Hit", + ["type"] = "enchant", + }, + }, + ["5033_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", - }, - }, - ["1138_BlockPercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", - ["type"] = "implicit", - }, - }, - ["1141_SpellDamageSuppressed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4116705863", - ["text"] = "Prevent +#% of Suppressed Spell Damage", - ["type"] = "implicit", - }, - }, - ["1142_ChanceToSuppressSpellsOld"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3680664274", - ["text"] = "+#% chance to Suppress Spell Damage", - ["type"] = "implicit", - }, - }, - ["1160_SpellBlockPercentage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", - ["type"] = "implicit", - }, - }, - ["1176_AllAttributes"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1379411836", - ["text"] = "+# to all Attributes", - ["type"] = "implicit", - }, - }, - ["1177_StrengthImplicit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4080418644", - ["text"] = "+# to Strength", - ["type"] = "implicit", - }, - }, - ["1178_DexterityImplicit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3261801346", - ["text"] = "+# to Dexterity", - ["type"] = "implicit", - }, - }, - ["1179_IntelligenceImplicit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_328541901", - ["text"] = "+# to Intelligence", - ["type"] = "implicit", - }, - }, - ["1183_PercentageAllAttributes"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3143208761", - ["text"] = "#% increased Attributes", - ["type"] = "implicit", - }, - }, - ["1184_PercentageStrength"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_734614379", - ["text"] = "#% increased Strength", - ["type"] = "implicit", - }, - }, - ["1185_PercentageDexterity"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4139681126", - ["text"] = "#% increased Dexterity", - ["type"] = "implicit", - }, - }, - ["1186_PercentageIntelligence"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_656461285", - ["text"] = "#% increased Intelligence", - ["type"] = "implicit", - }, - }, - ["1191_AllDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2154246560", - ["text"] = "#% increased Damage", - ["type"] = "implicit", - }, - }, - ["1198_AttackDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2843214518", - ["text"] = "#% increased Attack Damage", - ["type"] = "implicit", - }, - }, - ["1210_DegenerationDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_967627487", - ["text"] = "#% increased Damage over Time", - ["type"] = "implicit", - }, - }, - ["1217_DamageWhileLeechingLife"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3591306273", - ["text"] = "#% increased Damage while Leeching Life", - ["type"] = "implicit", - }, - }, - ["1219_DamageWhileLeechingMana"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1994684426", - ["text"] = "#% increased Damage while Leeching Mana", - ["type"] = "implicit", - }, - }, - ["1223_SpellDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "implicit", - }, - }, - ["1227_SpellDamageWithStaff"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3496944181", - ["text"] = "#% increased Spell Damage while wielding a Staff", - ["type"] = "implicit", - }, - }, - ["1229_SpellDamageWithShield"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1766142294", - ["text"] = "#% increased Spell Damage while holding a Shield", - ["type"] = "implicit", - }, - }, - ["1230_SpellDamageWithDualWield"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1678690824", - ["text"] = "#% increased Spell Damage while Dual Wielding", - ["type"] = "implicit", - }, - }, - ["1231_PhysicalDamagePercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", - ["type"] = "implicit", - }, - }, - ["1232_LocalPhysicalDamagePercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "implicit", - }, - }, - ["1234_MeleeDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", - ["type"] = "implicit", - }, - }, - ["1256_ColdDamageOverTimeMultiplier"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1950806024", - ["text"] = "+#% to Cold Damage over Time Multiplier", - ["type"] = "implicit", - }, - }, - ["1259_ChaosDamageOverTimeMultiplier"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4055307827", - ["text"] = "+#% to Chaos Damage over Time Multiplier", - ["type"] = "implicit", - }, - }, - ["1276_LocalPhysicalDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Physical Damage", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1940865751", - ["text"] = "Adds # to # Physical Damage (Local)", - ["type"] = "implicit", - }, - }, - ["1276_LocalPhysicalDamageTwoHanded"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Physical Damage", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1940865751", - ["text"] = "Adds # to # Physical Damage (Local)", - ["type"] = "implicit", - }, - }, - ["1303_AxeIncreasedPhysicalDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2008219439", - ["text"] = "#% increased Physical Damage with Axes", - ["type"] = "implicit", - }, - }, - ["1307_StaffIncreasedPhysicalDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3150705301", - ["text"] = "#% increased Physical Damage with Staves", - ["type"] = "implicit", - }, - }, - ["1315_ClawIncreasedPhysicalDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_635761691", - ["text"] = "#% increased Physical Damage with Claws", - ["type"] = "implicit", - }, - }, - ["1321_DaggerIncreasedPhysicalDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3882531569", - ["text"] = "#% increased Physical Damage with Daggers", - ["type"] = "implicit", - }, - }, - ["1327_MaceIncreasedPhysicalDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3774831856", - ["text"] = "#% increased Physical Damage with Maces or Sceptres", - ["type"] = "implicit", - }, - }, - ["1333_BowIncreasedPhysicalDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_402920808", - ["text"] = "#% increased Physical Damage with Bows", - ["type"] = "implicit", - }, - }, - ["1338_SwordIncreasedPhysicalDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3814560373", - ["text"] = "#% increased Physical Damage with Swords", - ["type"] = "implicit", - }, - }, - ["1345_WandIncreasedPhysicalDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2769075491", - ["text"] = "#% increased Physical Damage with Wands", - ["type"] = "implicit", - }, - }, - ["1357_FireDamagePercentage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "implicit", - }, - }, - ["1359_GlobalAddedFireDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_321077055", - ["text"] = "Adds # to # Fire Damage", - ["type"] = "implicit", - }, - }, - ["1362_LocalFireDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Fire Damage", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage (Local)", - ["type"] = "implicit", - }, - }, - ["1362_LocalFireDamageTwoHand"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Fire Damage", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage (Local)", - ["type"] = "implicit", - }, - }, - ["1366_ColdDamagePercentage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "implicit", - }, - }, - ["1368_GlobalAddedColdDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2387423236", - ["text"] = "Adds # to # Cold Damage", - ["type"] = "implicit", - }, - }, - ["1371_LocalColdDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Cold Damage", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage (Local)", - ["type"] = "implicit", - }, - }, - ["1371_LocalColdDamageTwoHand"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Cold Damage", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage (Local)", - ["type"] = "implicit", - }, - }, - ["1377_LightningDamagePercentage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "implicit", - }, - }, - ["1379_GlobalAddedLightningDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1334060246", - ["text"] = "Adds # to # Lightning Damage", - ["type"] = "implicit", - }, - }, - ["1382_LocalLightningDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Lightning Damage", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage (Local)", - ["type"] = "implicit", - }, - }, - ["1382_LocalLightningDamageTwoHand"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Lightning Damage", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage (Local)", - ["type"] = "implicit", - }, - }, - ["1385_IncreasedChaosDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "implicit", - }, - }, - ["1386_GlobalAddedChaosDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3531280422", - ["text"] = "Adds # to # Chaos Damage", - ["type"] = "implicit", - }, - }, - ["1390_LocalChaosDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Chaos Damage", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2223678961", - ["text"] = "Adds # to # Chaos Damage (Local)", - ["type"] = "implicit", - }, - }, - ["1390_LocalChaosDamageTwoHand"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Chaos Damage", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2223678961", - ["text"] = "Adds # to # Chaos Damage (Local)", - ["type"] = "implicit", - }, - }, - ["1404_SpellAddedFireDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", - ["type"] = "implicit", - }, - }, - ["1404_SpellAddedFireDamageTwoHand"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", - ["type"] = "implicit", - }, - }, - ["1405_SpellAddedColdDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", - ["type"] = "implicit", - }, - }, - ["1405_SpellAddedColdDamageTwoHand"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", - ["type"] = "implicit", - }, - }, - ["1406_SpellAddedLightningDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", - ["type"] = "implicit", - }, - }, - ["1406_SpellAddedLightningDamageTwoHand"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", - ["type"] = "implicit", - }, - }, - ["1410_IncreasedAttackSpeed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "implicit", - }, - }, - ["1413_LocalIncreasedAttackSpeed"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Attack Speed", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "implicit", - }, - }, - ["1420_AxeIncreasedAttackSpeed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3550868361", - ["text"] = "#% increased Attack Speed with Axes", - ["type"] = "implicit", - }, - }, - ["1421_StaffIncreasedAttackSpeed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1394963553", - ["text"] = "#% increased Attack Speed with Staves", - ["type"] = "implicit", - }, - }, - ["1422_ClawIncreasedAttackSpeed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1421645223", - ["text"] = "#% increased Attack Speed with Claws", - ["type"] = "implicit", - }, - }, - ["1423_DaggerIncreasedAttackSpeed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2538566497", - ["text"] = "#% increased Attack Speed with Daggers", - ["type"] = "implicit", - }, - }, - ["1424_MaceIncreasedAttackSpeed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2515515064", - ["text"] = "#% increased Attack Speed with Maces or Sceptres", - ["type"] = "implicit", - }, - }, - ["1425_BowIncreasedAttackSpeed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3759735052", - ["text"] = "#% increased Attack Speed with Bows", - ["type"] = "implicit", - }, - }, - ["1426_SwordIncreasedAttackSpeed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3293699237", - ["text"] = "#% increased Attack Speed with Swords", - ["type"] = "implicit", - }, - }, - ["1427_WandIncreasedAttackSpeed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3720627346", - ["text"] = "#% increased Attack Speed with Wands", - ["type"] = "implicit", - }, - }, - ["1433_IncreasedAccuracy"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_803737631", - ["text"] = "+# to Accuracy Rating", - ["type"] = "implicit", - }, - }, - ["1434_IncreasedAccuracyPercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", - ["type"] = "implicit", - }, - }, - ["1434_LocalAccuracyRatingIncrease"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", - ["type"] = "implicit", - }, - }, - ["1438_AxeIncreasedAccuracyRating"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2538120572", - ["text"] = "#% increased Accuracy Rating with Axes", - ["type"] = "implicit", - }, - }, - ["1439_StaffIncreasedAccuracyRating"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1617235962", - ["text"] = "#% increased Accuracy Rating with Staves", - ["type"] = "implicit", - }, - }, - ["1440_ClawIncreasedAccuracyRating"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1297965523", - ["text"] = "#% increased Accuracy Rating with Claws", - ["type"] = "implicit", - }, - }, - ["1441_DaggerIncreasedAccuracyRating"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2054715690", - ["text"] = "#% increased Accuracy Rating with Daggers", - ["type"] = "implicit", - }, - }, - ["1442_MaceIncreasedAccuracyRating"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3208450870", - ["text"] = "#% increased Accuracy Rating with Maces or Sceptres", - ["type"] = "implicit", - }, - }, - ["1443_BowIncreasedAccuracyRating"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_169946467", - ["text"] = "#% increased Accuracy Rating with Bows", - ["type"] = "implicit", - }, - }, - ["1444_SwordIncreasedAccuracyRating"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2090868905", - ["text"] = "#% increased Accuracy Rating with Swords", - ["type"] = "implicit", - }, - }, - ["1445_WandIncreasedAccuracyRating"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2150183156", - ["text"] = "#% increased Accuracy Rating with Wands", - ["type"] = "implicit", - }, - }, - ["1446_IncreasedCastSpeed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "implicit", - }, - }, - ["1447_CastSpeedWithDualWield"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2382196858", - ["text"] = "#% increased Cast Speed while Dual Wielding", - ["type"] = "implicit", - }, - }, - ["1448_CastSpeedWithShield"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1612163368", - ["text"] = "#% increased Cast Speed while holding a Shield", - ["type"] = "implicit", - }, - }, - ["1449_CastSpeedWithStaff"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2066542501", - ["text"] = "#% increased Cast Speed while wielding a Staff", - ["type"] = "implicit", - }, - }, - ["1458_SpellCriticalStrikeChance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_737908626", - ["text"] = "#% increased Spell Critical Strike Chance", - ["type"] = "implicit", - }, - }, - ["1459_CriticalStrikeChance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", - ["type"] = "implicit", - }, - }, - ["1464_LocalCriticalStrikeChance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", - ["type"] = "implicit", - }, - }, - ["1488_CriticalStrikeMultiplier"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3556824919", - ["text"] = "+#% to Global Critical Strike Multiplier", - ["type"] = "implicit", - }, - }, - ["1493_DaggerCriticalStrikeMultiplier"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3998601568", - ["text"] = "+#% to Critical Strike Multiplier with Daggers", - ["type"] = "implicit", - }, - }, - ["1494_MaceCriticalStrikeMultiplier"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_458899422", - ["text"] = "+#% to Critical Strike Multiplier with Maces or Sceptres", - ["type"] = "implicit", - }, - }, - ["1495_AxeCriticalStrikeMultiplier"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4219746989", - ["text"] = "+#% to Critical Strike Multiplier with Axes", - ["type"] = "implicit", - }, - }, - ["1496_BowCriticalStrikeMultiplier"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1712221299", - ["text"] = "+#% to Critical Strike Multiplier with Bows", - ["type"] = "implicit", - }, - }, - ["1497_SwordCriticalStrikeMultiplier"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3114492047", - ["text"] = "+#% to Critical Strike Multiplier with Swords", - ["type"] = "implicit", - }, - }, - ["1498_WandCriticalStrikeMultiplier"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1241396104", - ["text"] = "+#% to Critical Strike Multiplier with Wands", - ["type"] = "implicit", - }, - }, - ["1499_ClawCriticalStrikeMultiplier"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2811834828", - ["text"] = "+#% to Critical Strike Multiplier with Claws", - ["type"] = "implicit", - }, - }, - ["1500_StaffCriticalStrikeMultiplier"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1474913037", - ["text"] = "+#% to Critical Strike Multiplier with Staves", - ["type"] = "implicit", - }, - }, - ["1512_ReducedExtraDamageFromCrits"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3855016469", - ["text"] = "You take #% reduced Extra Damage from Critical Strikes", - ["type"] = "implicit", - }, - }, - ["1517_StunThresholdReduction"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1443060084", - ["text"] = "#% reduced Enemy Stun Threshold", - ["type"] = "implicit", - }, - }, - ["1540_LocalPhysicalDamageReductionRating"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to Armour", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3484657501", - ["text"] = "+# to Armour (Local)", - ["type"] = "implicit", - }, - }, - ["1541_GlobalPhysicalDamageReductionRatingPercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "implicit", - }, - }, - ["1542_LocalPhysicalDamageReductionRatingPercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1062208444", - ["text"] = "#% increased Armour (Local)", - ["type"] = "implicit", - }, - }, - ["1548_LocalEvasionRating"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to Evasion Rating", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_53045048", - ["text"] = "+# to Evasion Rating (Local)", - ["type"] = "implicit", - }, - }, - ["1549_GlobalEvasionRatingPercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - ["type"] = "implicit", - }, - }, - ["1550_LocalEvasionRatingIncreasePercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Evasion Rating", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", - ["type"] = "implicit", - }, - }, - ["1556_IncreasedEvasionRatingPerFrenzyCharge"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_660404777", - ["text"] = "#% increased Evasion Rating per Frenzy Charge", - ["type"] = "implicit", - }, - }, - ["1558_EnergyShield"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3489782002", - ["text"] = "+# to maximum Energy Shield", - ["type"] = "implicit", - }, - }, - ["1559_LocalEnergyShield"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to maximum Energy Shield", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4052037485", - ["text"] = "+# to maximum Energy Shield (Local)", - ["type"] = "implicit", - }, - }, - ["1560_LocalEnergyShieldPercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Energy Shield", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4015621042", - ["text"] = "#% increased Energy Shield (Local)", - ["type"] = "implicit", - }, - }, - ["1561_GlobalEnergyShieldPercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "implicit", - }, - }, - ["1562_EnergyShieldDelay"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", - ["type"] = "implicit", - }, - }, - ["1565_EnergyShieldRegeneration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", - ["type"] = "implicit", - }, - }, - ["1568_EnergyShieldRecoveryRate"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_988575597", - ["text"] = "#% increased Energy Shield Recovery rate", - ["type"] = "implicit", - }, - }, - ["1569_IncreasedLife"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3299347043", - ["text"] = "+# to maximum Life", - ["type"] = "implicit", - }, - }, - ["1571_MaximumLifeIncreasePercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_983749596", - ["text"] = "#% increased maximum Life", - ["type"] = "implicit", - }, - }, - ["1574_LifeRegeneration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3325883026", - ["text"] = "Regenerate # Life per second", - ["type"] = "implicit", - }, - }, - ["1576_LifeRegenerationPercentPerEnduranceCharge"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_989800292", - ["text"] = "Regenerate #% of Life per second per Endurance Charge", - ["type"] = "implicit", - }, - }, - ["1578_LifeRecoveryRate"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3240073117", - ["text"] = "#% increased Life Recovery rate", - ["type"] = "implicit", - }, - }, - ["1579_IncreasedMana"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1050105434", - ["text"] = "+# to maximum Mana", - ["type"] = "implicit", - }, - }, - ["1580_MaximumManaIncreasePercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", - ["type"] = "implicit", - }, - }, - ["1581_BaseManaRegeneration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3188455409", - ["text"] = "Regenerate #% of Mana per second", - ["type"] = "implicit", - }, - }, - ["1582_AddedManaRegeneration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4291461939", - ["text"] = "Regenerate # Mana per second", - ["type"] = "implicit", - }, - }, - ["1584_ManaRegeneration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "implicit", - }, - }, - ["1586_ManaRecoveryRate"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3513180117", - ["text"] = "#% increased Mana Recovery rate", - ["type"] = "implicit", - }, - }, - ["158_LocalIncreaseSocketedStrengthGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_916797432", - ["text"] = "+# to Level of Socketed Strength Gems", - ["type"] = "implicit", - }, - }, - ["1592_ItemFoundQuantityIncrease"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_884586851", - ["text"] = "#% increased Quantity of Items found", - ["type"] = "implicit", - }, - }, - ["1596_ItemFoundRarityIncrease"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "implicit", - }, - }, - ["1603_ExperienceIncrease"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3666934677", - ["text"] = "#% increased Experience gain", - ["type"] = "implicit", - }, - }, - ["160_LocalIncreaseSocketedDexterityGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2718698372", - ["text"] = "+# to Level of Socketed Dexterity Gems", - ["type"] = "implicit", - }, - }, - ["1619_AllResistances"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2901986750", - ["text"] = "+#% to all Elemental Resistances", - ["type"] = "implicit", - }, - }, - ["161_LocalIncreaseSocketedIntelligenceGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1719423857", - ["text"] = "+# to Level of Socketed Intelligence Gems", - ["type"] = "implicit", - }, - }, - ["1623_MaximumFireResistanceImplicit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4095671657", - ["text"] = "+#% to maximum Fire Resistance", - ["type"] = "implicit", - }, - }, - ["1625_FireResistance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3372524247", - ["text"] = "+#% to Fire Resistance", - ["type"] = "implicit", - }, - }, - ["1629_MaximumColdResistanceImplicit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3676141501", - ["text"] = "+#% to maximum Cold Resistance", - ["type"] = "implicit", - }, - }, - ["162_LocalIncreaseSocketedGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2843100721", - ["text"] = "+# to Level of Socketed Gems", - ["type"] = "implicit", - }, - }, - ["1631_ColdResistance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4220027924", - ["text"] = "+#% to Cold Resistance", - ["type"] = "implicit", - }, - }, - ["1634_MaximumLightningResistanceImplicit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1011760251", - ["text"] = "+#% to maximum Lightning Resistance", - ["type"] = "implicit", - }, - }, - ["1636_LightningResistance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1671376347", - ["text"] = "+#% to Lightning Resistance", - ["type"] = "implicit", - }, - }, - ["1640_MaximumChaosResistanceImplicit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1301765461", - ["text"] = "+#% to maximum Chaos Resistance", - ["type"] = "implicit", - }, - }, - ["1641_ChaosResistance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2923486259", - ["text"] = "+#% to Chaos Resistance", - ["type"] = "implicit", - }, - }, - ["1642_MaximumElementalResistanceImplicit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_569299859", - ["text"] = "+#% to all maximum Resistances", - ["type"] = "implicit", - }, - }, - ["1649_LifeLeechPermyriad"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3593843976", - ["text"] = "#% of Physical Attack Damage Leeched as Life", - ["type"] = "implicit", - }, - }, - ["1651_LifeLeechLocalPermyriad"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Life", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_55876295", - ["text"] = "#% of Physical Attack Damage Leeched as Life (Local)", - ["type"] = "implicit", - }, - }, - ["1664_LifeLeechFromAttacksPermyriad"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_141810208", - ["text"] = "#% of Attack Damage Leeched as Life", - ["type"] = "implicit", - }, - }, - ["1666_PhysicalDamageLifeLeechPermyriad"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3764265320", - ["text"] = "#% of Physical Damage Leeched as Life", - ["type"] = "implicit", - }, - }, - ["1670_FireDamageLifeLeechPermyriad"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3848282610", - ["text"] = "#% of Fire Damage Leeched as Life", - ["type"] = "implicit", - }, - }, - ["1675_ColdDamageLifeLeechPermyriad"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3999401129", - ["text"] = "#% of Cold Damage Leeched as Life", - ["type"] = "implicit", - }, - }, - ["1679_LightningDamageLifeLeechPermyriad"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_80079005", - ["text"] = "#% of Lightning Damage Leeched as Life", - ["type"] = "implicit", - }, - }, - ["167_LocalIncreaseSocketedFireGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_339179093", - ["text"] = "+# to Level of Socketed Fire Gems", - ["type"] = "implicit", - }, - }, - ["1682_ChaosDamageLifeLeechPermyriad"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2238792070", - ["text"] = "#% of Chaos Damage Leeched as Life", - ["type"] = "implicit", - }, - }, - ["1686_ElementalDamageLeechedAsLifePermyriad"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_720395808", - ["text"] = "#% of Elemental Damage Leeched as Life", - ["type"] = "implicit", - }, - }, - ["168_LocalIncreaseSocketedColdGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1645459191", - ["text"] = "+# to Level of Socketed Cold Gems", - ["type"] = "implicit", - }, - }, - ["1699_ManaLeechPermyriad"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3237948413", - ["text"] = "#% of Physical Attack Damage Leeched as Mana", - ["type"] = "implicit", - }, - }, - ["169_LocalIncreaseSocketedLightningGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4043416969", - ["text"] = "+# to Level of Socketed Lightning Gems", - ["type"] = "implicit", - }, - }, - ["1701_ManaLeechLocalPermyriad"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Mana", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_669069897", - ["text"] = "#% of Physical Attack Damage Leeched as Mana (Local)", - ["type"] = "implicit", - }, - }, - ["1705_AttackDamageManaLeech"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_350069479", - ["text"] = "#% of Attack Damage Leeched as Mana", - ["type"] = "implicit", - }, - }, - ["170_LocalIncreaseSocketedChaosGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2675603254", - ["text"] = "+# to Level of Socketed Chaos Gems", - ["type"] = "implicit", - }, - }, - ["1722_EnergyShieldLeechPermyriad"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_11106713", - ["text"] = "#% of Spell Damage Leeched as Energy Shield", - ["type"] = "implicit", - }, - }, - ["1731_MaximumLifeLeechRate"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4118987751", - ["text"] = "#% increased Maximum total Life Recovery per second from Leech", - ["type"] = "implicit", - }, - }, - ["1733_MaximumManaLeechRate"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_96977651", - ["text"] = "#% increased Maximum total Mana Recovery per second from Leech", - ["type"] = "implicit", - }, - }, - ["1734_MaximumEnergyShieldLeechRate"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2013799819", - ["text"] = "#% increased Maximum total Energy Shield Recovery per second from Leech", - ["type"] = "implicit", - }, - }, - ["1738_LifeGainPerTargetLocal"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_821021828", - ["text"] = "Grants # Life per Enemy Hit", - ["type"] = "implicit", - }, - }, - ["1740_LifeGainPerTarget"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", - ["type"] = "implicit", - }, - }, - ["1744_ManaGainPerTarget"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_820939409", - ["text"] = "Gain # Mana per Enemy Hit with Attacks", - ["type"] = "implicit", - }, - }, - ["1747_EnergyShieldGainPerTarget"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_211381198", - ["text"] = "Gain # Energy Shield per Enemy Hit with Attacks", - ["type"] = "implicit", - }, - }, - ["1748_LifeGainedFromEnemyDeath"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3695891184", - ["text"] = "Gain # Life per Enemy Killed", - ["type"] = "implicit", - }, - }, - ["1749_MaximumLifeOnKillPercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2023107756", - ["text"] = "Recover #% of Life on Kill", - ["type"] = "implicit", - }, - }, - ["1751_MaximumManaOnKillPercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1030153674", - ["text"] = "Recover #% of Mana on Kill", - ["type"] = "implicit", - }, - }, - ["1757_GainLifeOnBlock"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_762600725", - ["text"] = "# Life gained when you Block", - ["type"] = "implicit", - }, - }, - ["1758_GainManaOnBlock"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2122183138", - ["text"] = "# Mana gained when you Block", - ["type"] = "implicit", - }, - }, - ["1763_ManaGainedFromEnemyDeath"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1368271171", - ["text"] = "Gain # Mana per Enemy Killed", - ["type"] = "implicit", - }, - }, - ["1766_MinionLife"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "implicit", - }, - }, - ["1769_MinionMovementSpeed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_174664100", - ["text"] = "Minions have #% increased Movement Speed", - ["type"] = "implicit", - }, - }, - ["176_IncreasedSocketedAoEGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2551600084", - ["text"] = "+# to Level of Socketed AoE Gems", - ["type"] = "implicit", - }, - }, - ["177_LocalIncreaseSocketedProjectileGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2176571093", - ["text"] = "+# to Level of Socketed Projectile Gems", - ["type"] = "implicit", - }, - }, - ["178_LocalIncreaseSocketedBowGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2027269580", - ["text"] = "+# to Level of Socketed Bow Gems", - ["type"] = "implicit", - }, - }, - ["1790_AdditionalPierce"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1794_AdditionalArrows"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", - ["type"] = "implicit", - }, - }, - ["1796_ProjectileSpeed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - ["type"] = "implicit", - }, - }, - ["1798_MovementVelocity"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "implicit", - }, - }, - ["179_LocalIncreaseSocketedMeleeGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_829382474", - ["text"] = "+# to Level of Socketed Melee Gems", - ["type"] = "implicit", - }, - }, - ["1803_MinimumEnduranceCharges"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3706959521", - ["text"] = "+# to Minimum Endurance Charges", - ["type"] = "implicit", - }, - }, - ["1804_MaximumEnduranceCharges"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1515657623", - ["text"] = "+# to Maximum Endurance Charges", - ["type"] = "implicit", - }, - }, - ["1808_MinimumFrenzyCharges"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_658456881", - ["text"] = "+# to Minimum Frenzy Charges", - ["type"] = "implicit", - }, - }, - ["1809_MaximumFrenzyCharges"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4078695", - ["text"] = "+# to Maximum Frenzy Charges", - ["type"] = "implicit", - }, - }, - ["180_LocalIncreaseSocketedMinionGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3604946673", - ["text"] = "+# to Level of Socketed Minion Gems", - ["type"] = "implicit", - }, - }, - ["1813_MinimumPowerCharges"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1999711879", - ["text"] = "+# to Minimum Power Charges", - ["type"] = "implicit", - }, - }, - ["1814_IncreasedMaximumPowerCharges"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_227523295", - ["text"] = "+# to Maximum Power Charges", - ["type"] = "implicit", - }, - }, - ["181_LocalIncreaseSocketedAuraLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2452998583", - ["text"] = "+# to Level of Socketed Aura Gems", - ["type"] = "implicit", - }, - }, - ["1830_PowerChargeOnCriticalStrikeChance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3814876985", - ["text"] = "#% chance to gain a Power Charge on Critical Strike", - ["type"] = "implicit", - }, - }, - ["1833_FrenzyChargeOnHitChance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1839_CannotBeIgnited"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_331731406", - ["text"] = "Cannot be Ignited", - ["type"] = "implicit", - }, - }, - ["1841_CannotBeShocked"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_491899612", - ["text"] = "Cannot be Shocked", - ["type"] = "implicit", - }, - }, - ["1843_AvoidElementalStatusAilments"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3005472710", - ["text"] = "#% chance to Avoid Elemental Ailments", - ["type"] = "implicit", - }, - }, - ["1844_AvoidChill"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3483999943", - ["text"] = "#% chance to Avoid being Chilled", - ["type"] = "implicit", - }, - }, - ["1845_AvoidFreeze"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1514829491", - ["text"] = "#% chance to Avoid being Frozen", - ["type"] = "implicit", - }, - }, - ["1846_AvoidIgnite"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1783006896", - ["text"] = "#% chance to Avoid being Ignited", - ["type"] = "implicit", - }, - }, - ["1848_AvoidShock"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1871765599", - ["text"] = "#% chance to Avoid being Shocked", - ["type"] = "implicit", - }, - }, - ["1849_ChanceToAvoidPoison"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4053951709", - ["text"] = "#% chance to Avoid being Poisoned", - ["type"] = "implicit", - }, - }, - ["1851_AvoidStun"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4262448838", - ["text"] = "#% chance to Avoid being Stunned", - ["type"] = "implicit", - }, - }, - ["1856_ChillAndFreezeDuration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3485067555", - ["text"] = "#% increased Chill Duration on Enemies", - ["type"] = "implicit", - }, - }, - ["1857_ShockDuration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3668351662", - ["text"] = "#% increased Shock Duration on Enemies", - ["type"] = "implicit", - }, - }, - ["1858_ChillAndFreezeDuration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1073942215", - ["text"] = "#% increased Freeze Duration on Enemies", - ["type"] = "implicit", - }, - }, - ["1859_BurnDuration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1086147743", - ["text"] = "#% increased Ignite Duration on Enemies", - ["type"] = "implicit", - }, - }, - ["1863_StunDurationIncreasePercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2517001139", - ["text"] = "#% increased Stun Duration on Enemies", - ["type"] = "implicit", - }, - }, - ["1867_SelfStatusAilmentDuration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1745952865", - ["text"] = "#% reduced Elemental Ailment Duration on you", - ["type"] = "implicit", - }, - }, - ["1877_BurnDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1175385867", - ["text"] = "#% increased Burning Damage", - ["type"] = "implicit", - }, - }, - ["1880_AreaOfEffect"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "implicit", - }, - }, - ["1883_ManaCostReduction"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_474294393", - ["text"] = "#% reduced Mana Cost of Skills", - ["type"] = "implicit", - }, - }, - ["1891_IncreaseManaCostFlat"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3736589033", - ["text"] = "+# to Total Mana Cost of Skills", - ["type"] = "implicit", - }, - }, - ["1898_AvoidInterruptionWhileCasting"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1916706958", - ["text"] = "#% chance to Ignore Stuns while Casting", - ["type"] = "implicit", - }, - }, - ["189_LocalIncreaseSocketedSupportGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4154259475", - ["text"] = "+# to Level of Socketed Support Gems", - ["type"] = "implicit", - }, - }, - ["1902_StunRecovery"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2511217560", - ["text"] = "#% increased Stun and Block Recovery", - ["type"] = "implicit", - }, - }, - ["1927_TrapThrowSpeed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_118398748", - ["text"] = "#% increased Trap Throwing Speed", - ["type"] = "implicit", - }, - }, - ["1928_MineLayingSpeed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1896971621", - ["text"] = "#% increased Mine Throwing Speed", - ["type"] = "implicit", - }, - }, - ["1932_PhysicalAddedAsFire"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_369494213", - ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", - ["type"] = "implicit", - }, - }, - ["1934_PhysicalAddedAsLightning"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_219391121", - ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", - ["type"] = "implicit", - }, - }, - ["1935_PhysicalAddedAsChaos"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3319896421", - ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", - ["type"] = "implicit", - }, - }, - ["1938_LightningAddedAsChaos"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2402136583", - ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", - ["type"] = "implicit", - }, - }, - ["1940_ColdAddedAsChaos"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2915373966", - ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", - ["type"] = "implicit", - }, - }, - ["1941_FireAddedAsChaos"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1599775597", - ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", - ["type"] = "implicit", - }, - }, - ["1944_LifeRegenerationRatePercentage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_836936635", - ["text"] = "Regenerate #% of Life per second", - ["type"] = "implicit", - }, - }, - ["1955_ConvertPhysicalToFireImplicit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1533563525", - ["text"] = "#% of Physical Damage Converted to Fire Damage", - ["type"] = "implicit", - }, - }, - ["1957_ConvertPhysicalToColdImplicit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2133341901", - ["text"] = "#% of Physical Damage Converted to Cold Damage", - ["type"] = "implicit", - }, - }, - ["1959_ConvertPhysicalToLightningImplicit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3240769289", - ["text"] = "#% of Physical Damage Converted to Lightning Damage", - ["type"] = "implicit", - }, - }, - ["1962_PhysicalDamageConvertToChaosImplicit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_490098963", - ["text"] = "#% of Physical Damage Converted to Chaos Damage", - ["type"] = "implicit", - }, - }, - ["1973_MinionDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "implicit", - }, - }, - ["1980_ElementalDamagePercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3141070085", - ["text"] = "#% increased Elemental Damage", - ["type"] = "implicit", - }, - }, - ["1988_MaximumBlockChance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4124805414", - ["text"] = "+#% to maximum Chance to Block Attack Damage", - ["type"] = "implicit", - }, - }, - ["1989_MaximumSpellBlockChance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2388574377", - ["text"] = "+#% to maximum Chance to Block Spell Damage", - ["type"] = "implicit", - }, - }, - ["1995_GlobalKnockbackChance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_977908611", - ["text"] = "#% chance to Knock Enemies Back on hit", - ["type"] = "implicit", - }, - }, - ["1996_ProjectileDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", - ["type"] = "implicit", - }, - }, - ["2026_ChanceToIgnite"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1335054179", - ["text"] = "#% chance to Ignite", - ["type"] = "implicit", - }, - }, - ["2029_ChanceToFreeze"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2309614417", - ["text"] = "#% chance to Freeze", - ["type"] = "implicit", - }, - }, - ["2033_ChanceToShock"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1538773178", - ["text"] = "#% chance to Shock", - ["type"] = "implicit", - }, - }, - ["2035_AreaDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4251717817", - ["text"] = "#% increased Area Damage", - ["type"] = "implicit", - }, - }, - ["2046_AttackAndCastSpeed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2672805335", - ["text"] = "#% increased Attack and Cast Speed", - ["type"] = "implicit", - }, - }, - ["204_SocketedGemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3828613551", - ["text"] = "+#% to Quality of Socketed Gems", - ["type"] = "implicit", - }, - }, - ["2059_GlobalFlaskLifeRecovery"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_821241191", - ["text"] = "#% increased Life Recovery from Flasks", - ["type"] = "implicit", - }, - }, - ["205_IncreaseSocketedSupportGemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1328548975", - ["text"] = "+#% to Quality of Socketed Support Gems", - ["type"] = "implicit", - }, - }, - ["207_SocketedAoEGemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_768982451", - ["text"] = "+#% to Quality of Socketed AoE Gems", - ["type"] = "implicit", - }, - }, - ["208_SocketedAuraGemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2276941637", - ["text"] = "+#% to Quality of Socketed Aura Gems", - ["type"] = "implicit", - }, - }, - ["209_SocketedBowGemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3280600715", - ["text"] = "+#% to Quality of Socketed Bow Gems", - ["type"] = "implicit", - }, - }, - ["210_SocketedChaosGemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2062835769", - ["text"] = "+#% to Quality of Socketed Chaos Gems", - ["type"] = "implicit", - }, - }, - ["211_SocketedColdGemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1164882313", - ["text"] = "+#% to Quality of Socketed Cold Gems", - ["type"] = "implicit", - }, - }, - ["2125_EnduranceChargeDuration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1170174456", - ["text"] = "#% increased Endurance Charge Duration", - ["type"] = "implicit", - }, - }, - ["2127_FrenzyChargeDuration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3338298622", - ["text"] = "#% increased Frenzy Charge Duration", - ["type"] = "implicit", - }, - }, - ["212_SocketedDexterityGemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2877754099", - ["text"] = "+#% to Quality of Socketed Dexterity Gems", - ["type"] = "implicit", - }, - }, - ["2140_IncreasedSpellDamagePerPowerCharge"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_827329571", - ["text"] = "#% increased Spell Damage per Power Charge", - ["type"] = "implicit", - }, - }, - ["2142_IncreasedPowerChargeDuration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3872306017", - ["text"] = "#% increased Power Charge Duration", - ["type"] = "implicit", - }, - }, - ["214_SocketedFireGemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3422008440", - ["text"] = "+#% to Quality of Socketed Fire Gems", - ["type"] = "implicit", - }, - }, - ["2157_IncreasedLifeLeechRate"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2633745731", - ["text"] = "#% increased total Recovery per second from Life Leech", - ["type"] = "implicit", - }, - }, - ["2158_IncreasedManaLeechRate"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_690135178", - ["text"] = "#% increased total Recovery per second from Mana Leech", - ["type"] = "implicit", - }, - }, - ["215_SocketedIntelligenceGemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3174776455", - ["text"] = "+#% to Quality of Socketed Intelligence Gems", - ["type"] = "implicit", - }, - }, - ["216_SocketedLightningGemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1065580342", - ["text"] = "+#% to Quality of Socketed Lightning Gems", - ["type"] = "implicit", - }, - }, - ["217_SocketedMeleeGemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1396421504", - ["text"] = "+#% to Quality of Socketed Melee Gems", - ["type"] = "implicit", - }, - }, - ["2183_BeltIncreasedFlaskChargesGained"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1452809865", - ["text"] = "#% increased Flask Charges gained", - ["type"] = "implicit", - }, - }, - ["2184_BeltReducedFlaskChargesUsed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_644456512", - ["text"] = "#% reduced Flask Charges used", - ["type"] = "implicit", - }, - }, - ["2187_BeltIncreasedFlaskDuration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3741323227", - ["text"] = "#% increased Flask Effect Duration", - ["type"] = "implicit", - }, - }, - ["219_SocketedProjectileGemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2428621158", - ["text"] = "+#% to Quality of Socketed Projectile Gems", - ["type"] = "implicit", - }, - }, - ["2202_AttackerTakesDamageNoRange"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3767873853", - ["text"] = "Reflects # Physical Damage to Melee Attackers", - ["type"] = "implicit", - }, - }, - ["220_SocketedStrengthGemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_122841557", - ["text"] = "+#% to Quality of Socketed Strength Gems", - ["type"] = "implicit", - }, - }, - ["221_AbyssJewelEffect"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1482572705", - ["text"] = "#% increased Effect of Socketed Abyss Jewels", - ["type"] = "implicit", - }, - }, - ["2228_ManaReservationEfficiency"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4237190083", - ["text"] = "#% increased Mana Reservation Efficiency of Skills", - ["type"] = "implicit", - }, - }, - ["2232_ReducedReservation"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4237190083", - ["text"] = "#% increased Mana Reservation Efficiency of Skills", - ["type"] = "implicit", - }, - }, - ["2234_PhysicalAttackDamageTaken"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3441651621", - ["text"] = "+# Physical Damage taken from Attack Hits", - ["type"] = "implicit", - }, - }, - ["2237_FlatFireDamageTaken"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_614758785", - ["text"] = "+# Fire Damage taken from Hits", - ["type"] = "implicit", - }, - }, - ["2245_DegenDamageTaken"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1101403182", - ["text"] = "#% reduced Damage taken from Damage Over Time", - ["type"] = "implicit", - }, - }, - ["2273_ReducedPhysicalDamageTaken"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", - ["type"] = "implicit", - }, - }, - ["2447_PhysicalDamageTakenAsFirePercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3342989455", - ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", - ["type"] = "implicit", - }, - }, - ["2448_PhysicalDamageTakenAsCold"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1871056256", - ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", - ["type"] = "implicit", - }, - }, - ["2449_PhysicalDamageTakenAsLightningPercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_425242359", - ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", - ["type"] = "implicit", - }, - }, - ["2451_PhysicalDamageTakenAsChaos"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", - ["type"] = "implicit", - }, - }, - ["2458_AdditionalBlock"] = { - ["sign"] = "+", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", - ["type"] = "implicit", - }, - }, - ["2483_LocalChanceToBleed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", - ["type"] = "implicit", - }, - }, - ["2489_ChanceToBleed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1923879260", - ["text"] = "Attacks have #% chance to cause Bleeding", - ["type"] = "implicit", - }, - }, - ["2500_LightRadius"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["2525_CurseOnHitLevelElementalWeakness"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["2528_CurseOnHitDespair"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["2531_FrostbiteOnHitLevel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_426847518", - ["text"] = "Curse Enemies with Frostbite on Hit", - ["type"] = "implicit", - }, - }, - ["2534_MeleeWeaponAndUnarmedRange"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["2564_FasterIgniteDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2443492284", - ["text"] = "Ignites you inflict deal Damage #% faster", - ["type"] = "implicit", - }, - }, - ["2578_SummonTotemCastSpeed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", - ["type"] = "implicit", - }, - }, - ["2596_CurseEffectiveness"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2353576063", - ["text"] = "#% increased Effect of your Curses", - ["type"] = "implicit", - }, - }, - ["2610_MovementSpeedWhilePhased"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3684879618", - ["text"] = "#% increased Movement Speed while Phasing", - ["type"] = "implicit", - }, - }, - ["2629_EnduranceChargeOnKillChance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1054322244", - ["text"] = "#% chance to gain an Endurance Charge on Kill", - ["type"] = "implicit", - }, - }, - ["2631_FrenzyChargeOnKillChance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1826802197", - ["text"] = "#% chance to gain a Frenzy Charge on Kill", - ["type"] = "implicit", - }, - }, - ["2633_PowerChargeOnKillChance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2483795307", - ["text"] = "#% chance to gain a Power Charge on Kill", - ["type"] = "implicit", - }, - }, - ["2646_EnergyShieldRegenerationPerMinute"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["2738_SpellDamagePer10Intelligence"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3961014595", - ["text"] = "#% increased Spell Damage per 16 Intelligence", - ["type"] = "implicit", - }, - }, - ["2745_LocalMeleeWeaponRange"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_350598685", - ["text"] = "+# metres to Weapon Range", - ["type"] = "implicit", - }, - }, - ["2787_TotemElementalResistances"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1809006367", - ["text"] = "Totems gain +#% to all Elemental Resistances", - ["type"] = "implicit", - }, - }, - ["2839_ChaosDamageTaken"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_496011033", - ["text"] = "+# Chaos Damage taken", - ["type"] = "implicit", - }, - }, - ["2907_MinionAttackSpeed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3375935924", - ["text"] = "Minions have #% increased Attack Speed", - ["type"] = "implicit", - }, - }, - ["2908_MinionCastSpeed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4000101551", - ["text"] = "Minions have #% increased Cast Speed", - ["type"] = "implicit", - }, - }, - ["2911_MinionLifeRegeneration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2479683456", - ["text"] = "Minions Regenerate #% of Life per second", - ["type"] = "implicit", - }, - }, - ["2912_MinionElementalResistancesForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1423639565", - ["text"] = "Minions have +#% to all Elemental Resistances", - ["type"] = "implicit", - }, - }, - ["2936_PhysicalDamageAddedAsRandomElement"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3753703249", - ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", - ["type"] = "implicit", - }, - }, - ["2958_GlobalChanceToBlindOnHit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2221570601", - ["text"] = "#% Global chance to Blind Enemies on hit", - ["type"] = "implicit", - }, - }, - ["2980_ElementalPenetration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2101383955", - ["text"] = "Damage Penetrates #% Elemental Resistances", - ["type"] = "implicit", - }, - }, - ["2981_FireResistancePenetration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", - ["type"] = "implicit", - }, - }, - ["2983_ColdResistancePenetration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", - ["type"] = "implicit", - }, - }, - ["2984_LightningResistancePenetration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", - ["type"] = "implicit", - }, - }, - ["2993_ChanceToGainOnslaughtOnKill"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3023957681", - ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", - ["type"] = "implicit", - }, - }, - ["3029_AttackAndCastSpeedWithOnslaught"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2320884914", - ["text"] = "#% increased Attack and Cast Speed during Onslaught", - ["type"] = "implicit", - }, - }, - ["3060_RecoverLifePercentOnBlock"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2442647190", - ["text"] = "Recover #% of Life when you Block", - ["type"] = "implicit", - }, - }, - ["3063_DamageWhileLeeching"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_310246444", - ["text"] = "#% increased Damage while Leeching", - ["type"] = "implicit", - }, - }, - ["3095_VaalSkillDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2257141320", - ["text"] = "#% increased Damage with Vaal Skills", - ["type"] = "implicit", - }, - }, - ["3104_AdditionalVaalSoulOnKill"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1962922582", - ["text"] = "#% chance to gain an additional Vaal Soul on Kill", - ["type"] = "implicit", - }, - }, - ["3105_VaalSkillDuration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_547412107", - ["text"] = "Vaal Skills have #% increased Skill Effect Duration", - ["type"] = "implicit", - }, - }, - ["3107_VaalSkillCriticalStrikeChance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3165492062", - ["text"] = "#% increased Vaal Skill Critical Strike Chance", - ["type"] = "implicit", - }, - }, - ["3169_BleedingDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1294118672", - ["text"] = "#% increased Damage with Bleeding", - ["type"] = "implicit", - }, - }, - ["3170_PoisonDuration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", - ["type"] = "implicit", - }, - }, - ["3173_PoisonOnHit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", - ["type"] = "implicit", - }, - }, - ["3181_PoisonDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1290399200", - ["text"] = "#% increased Damage with Poison", - ["type"] = "implicit", - }, - }, - ["3199_DamagePerEnduranceCharge"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3515686789", - ["text"] = "#% increased Damage per Endurance Charge", - ["type"] = "implicit", - }, - }, - ["3286_DamagePerFrenzyCharge"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_902747843", - ["text"] = "#% increased Damage per Frenzy Charge", - ["type"] = "implicit", - }, - }, - ["3304_EnemiesExplodeOnDeathPhysicalChance"] = { - ["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", - }, - }, - ["3363_IncreasedAuraEffectGraceCorrupted"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_397427740", - ["text"] = "Grace has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, - ["3367_IncreasedAuraEffectDeterminationCorrupted"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3653400807", - ["text"] = "Determination has #% increased Aura Effect", - ["type"] = "implicit", - }, - }, - ["3368_IncreasedAuraEffectDisciplineCorrupted"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["3373_FireDamageAvoidance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_42242677", - ["text"] = "#% chance to Avoid Fire Damage from Hits", - ["type"] = "implicit", - }, - }, - ["3374_ColdDamageAvoidance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3743375737", - ["text"] = "#% chance to Avoid Cold Damage from Hits", - ["type"] = "implicit", - }, - }, - ["3375_LightningDamageAvoidance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2889664727", - ["text"] = "#% chance to Avoid Lightning Damage from Hits", - ["type"] = "implicit", - }, - }, - ["3377_UnholyMightOnKillPercentChance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3562211447", - ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", - ["type"] = "implicit", - }, - }, - ["3457_SpectreDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3645693773", - ["text"] = "Raised Spectres have #% increased Damage", - ["type"] = "implicit", - }, - }, - ["3566_AuraEffect"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1880071428", - ["text"] = "#% increased effect of Non-Curse Auras from your Skills", - ["type"] = "implicit", - }, - }, - ["3589_ColdPenetrationWeapon"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1211769158", - ["text"] = "Damage with Weapons Penetrates #% Cold Resistance", - ["type"] = "implicit", - }, - }, - ["3590_FirePenetrationWeapon"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1123291426", - ["text"] = "Damage with Weapons Penetrates #% Fire Resistance", - ["type"] = "implicit", - }, - }, - ["3591_LightningPenetrationWeapon"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["3643_ZombieIncreasedDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2228518621", - ["text"] = "Raised Zombies deal #% increased Damage", - ["type"] = "implicit", - }, - }, - ["3659_SkeletonDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3059357595", - ["text"] = "Skeletons deal #% increased Damage", - ["type"] = "implicit", - }, - }, - ["3761_LocalAttackReduceEnemyElementalResistance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4064396395", - ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", - ["type"] = "implicit", - }, - }, - ["3989_AnimateGuardianResistances"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2094281311", - ["text"] = "+#% to Animated Guardian Elemental Resistances", - ["type"] = "implicit", - }, - }, - ["4010_CurseEffectConductivity"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3395908304", - ["text"] = "#% increased Conductivity Curse Effect", - ["type"] = "implicit", - }, - }, - ["4011_CurseEffectElementalWeakness"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3348324479", - ["text"] = "#% increased Elemental Weakness Curse Effect", - ["type"] = "implicit", - }, - }, - ["4013_CurseEffectFlammability"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_282417259", - ["text"] = "#% increased Flammability Curse Effect", - ["type"] = "implicit", - }, - }, - ["4014_CurseEffectFrostbite"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1443215722", - ["text"] = "#% increased Frostbite Curse Effect", - ["type"] = "implicit", - }, - }, - ["4016_CurseEffectVulnerability"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1065909420", - ["text"] = "#% increased Vulnerability Curse Effect", - ["type"] = "implicit", - }, - }, - ["4069_DamageAffectedByAuras"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1419713278", - ["text"] = "You and nearby Allies deal #% increased Damage", - ["type"] = "implicit", - }, - }, - ["4082_DamageDuringFlaskEffect"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2947215268", - ["text"] = "#% increased Damage during any Flask Effect", - ["type"] = "implicit", - }, - }, - ["4169_PhysicalDamageRemovedFromManaBeforeLife"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["4216_ChanceToAvoidBleeding"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1618589784", - ["text"] = "#% chance to Avoid Bleeding", - ["type"] = "implicit", - }, - }, - ["4273_AddedColdDamagePerFrenzyCharge"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3648858570", - ["text"] = "# to # Added Cold Damage per Frenzy Charge", - ["type"] = "implicit", - }, - }, - ["4578_ReducedPhysicalDamageTakenVsAbyssMonsters"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_287491423", - ["text"] = "#% additional Physical Damage Reduction against Abyssal Monsters", - ["type"] = "implicit", - }, - }, - ["4579_DeterminationPhysicalDamageReduction"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1873457881", - ["text"] = "#% additional Physical Damage Reduction while affected by Determination", - ["type"] = "implicit", - }, - }, - ["4728_AreaOfEffectIfStunnedEnemyRecently"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_430248187", - ["text"] = "#% increased Area of Effect if you have Stunned an Enemy Recently", - ["type"] = "implicit", - }, - }, - ["4759_ArmourEvasionWithFortify"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2962782530", - ["text"] = "+# to Armour and Evasion Rating while Fortified", - ["type"] = "implicit", - }, - }, - ["4792_AdditionalCriticalStrikeChanceWithAttacks"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2572042788", - ["text"] = "Attacks have +#% to Critical Strike Chance", - ["type"] = "implicit", - }, - }, - ["4848_AttackDamagePerMana"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4134865890", - ["text"] = "#% increased Attack Damage per 500 Maximum Mana", - ["type"] = "implicit", - }, - }, - ["4869_AddedFireDamagePerStrength"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1060540099", - ["text"] = "Adds # to # Fire Damage to Attacks with this Weapon per 10 Strength", - ["type"] = "implicit", - }, - }, - ["4872_AddedLightningDamagePerIntelligence"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3390848861", - ["text"] = "Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence", - ["type"] = "implicit", - }, - }, - ["4915_AttacksBlindOnHitChance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_318953428", - ["text"] = "#% chance to Blind Enemies on Hit with Attacks", - ["type"] = "implicit", - }, - }, - ["4916_AttacksTauntOnHitChance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_280213220", - ["text"] = "#% chance to Taunt Enemies on Hit with Attacks", - ["type"] = "implicit", - }, - }, - ["4918_AttackImpaleChance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3739863694", - ["text"] = "#% chance to Impale Enemies on Hit with Attacks", - ["type"] = "implicit", - }, - }, - ["4924_AddedColdDamagePerDexterity"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_149574107", - ["text"] = "Adds # to # Cold Damage to Attacks with this Weapon per 10 Dexterity", - ["type"] = "implicit", - }, - }, - ["4983_AilmentDamage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_690707482", - ["text"] = "#% increased Damage with Ailments", - ["type"] = "implicit", - }, - }, - ["4994_BleedDuration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", - ["type"] = "implicit", - }, - }, + ["10007_ShockEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2527686725", + ["text"] = "#% increased Effect of Shock", + ["type"] = "implicit", + }, + }, + ["10042_BrandAttachmentRange"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4223377453", + ["text"] = "#% increased Brand Attachment range", + ["type"] = "implicit", + }, + }, + ["10124_AdditionalCriticalStrikeChanceWithSpells"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_791835907", + ["text"] = "+#% to Spell Critical Strike Chance", + ["type"] = "implicit", + }, + }, + ["10135_SpellsDoubleDamageChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2813626504", + ["text"] = "Spells have a #% chance to deal Double Damage", + ["type"] = "implicit", + }, + }, + ["10145_SpellDamagePerMana"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3555662994", + ["text"] = "#% increased Spell Damage per 500 Maximum Mana", + ["type"] = "implicit", + }, + }, + ["10152_SpellDamagePer10Strength"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1073314277", + ["text"] = "#% increased Spell Damage per 10 Strength", + ["type"] = "implicit", + }, + }, + ["10153_SpellDamagePer16Dexterity"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2612056840", + ["text"] = "#% increased Spell Damage per 16 Dexterity", + ["type"] = "implicit", + }, + }, + ["10154_SpellDamagePer16Intelligence"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2818518881", + ["text"] = "#% increased Spell Damage per 10 Intelligence", + ["type"] = "implicit", + }, + }, + ["10155_SpellDamagePer16Strength"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1073314277", + ["text"] = "#% increased Spell Damage per 10 Strength", + ["type"] = "implicit", + }, + }, + ["10187_SpellsHinderOnHitChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3002506763", + ["text"] = "#% chance to Hinder Enemies on Hit with Spells", + ["type"] = "implicit", + }, + }, + ["10430_DamageWithTriggeredSpells"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3067892458", + ["text"] = "Triggered Spells deal #% increased Spell Damage", + ["type"] = "implicit", + }, + }, + ["10455_BurningGroundEffectEffectiveness"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1643688236", + ["text"] = "Unaffected by Burning Ground", + ["type"] = "implicit", + }, + }, + ["10460_ChilledGroundEffectEffectiveness"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3653191834", + ["text"] = "Unaffected by Chilled Ground", + ["type"] = "implicit", + }, + }, + ["10480_ShockedGroundEffectEffectiveness"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2234049899", + ["text"] = "Unaffected by Shocked Ground", + ["type"] = "implicit", + }, + }, + ["10534_VitalityReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1233806203", + ["text"] = "Vitality has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, + ["10535_VitalityReservationEfficiency"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1233806203", + ["text"] = "Vitality has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, + ["10819_UnwaveringStance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1683578560", + ["text"] = "Unwavering Stance", + ["type"] = "implicit", + }, + }, + ["1143_BlockPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "implicit", + }, + }, + ["1146_SpellDamageSuppressed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4116705863", + ["text"] = "Prevent +#% of Suppressed Spell Damage", + ["type"] = "implicit", + }, + }, + ["1147_ChanceToSuppressSpellsOld"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", + ["type"] = "implicit", + }, + }, + ["1165_SpellBlockPercentage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "implicit", + }, + }, + ["1181_AllAttributes"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1379411836", + ["text"] = "+# to all Attributes", + ["type"] = "implicit", + }, + }, + ["1182_StrengthImplicit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4080418644", + ["text"] = "+# to Strength", + ["type"] = "implicit", + }, + }, + ["1183_DexterityImplicit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3261801346", + ["text"] = "+# to Dexterity", + ["type"] = "implicit", + }, + }, + ["1184_IntelligenceImplicit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_328541901", + ["text"] = "+# to Intelligence", + ["type"] = "implicit", + }, + }, + ["1188_PercentageAllAttributes"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3143208761", + ["text"] = "#% increased Attributes", + ["type"] = "implicit", + }, + }, + ["1189_PercentageStrength"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "implicit", + }, + }, + ["1190_PercentageDexterity"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "implicit", + }, + }, + ["1191_PercentageIntelligence"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "implicit", + }, + }, + ["1196_AllDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "implicit", + }, + }, + ["1203_AttackDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "implicit", + }, + }, + ["1215_DegenerationDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_967627487", + ["text"] = "#% increased Damage over Time", + ["type"] = "implicit", + }, + }, + ["1222_DamageWhileLeechingLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3591306273", + ["text"] = "#% increased Damage while Leeching Life", + ["type"] = "implicit", + }, + }, + ["1224_DamageWhileLeechingMana"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1994684426", + ["text"] = "#% increased Damage while Leeching Mana", + ["type"] = "implicit", + }, + }, + ["1228_SpellDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "implicit", + }, + }, + ["1232_SpellDamageWithStaff"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3496944181", + ["text"] = "#% increased Spell Damage while wielding a Staff", + ["type"] = "implicit", + }, + }, + ["1234_SpellDamageWithShield"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1766142294", + ["text"] = "#% increased Spell Damage while holding a Shield", + ["type"] = "implicit", + }, + }, + ["1235_SpellDamageWithDualWield"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1678690824", + ["text"] = "#% increased Spell Damage while Dual Wielding", + ["type"] = "implicit", + }, + }, + ["1236_PhysicalDamagePercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "implicit", + }, + }, + ["1237_LocalPhysicalDamagePercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "implicit", + }, + }, + ["1239_MeleeDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "implicit", + }, + }, + ["1261_ColdDamageOverTimeMultiplier"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1950806024", + ["text"] = "+#% to Cold Damage over Time Multiplier", + ["type"] = "implicit", + }, + }, + ["1264_ChaosDamageOverTimeMultiplier"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4055307827", + ["text"] = "+#% to Chaos Damage over Time Multiplier", + ["type"] = "implicit", + }, + }, + ["1281_LocalPhysicalDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Physical Damage", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", + ["type"] = "implicit", + }, + }, + ["1281_LocalPhysicalDamageTwoHanded"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Physical Damage", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", + ["type"] = "implicit", + }, + }, + ["1308_AxeIncreasedPhysicalDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2008219439", + ["text"] = "#% increased Physical Damage with Axes", + ["type"] = "implicit", + }, + }, + ["1312_StaffIncreasedPhysicalDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3150705301", + ["text"] = "#% increased Physical Damage with Staves", + ["type"] = "implicit", + }, + }, + ["1320_ClawIncreasedPhysicalDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_635761691", + ["text"] = "#% increased Physical Damage with Claws", + ["type"] = "implicit", + }, + }, + ["1326_DaggerIncreasedPhysicalDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3882531569", + ["text"] = "#% increased Physical Damage with Daggers", + ["type"] = "implicit", + }, + }, + ["1332_MaceIncreasedPhysicalDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3774831856", + ["text"] = "#% increased Physical Damage with Maces or Sceptres", + ["type"] = "implicit", + }, + }, + ["1338_BowIncreasedPhysicalDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_402920808", + ["text"] = "#% increased Physical Damage with Bows", + ["type"] = "implicit", + }, + }, + ["1343_SwordIncreasedPhysicalDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3814560373", + ["text"] = "#% increased Physical Damage with Swords", + ["type"] = "implicit", + }, + }, + ["1350_WandIncreasedPhysicalDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2769075491", + ["text"] = "#% increased Physical Damage with Wands", + ["type"] = "implicit", + }, + }, + ["1362_FireDamagePercentage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "implicit", + }, + }, + ["1364_GlobalAddedFireDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_321077055", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "implicit", + }, + }, + ["1367_LocalFireDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + ["type"] = "implicit", + }, + }, + ["1367_LocalFireDamageTwoHand"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", + ["type"] = "implicit", + }, + }, + ["1371_ColdDamagePercentage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "implicit", + }, + }, + ["1373_GlobalAddedColdDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "implicit", + }, + }, + ["1376_LocalColdDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "implicit", + }, + }, + ["1376_LocalColdDamageTwoHand"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Cold Damage", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "implicit", + }, + }, + ["1382_LightningDamagePercentage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "implicit", + }, + }, + ["1384_GlobalAddedLightningDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1334060246", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "implicit", + }, + }, + ["1387_LocalLightningDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "implicit", + }, + }, + ["1387_LocalLightningDamageTwoHand"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "implicit", + }, + }, + ["1390_IncreasedChaosDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "implicit", + }, + }, + ["1391_GlobalAddedChaosDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3531280422", + ["text"] = "Adds # to # Chaos Damage", + ["type"] = "implicit", + }, + }, + ["1395_LocalChaosDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", + ["type"] = "implicit", + }, + }, + ["1395_LocalChaosDamageTwoHand"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", + ["type"] = "implicit", + }, + }, + ["1409_SpellAddedFireDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "implicit", + }, + }, + ["1409_SpellAddedFireDamageTwoHand"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "implicit", + }, + }, + ["1410_SpellAddedColdDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "implicit", + }, + }, + ["1410_SpellAddedColdDamageTwoHand"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "implicit", + }, + }, + ["1411_SpellAddedLightningDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "implicit", + }, + }, + ["1411_SpellAddedLightningDamageTwoHand"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", + ["type"] = "implicit", + }, + }, + ["1415_IncreasedAttackSpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "implicit", + }, + }, + ["1418_LocalIncreasedAttackSpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "implicit", + }, + }, + ["1425_AxeIncreasedAttackSpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3550868361", + ["text"] = "#% increased Attack Speed with Axes", + ["type"] = "implicit", + }, + }, + ["1426_StaffIncreasedAttackSpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1394963553", + ["text"] = "#% increased Attack Speed with Staves", + ["type"] = "implicit", + }, + }, + ["1427_ClawIncreasedAttackSpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1421645223", + ["text"] = "#% increased Attack Speed with Claws", + ["type"] = "implicit", + }, + }, + ["1428_DaggerIncreasedAttackSpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2538566497", + ["text"] = "#% increased Attack Speed with Daggers", + ["type"] = "implicit", + }, + }, + ["1429_MaceIncreasedAttackSpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2515515064", + ["text"] = "#% increased Attack Speed with Maces or Sceptres", + ["type"] = "implicit", + }, + }, + ["1430_BowIncreasedAttackSpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", + ["type"] = "implicit", + }, + }, + ["1431_SwordIncreasedAttackSpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3293699237", + ["text"] = "#% increased Attack Speed with Swords", + ["type"] = "implicit", + }, + }, + ["1432_WandIncreasedAttackSpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3720627346", + ["text"] = "#% increased Attack Speed with Wands", + ["type"] = "implicit", + }, + }, + ["1438_IncreasedAccuracy"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_803737631", + ["text"] = "+# to Accuracy Rating", + ["type"] = "implicit", + }, + }, + ["1439_IncreasedAccuracyPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "implicit", + }, + }, + ["1439_LocalAccuracyRatingIncrease"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "implicit", + }, + }, + ["1443_AxeIncreasedAccuracyRating"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2538120572", + ["text"] = "#% increased Accuracy Rating with Axes", + ["type"] = "implicit", + }, + }, + ["1444_StaffIncreasedAccuracyRating"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1617235962", + ["text"] = "#% increased Accuracy Rating with Staves", + ["type"] = "implicit", + }, + }, + ["1445_ClawIncreasedAccuracyRating"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1297965523", + ["text"] = "#% increased Accuracy Rating with Claws", + ["type"] = "implicit", + }, + }, + ["1446_DaggerIncreasedAccuracyRating"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2054715690", + ["text"] = "#% increased Accuracy Rating with Daggers", + ["type"] = "implicit", + }, + }, + ["1447_MaceIncreasedAccuracyRating"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3208450870", + ["text"] = "#% increased Accuracy Rating with Maces or Sceptres", + ["type"] = "implicit", + }, + }, + ["1448_BowIncreasedAccuracyRating"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_169946467", + ["text"] = "#% increased Accuracy Rating with Bows", + ["type"] = "implicit", + }, + }, + ["1449_SwordIncreasedAccuracyRating"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2090868905", + ["text"] = "#% increased Accuracy Rating with Swords", + ["type"] = "implicit", + }, + }, + ["1450_WandIncreasedAccuracyRating"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2150183156", + ["text"] = "#% increased Accuracy Rating with Wands", + ["type"] = "implicit", + }, + }, + ["1451_IncreasedCastSpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "implicit", + }, + }, + ["1452_CastSpeedWithDualWield"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2382196858", + ["text"] = "#% increased Cast Speed while Dual Wielding", + ["type"] = "implicit", + }, + }, + ["1453_CastSpeedWithShield"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1612163368", + ["text"] = "#% increased Cast Speed while holding a Shield", + ["type"] = "implicit", + }, + }, + ["1454_CastSpeedWithStaff"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2066542501", + ["text"] = "#% increased Cast Speed while wielding a Staff", + ["type"] = "implicit", + }, + }, + ["1463_SpellCriticalStrikeChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_737908626", + ["text"] = "#% increased Spell Critical Strike Chance", + ["type"] = "implicit", + }, + }, + ["1464_CriticalStrikeChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "implicit", + }, + }, + ["1469_LocalCriticalStrikeChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "implicit", + }, + }, + ["1493_CriticalStrikeMultiplier"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", + ["type"] = "implicit", + }, + }, + ["1498_DaggerCriticalStrikeMultiplier"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3998601568", + ["text"] = "+#% to Critical Strike Multiplier with Daggers", + ["type"] = "implicit", + }, + }, + ["1499_MaceCriticalStrikeMultiplier"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_458899422", + ["text"] = "+#% to Critical Strike Multiplier with Maces or Sceptres", + ["type"] = "implicit", + }, + }, + ["1500_AxeCriticalStrikeMultiplier"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4219746989", + ["text"] = "+#% to Critical Strike Multiplier with Axes", + ["type"] = "implicit", + }, + }, + ["1501_BowCriticalStrikeMultiplier"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1712221299", + ["text"] = "+#% to Critical Strike Multiplier with Bows", + ["type"] = "implicit", + }, + }, + ["1502_SwordCriticalStrikeMultiplier"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3114492047", + ["text"] = "+#% to Critical Strike Multiplier with Swords", + ["type"] = "implicit", + }, + }, + ["1503_WandCriticalStrikeMultiplier"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1241396104", + ["text"] = "+#% to Critical Strike Multiplier with Wands", + ["type"] = "implicit", + }, + }, + ["1504_ClawCriticalStrikeMultiplier"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2811834828", + ["text"] = "+#% to Critical Strike Multiplier with Claws", + ["type"] = "implicit", + }, + }, + ["1505_StaffCriticalStrikeMultiplier"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1474913037", + ["text"] = "+#% to Critical Strike Multiplier with Staves", + ["type"] = "implicit", + }, + }, + ["1517_ReducedExtraDamageFromCrits"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3855016469", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + ["type"] = "implicit", + }, + }, + ["1522_StunThresholdReduction"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", + ["type"] = "implicit", + }, + }, + ["1545_LocalPhysicalDamageReductionRating"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Armour", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3484657501", + ["text"] = "+# to Armour (Local)", + ["type"] = "implicit", + }, + }, + ["1546_GlobalPhysicalDamageReductionRatingPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "implicit", + }, + }, + ["1547_LocalPhysicalDamageReductionRatingPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "implicit", + }, + }, + ["1553_LocalEvasionRating"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_53045048", + ["text"] = "+# to Evasion Rating (Local)", + ["type"] = "implicit", + }, + }, + ["1554_GlobalEvasionRatingPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "implicit", + }, + }, + ["1555_LocalEvasionRatingIncreasePercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "implicit", + }, + }, + ["1561_IncreasedEvasionRatingPerFrenzyCharge"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_660404777", + ["text"] = "#% increased Evasion Rating per Frenzy Charge", + ["type"] = "implicit", + }, + }, + ["1563_EnergyShield"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3489782002", + ["text"] = "+# to maximum Energy Shield", + ["type"] = "implicit", + }, + }, + ["1564_LocalEnergyShield"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to maximum Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4052037485", + ["text"] = "+# to maximum Energy Shield (Local)", + ["type"] = "implicit", + }, + }, + ["1565_LocalEnergyShieldPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4015621042", + ["text"] = "#% increased Energy Shield (Local)", + ["type"] = "implicit", + }, + }, + ["1566_GlobalEnergyShieldPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "implicit", + }, + }, + ["1567_EnergyShieldDelay"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "implicit", + }, + }, + ["1570_EnergyShieldRegeneration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "implicit", + }, + }, + ["1573_EnergyShieldRecoveryRate"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_988575597", + ["text"] = "#% increased Energy Shield Recovery rate", + ["type"] = "implicit", + }, + }, + ["1574_IncreasedLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3299347043", + ["text"] = "+# to maximum Life", + ["type"] = "implicit", + }, + }, + ["1576_MaximumLifeIncreasePercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "implicit", + }, + }, + ["1579_LifeRegeneration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3325883026", + ["text"] = "Regenerate # Life per second", + ["type"] = "implicit", + }, + }, + ["1581_LifeRegenerationPercentPerEnduranceCharge"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_989800292", + ["text"] = "Regenerate #% of Life per second per Endurance Charge", + ["type"] = "implicit", + }, + }, + ["1583_LifeRecoveryRate"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3240073117", + ["text"] = "#% increased Life Recovery rate", + ["type"] = "implicit", + }, + }, + ["1584_IncreasedMana"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1050105434", + ["text"] = "+# to maximum Mana", + ["type"] = "implicit", + }, + }, + ["1585_MaximumManaIncreasePercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "implicit", + }, + }, + ["1586_BaseManaRegeneration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3188455409", + ["text"] = "Regenerate #% of Mana per second", + ["type"] = "implicit", + }, + }, + ["1587_AddedManaRegeneration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4291461939", + ["text"] = "Regenerate # Mana per second", + ["type"] = "implicit", + }, + }, + ["1589_ManaRegeneration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "implicit", + }, + }, + ["1591_ManaRecoveryRate"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3513180117", + ["text"] = "#% increased Mana Recovery rate", + ["type"] = "implicit", + }, + }, + ["1597_ItemFoundQuantityIncrease"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_884586851", + ["text"] = "#% increased Quantity of Items found", + ["type"] = "implicit", + }, + }, + ["1601_ItemFoundRarityIncrease"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "implicit", + }, + }, + ["1608_ExperienceIncrease"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3666934677", + ["text"] = "#% increased Experience gain", + ["type"] = "implicit", + }, + }, + ["1624_AllResistances"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2901986750", + ["text"] = "+#% to all Elemental Resistances", + ["type"] = "implicit", + }, + }, + ["1628_MaximumFireResistanceImplicit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4095671657", + ["text"] = "+#% to maximum Fire Resistance", + ["type"] = "implicit", + }, + }, + ["1630_FireResistance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3372524247", + ["text"] = "+#% to Fire Resistance", + ["type"] = "implicit", + }, + }, + ["1634_MaximumColdResistanceImplicit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3676141501", + ["text"] = "+#% to maximum Cold Resistance", + ["type"] = "implicit", + }, + }, + ["1636_ColdResistance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4220027924", + ["text"] = "+#% to Cold Resistance", + ["type"] = "implicit", + }, + }, + ["1639_MaximumLightningResistanceImplicit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1011760251", + ["text"] = "+#% to maximum Lightning Resistance", + ["type"] = "implicit", + }, + }, + ["163_LocalIncreaseSocketedStrengthGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_916797432", + ["text"] = "+# to Level of Socketed Strength Gems", + ["type"] = "implicit", + }, + }, + ["1641_LightningResistance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1671376347", + ["text"] = "+#% to Lightning Resistance", + ["type"] = "implicit", + }, + }, + ["1645_MaximumChaosResistanceImplicit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1301765461", + ["text"] = "+#% to maximum Chaos Resistance", + ["type"] = "implicit", + }, + }, + ["1646_ChaosResistance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2923486259", + ["text"] = "+#% to Chaos Resistance", + ["type"] = "implicit", + }, + }, + ["1647_MaximumElementalResistanceImplicit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_569299859", + ["text"] = "+#% to all maximum Resistances", + ["type"] = "implicit", + }, + }, + ["1654_LifeLeechPermyriad"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3593843976", + ["text"] = "#% of Physical Attack Damage Leeched as Life", + ["type"] = "implicit", + }, + }, + ["1656_LifeLeechLocalPermyriad"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Life", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_55876295", + ["text"] = "#% of Physical Attack Damage Leeched as Life (Local)", + ["type"] = "implicit", + }, + }, + ["165_LocalIncreaseSocketedDexterityGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2718698372", + ["text"] = "+# to Level of Socketed Dexterity Gems", + ["type"] = "implicit", + }, + }, + ["1669_LifeLeechFromAttacksPermyriad"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_141810208", + ["text"] = "#% of Attack Damage Leeched as Life", + ["type"] = "implicit", + }, + }, + ["166_LocalIncreaseSocketedIntelligenceGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1719423857", + ["text"] = "+# to Level of Socketed Intelligence Gems", + ["type"] = "implicit", + }, + }, + ["1671_PhysicalDamageLifeLeechPermyriad"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2508100173", + ["text"] = "#% of Physical Damage Leeched as Life", + ["type"] = "implicit", + }, + }, + ["1675_FireDamageLifeLeechPermyriad"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1743742391", + ["text"] = "#% of Fire Damage Leeched as Life", + ["type"] = "implicit", + }, + }, + ["167_LocalIncreaseSocketedGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2843100721", + ["text"] = "+# to Level of Socketed Gems", + ["type"] = "implicit", + }, + }, + ["1680_ColdDamageLifeLeechPermyriad"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2459451600", + ["text"] = "#% of Cold Damage Leeched as Life", + ["type"] = "implicit", + }, + }, + ["1684_LightningDamageLifeLeechPermyriad"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2696663331", + ["text"] = "#% of Lightning Damage Leeched as Life", + ["type"] = "implicit", + }, + }, + ["1687_ChaosDamageLifeLeechPermyriad"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2238792070", + ["text"] = "#% of Chaos Damage Leeched as Life", + ["type"] = "implicit", + }, + }, + ["1691_ElementalDamageLeechedAsLifePermyriad"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_720395808", + ["text"] = "#% of Elemental Damage Leeched as Life", + ["type"] = "implicit", + }, + }, + ["1704_ManaLeechPermyriad"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3237948413", + ["text"] = "#% of Physical Attack Damage Leeched as Mana", + ["type"] = "implicit", + }, + }, + ["1706_ManaLeechLocalPermyriad"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Mana", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_669069897", + ["text"] = "#% of Physical Attack Damage Leeched as Mana (Local)", + ["type"] = "implicit", + }, + }, + ["1710_AttackDamageManaLeech"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_350069479", + ["text"] = "#% of Attack Damage Leeched as Mana", + ["type"] = "implicit", + }, + }, + ["1727_EnergyShieldLeechPermyriad"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_11106713", + ["text"] = "#% of Spell Damage Leeched as Energy Shield", + ["type"] = "implicit", + }, + }, + ["172_LocalIncreaseSocketedFireGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_339179093", + ["text"] = "+# to Level of Socketed Fire Gems", + ["type"] = "implicit", + }, + }, + ["1736_MaximumLifeLeechRate"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4118987751", + ["text"] = "#% increased Maximum total Life Recovery per second from Leech", + ["type"] = "implicit", + }, + }, + ["1738_MaximumManaLeechRate"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_96977651", + ["text"] = "#% increased Maximum total Mana Recovery per second from Leech", + ["type"] = "implicit", + }, + }, + ["1739_MaximumEnergyShieldLeechRate"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2013799819", + ["text"] = "#% increased Maximum total Energy Shield Recovery per second from Leech", + ["type"] = "implicit", + }, + }, + ["173_LocalIncreaseSocketedColdGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1645459191", + ["text"] = "+# to Level of Socketed Cold Gems", + ["type"] = "implicit", + }, + }, + ["1743_LifeGainPerTargetLocal"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", + ["type"] = "implicit", + }, + }, + ["1745_LifeGainPerTarget"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "implicit", + }, + }, + ["1749_ManaGainPerTarget"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["type"] = "implicit", + }, + }, + ["174_LocalIncreaseSocketedLightningGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4043416969", + ["text"] = "+# to Level of Socketed Lightning Gems", + ["type"] = "implicit", + }, + }, + ["1752_EnergyShieldGainPerTarget"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_211381198", + ["text"] = "Gain # Energy Shield per Enemy Hit with Attacks", + ["type"] = "implicit", + }, + }, + ["1753_LifeGainedFromEnemyDeath"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3695891184", + ["text"] = "Gain # Life per Enemy Killed", + ["type"] = "implicit", + }, + }, + ["1754_MaximumLifeOnKillPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2023107756", + ["text"] = "Recover #% of Life on Kill", + ["type"] = "implicit", + }, + }, + ["1756_MaximumManaOnKillPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1030153674", + ["text"] = "Recover #% of Mana on Kill", + ["type"] = "implicit", + }, + }, + ["175_LocalIncreaseSocketedChaosGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2675603254", + ["text"] = "+# to Level of Socketed Chaos Gems", + ["type"] = "implicit", + }, + }, + ["1762_GainLifeOnBlock"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_762600725", + ["text"] = "# Life gained when you Block", + ["type"] = "implicit", + }, + }, + ["1763_GainManaOnBlock"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2122183138", + ["text"] = "# Mana gained when you Block", + ["type"] = "implicit", + }, + }, + ["1768_ManaGainedFromEnemyDeath"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1368271171", + ["text"] = "Gain # Mana per Enemy Killed", + ["type"] = "implicit", + }, + }, + ["1771_MinionLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "implicit", + }, + }, + ["1774_MinionMovementSpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", + ["type"] = "implicit", + }, + }, + ["1795_AdditionalPierce"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", + ["type"] = "implicit", + }, + }, + ["1796_ArrowAdditionalPierce"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3423006863", + ["text"] = "Arrows Pierce an additional Target", + ["type"] = "implicit", + }, + }, + ["1799_AdditionalArrows"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "implicit", + }, + }, + ["1801_ProjectileSpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "implicit", + }, + }, + ["1803_MovementVelocity"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "implicit", + }, + }, + ["1808_MinimumEnduranceCharges"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3706959521", + ["text"] = "+# to Minimum Endurance Charges", + ["type"] = "implicit", + }, + }, + ["1809_MaximumEnduranceCharges"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1515657623", + ["text"] = "+# to Maximum Endurance Charges", + ["type"] = "implicit", + }, + }, + ["1813_MinimumFrenzyCharges"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_658456881", + ["text"] = "+# to Minimum Frenzy Charges", + ["type"] = "implicit", + }, + }, + ["1814_MaximumFrenzyCharges"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4078695", + ["text"] = "+# to Maximum Frenzy Charges", + ["type"] = "implicit", + }, + }, + ["1818_MinimumPowerCharges"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1999711879", + ["text"] = "+# to Minimum Power Charges", + ["type"] = "implicit", + }, + }, + ["1819_IncreasedMaximumPowerCharges"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_227523295", + ["text"] = "+# to Maximum Power Charges", + ["type"] = "implicit", + }, + }, + ["181_IncreasedSocketedAoEGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2551600084", + ["text"] = "+# to Level of Socketed AoE Gems", + ["type"] = "implicit", + }, + }, + ["182_LocalIncreaseSocketedProjectileGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2176571093", + ["text"] = "+# to Level of Socketed Projectile Gems", + ["type"] = "implicit", + }, + }, + ["1835_PowerChargeOnCriticalStrikeChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Strike", + ["type"] = "implicit", + }, + }, + ["1838_FrenzyChargeOnHitChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2323242761", + ["text"] = "#% chance to gain a Frenzy Charge on Hit", + ["type"] = "implicit", + }, + }, + ["183_LocalIncreaseSocketedBowGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2027269580", + ["text"] = "+# to Level of Socketed Bow Gems", + ["type"] = "implicit", + }, + }, + ["1843_CannotBeFrozen"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_876831634", + ["text"] = "Cannot be Frozen", + ["type"] = "implicit", + }, + }, + ["1844_CannotBeIgnited"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_331731406", + ["text"] = "Cannot be Ignited", + ["type"] = "implicit", + }, + }, + ["1846_CannotBeShocked"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_491899612", + ["text"] = "Cannot be Shocked", + ["type"] = "implicit", + }, + }, + ["1848_AvoidElementalStatusAilments"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3005472710", + ["text"] = "#% chance to Avoid Elemental Ailments", + ["type"] = "implicit", + }, + }, + ["1849_AvoidChill"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3483999943", + ["text"] = "#% chance to Avoid being Chilled", + ["type"] = "implicit", + }, + }, + ["184_LocalIncreaseSocketedMeleeGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_829382474", + ["text"] = "+# to Level of Socketed Melee Gems", + ["type"] = "implicit", + }, + }, + ["1850_AvoidFreeze"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1514829491", + ["text"] = "#% chance to Avoid being Frozen", + ["type"] = "implicit", + }, + }, + ["1851_AvoidIgnite"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1783006896", + ["text"] = "#% chance to Avoid being Ignited", + ["type"] = "implicit", + }, + }, + ["1853_AvoidShock"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1871765599", + ["text"] = "#% chance to Avoid being Shocked", + ["type"] = "implicit", + }, + }, + ["1854_ChanceToAvoidPoison"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4053951709", + ["text"] = "#% chance to Avoid being Poisoned", + ["type"] = "implicit", + }, + }, + ["1856_AvoidStun"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4262448838", + ["text"] = "#% chance to Avoid being Stunned", + ["type"] = "implicit", + }, + }, + ["185_LocalIncreaseSocketedMinionGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3604946673", + ["text"] = "+# to Level of Socketed Minion Gems", + ["type"] = "implicit", + }, + }, + ["1861_ChillAndFreezeDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3485067555", + ["text"] = "#% increased Chill Duration on Enemies", + ["type"] = "implicit", + }, + }, + ["1862_ShockDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3668351662", + ["text"] = "#% increased Shock Duration on Enemies", + ["type"] = "implicit", + }, + }, + ["1863_ChillAndFreezeDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1073942215", + ["text"] = "#% increased Freeze Duration on Enemies", + ["type"] = "implicit", + }, + }, + ["1864_BurnDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", + ["type"] = "implicit", + }, + }, + ["1868_StunDurationIncreasePercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2517001139", + ["text"] = "#% increased Stun Duration on Enemies", + ["type"] = "implicit", + }, + }, + ["186_LocalIncreaseSocketedAuraLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2452998583", + ["text"] = "+# to Level of Socketed Aura Gems", + ["type"] = "implicit", + }, + }, + ["1872_SelfStatusAilmentDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1745952865", + ["text"] = "#% reduced Elemental Ailment Duration on you", + ["type"] = "implicit", + }, + }, + ["1882_BurnDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1175385867", + ["text"] = "#% increased Burning Damage", + ["type"] = "implicit", + }, + }, + ["1885_AreaOfEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "implicit", + }, + }, + ["1888_ManaCostReduction"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_474294393", + ["text"] = "#% reduced Mana Cost of Skills", + ["type"] = "implicit", + }, + }, + ["1896_IncreaseManaCostFlat"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3736589033", + ["text"] = "+# to Total Mana Cost of Skills", + ["type"] = "implicit", + }, + }, + ["1903_AvoidInterruptionWhileCasting"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1916706958", + ["text"] = "#% chance to Ignore Stuns while Casting", + ["type"] = "implicit", + }, + }, + ["1907_StunRecovery"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2511217560", + ["text"] = "#% increased Stun and Block Recovery", + ["type"] = "implicit", + }, + }, + ["1932_TrapThrowSpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_118398748", + ["text"] = "#% increased Trap Throwing Speed", + ["type"] = "implicit", + }, + }, + ["1933_MineLayingSpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1896971621", + ["text"] = "#% increased Mine Throwing Speed", + ["type"] = "implicit", + }, + }, + ["1937_PhysicalAddedAsFire"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_369494213", + ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", + ["type"] = "implicit", + }, + }, + ["1939_PhysicalAddedAsLightning"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_219391121", + ["text"] = "Gain #% of Physical Damage as Extra Lightning Damage", + ["type"] = "implicit", + }, + }, + ["1940_PhysicalAddedAsChaos"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3319896421", + ["text"] = "Gain #% of Physical Damage as Extra Chaos Damage", + ["type"] = "implicit", + }, + }, + ["1943_LightningAddedAsChaos"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2402136583", + ["text"] = "Gain #% of Lightning Damage as Extra Chaos Damage", + ["type"] = "implicit", + }, + }, + ["1945_ColdAddedAsChaos"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2915373966", + ["text"] = "Gain #% of Cold Damage as Extra Chaos Damage", + ["type"] = "implicit", + }, + }, + ["1946_FireAddedAsChaos"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1599775597", + ["text"] = "Gain #% of Fire Damage as Extra Chaos Damage", + ["type"] = "implicit", + }, + }, + ["1949_LifeRegenerationRatePercentage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_836936635", + ["text"] = "Regenerate #% of Life per second", + ["type"] = "implicit", + }, + }, + ["194_LocalIncreaseSocketedSupportGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4154259475", + ["text"] = "+# to Level of Socketed Support Gems", + ["type"] = "implicit", + }, + }, + ["1960_ConvertPhysicalToFireImplicit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1533563525", + ["text"] = "#% of Physical Damage Converted to Fire Damage", + ["type"] = "implicit", + }, + }, + ["1962_ConvertPhysicalToColdImplicit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2133341901", + ["text"] = "#% of Physical Damage Converted to Cold Damage", + ["type"] = "implicit", + }, + }, + ["1964_ConvertPhysicalToLightningImplicit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3240769289", + ["text"] = "#% of Physical Damage Converted to Lightning Damage", + ["type"] = "implicit", + }, + }, + ["1967_PhysicalDamageConvertToChaosImplicit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_490098963", + ["text"] = "#% of Physical Damage Converted to Chaos Damage", + ["type"] = "implicit", + }, + }, + ["1978_MinionDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "implicit", + }, + }, + ["1985_ElementalDamagePercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "implicit", + }, + }, + ["1993_MaximumBlockChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4124805414", + ["text"] = "+#% to maximum Chance to Block Attack Damage", + ["type"] = "implicit", + }, + }, + ["1994_MaximumSpellBlockChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2388574377", + ["text"] = "+#% to maximum Chance to Block Spell Damage", + ["type"] = "implicit", + }, + }, + ["2000_GlobalKnockbackChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_977908611", + ["text"] = "#% chance to Knock Enemies Back on hit", + ["type"] = "implicit", + }, + }, + ["2001_ProjectileDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "implicit", + }, + }, + ["2031_ChanceToIgnite"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1335054179", + ["text"] = "#% chance to Ignite", + ["type"] = "implicit", + }, + }, + ["2034_ChanceToFreeze"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2309614417", + ["text"] = "#% chance to Freeze", + ["type"] = "implicit", + }, + }, + ["2038_ChanceToShock"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1538773178", + ["text"] = "#% chance to Shock", + ["type"] = "implicit", + }, + }, + ["2040_AreaDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4251717817", + ["text"] = "#% increased Area Damage", + ["type"] = "implicit", + }, + }, + ["2051_AttackAndCastSpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "implicit", + }, + }, + ["2064_GlobalFlaskLifeRecovery"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "implicit", + }, + }, + ["209_SocketedGemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3828613551", + ["text"] = "+#% to Quality of Socketed Gems", + ["type"] = "implicit", + }, + }, + ["210_IncreaseSocketedSupportGemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1328548975", + ["text"] = "+#% to Quality of Socketed Support Gems", + ["type"] = "implicit", + }, + }, + ["212_SocketedAoEGemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_768982451", + ["text"] = "+#% to Quality of Socketed AoE Gems", + ["type"] = "implicit", + }, + }, + ["2130_EnduranceChargeDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1170174456", + ["text"] = "#% increased Endurance Charge Duration", + ["type"] = "implicit", + }, + }, + ["2132_FrenzyChargeDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3338298622", + ["text"] = "#% increased Frenzy Charge Duration", + ["type"] = "implicit", + }, + }, + ["213_SocketedAuraGemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2276941637", + ["text"] = "+#% to Quality of Socketed Aura Gems", + ["type"] = "implicit", + }, + }, + ["2145_IncreasedSpellDamagePerPowerCharge"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_827329571", + ["text"] = "#% increased Spell Damage per Power Charge", + ["type"] = "implicit", + }, + }, + ["2147_IncreasedPowerChargeDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3872306017", + ["text"] = "#% increased Power Charge Duration", + ["type"] = "implicit", + }, + }, + ["214_SocketedBowGemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3280600715", + ["text"] = "+#% to Quality of Socketed Bow Gems", + ["type"] = "implicit", + }, + }, + ["215_SocketedChaosGemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2062835769", + ["text"] = "+#% to Quality of Socketed Chaos Gems", + ["type"] = "implicit", + }, + }, + ["2162_IncreasedLifeLeechRate"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2633745731", + ["text"] = "#% increased total Recovery per second from Life Leech", + ["type"] = "implicit", + }, + }, + ["2163_IncreasedManaLeechRate"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_690135178", + ["text"] = "#% increased total Recovery per second from Mana Leech", + ["type"] = "implicit", + }, + }, + ["216_SocketedColdGemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1164882313", + ["text"] = "+#% to Quality of Socketed Cold Gems", + ["type"] = "implicit", + }, + }, + ["217_SocketedDexterityGemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2877754099", + ["text"] = "+#% to Quality of Socketed Dexterity Gems", + ["type"] = "implicit", + }, + }, + ["2188_BeltIncreasedFlaskChargesGained"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1452809865", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "implicit", + }, + }, + ["2189_BeltReducedFlaskChargesUsed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "implicit", + }, + }, + ["2192_BeltIncreasedFlaskDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", + ["type"] = "implicit", + }, + }, + ["219_SocketedFireGemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3422008440", + ["text"] = "+#% to Quality of Socketed Fire Gems", + ["type"] = "implicit", + }, + }, + ["2207_AttackerTakesDamageNoRange"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3767873853", + ["text"] = "Reflects # Physical Damage to Melee Attackers", + ["type"] = "implicit", + }, + }, + ["220_SocketedIntelligenceGemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3174776455", + ["text"] = "+#% to Quality of Socketed Intelligence Gems", + ["type"] = "implicit", + }, + }, + ["221_SocketedLightningGemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1065580342", + ["text"] = "+#% to Quality of Socketed Lightning Gems", + ["type"] = "implicit", + }, + }, + ["222_SocketedMeleeGemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1396421504", + ["text"] = "+#% to Quality of Socketed Melee Gems", + ["type"] = "implicit", + }, + }, + ["2233_ManaReservationEfficiency"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1269219558", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "implicit", + }, + }, + ["2237_ReducedReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1269219558", + ["text"] = "#% increased Mana Reservation Efficiency of Skills", + ["type"] = "implicit", + }, + }, + ["2239_PhysicalAttackDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3441651621", + ["text"] = "+# Physical Damage taken from Attack Hits", + ["type"] = "implicit", + }, + }, + ["2242_FlatFireDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_614758785", + ["text"] = "+# Fire Damage taken from Hits", + ["type"] = "implicit", + }, + }, + ["224_SocketedProjectileGemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2428621158", + ["text"] = "+#% to Quality of Socketed Projectile Gems", + ["type"] = "implicit", + }, + }, + ["2250_DegenDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1101403182", + ["text"] = "#% reduced Damage taken from Damage Over Time", + ["type"] = "implicit", + }, + }, + ["225_SocketedStrengthGemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_122841557", + ["text"] = "+#% to Quality of Socketed Strength Gems", + ["type"] = "implicit", + }, + }, + ["226_AbyssJewelEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1482572705", + ["text"] = "#% increased Effect of Socketed Abyss Jewels", + ["type"] = "implicit", + }, + }, + ["2278_ReducedPhysicalDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "implicit", + }, + }, + ["2452_PhysicalDamageTakenAsFirePercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3342989455", + ["text"] = "#% of Physical Damage from Hits taken as Fire Damage", + ["type"] = "implicit", + }, + }, + ["2453_PhysicalDamageTakenAsCold"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1871056256", + ["text"] = "#% of Physical Damage from Hits taken as Cold Damage", + ["type"] = "implicit", + }, + }, + ["2454_PhysicalDamageTakenAsLightningPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_425242359", + ["text"] = "#% of Physical Damage from Hits taken as Lightning Damage", + ["type"] = "implicit", + }, + }, + ["2456_PhysicalDamageTakenAsChaos"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "implicit", + }, + }, + ["2463_AdditionalBlock"] = { + ["sign"] = "+", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", + ["type"] = "implicit", + }, + }, + ["2488_LocalChanceToBleed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "implicit", + }, + }, + ["2494_ChanceToBleed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1923879260", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "implicit", + }, + }, + ["2505_LightRadius"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "implicit", + }, + }, + ["2528_CurseOnHitLevelVulnerability"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3967845372", + ["text"] = "Curse Enemies with Vulnerability on Hit", + ["type"] = "implicit", + }, + }, + ["2530_CurseOnHitLevelElementalWeakness"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2028847114", + ["text"] = "Curse Enemies with Elemental Weakness on Hit", + ["type"] = "implicit", + }, + }, + ["2532_ConductivityOnHitLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_710372469", + ["text"] = "Curse Enemies with Conductivity on Hit", + ["type"] = "implicit", + }, + }, + ["2533_CurseOnHitDespair"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2764915899", + ["text"] = "Curse Enemies with Despair on Hit", + ["type"] = "implicit", + }, + }, + ["2535_FlammabilityOnHitLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_338121249", + ["text"] = "Curse Enemies with Flammability on Hit", + ["type"] = "implicit", + }, + }, + ["2536_FrostbiteOnHitLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_426847518", + ["text"] = "Curse Enemies with Frostbite on Hit", + ["type"] = "implicit", + }, + }, + ["2539_MeleeWeaponAndUnarmedRange"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2264295449", + ["text"] = "+# metres to Melee Strike Range", + ["type"] = "implicit", + }, + }, + ["2564_ItemDropsOnGuardianDeath"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3909846940", + ["text"] = "Item drops on Death if Equipped by an Animated Guardian", + ["type"] = "implicit", + }, + }, + ["2569_FasterIgniteDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2443492284", + ["text"] = "Ignites you inflict deal Damage #% faster", + ["type"] = "implicit", + }, + }, + ["2583_SummonTotemCastSpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "implicit", + }, + }, + ["2601_CurseEffectiveness"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2353576063", + ["text"] = "#% increased Effect of your Curses", + ["type"] = "implicit", + }, + }, + ["2615_MovementSpeedWhilePhased"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3684879618", + ["text"] = "#% increased Movement Speed while Phasing", + ["type"] = "implicit", + }, + }, + ["2634_EnduranceChargeOnKillChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1054322244", + ["text"] = "#% chance to gain an Endurance Charge on Kill", + ["type"] = "implicit", + }, + }, + ["2636_FrenzyChargeOnKillChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1826802197", + ["text"] = "#% chance to gain a Frenzy Charge on Kill", + ["type"] = "implicit", + }, + }, + ["2638_PowerChargeOnKillChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2483795307", + ["text"] = "#% chance to gain a Power Charge on Kill", + ["type"] = "implicit", + }, + }, + ["2651_EnergyShieldRegenerationPerMinute"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3594640492", + ["text"] = "Regenerate #% of Energy Shield per second", + ["type"] = "implicit", + }, + }, + ["2695_VaalSkillDamageAffectsSkillDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3871212304", + ["text"] = "Increases and Reductions to Damage with Vaal Skills also apply to Non-Vaal Skills", + ["type"] = "implicit", + }, + }, + ["2743_SpellDamagePer10Intelligence"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2818518881", + ["text"] = "#% increased Spell Damage per 10 Intelligence", + ["type"] = "implicit", + }, + }, + ["2750_LocalMeleeWeaponRange"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_350598685", + ["text"] = "+# metres to Weapon Range", + ["type"] = "implicit", + }, + }, + ["2792_TotemElementalResistances"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1809006367", + ["text"] = "Totems gain +#% to all Elemental Resistances", + ["type"] = "implicit", + }, + }, + ["2844_ChaosDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_496011033", + ["text"] = "+# Chaos Damage taken", + ["type"] = "implicit", + }, + }, + ["2912_MinionAttackSpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3375935924", + ["text"] = "Minions have #% increased Attack Speed", + ["type"] = "implicit", + }, + }, + ["2913_MinionCastSpeed"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4000101551", + ["text"] = "Minions have #% increased Cast Speed", + ["type"] = "implicit", + }, + }, + ["2916_MinionLifeRegeneration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2479683456", + ["text"] = "Minions Regenerate #% of Life per second", + ["type"] = "implicit", + }, + }, + ["2917_MinionElementalResistancesForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1423639565", + ["text"] = "Minions have +#% to all Elemental Resistances", + ["type"] = "implicit", + }, + }, + ["2941_PhysicalDamageAddedAsRandomElement"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3753703249", + ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", + ["type"] = "implicit", + }, + }, + ["2963_GlobalChanceToBlindOnHit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2221570601", + ["text"] = "#% Global chance to Blind Enemies on hit", + ["type"] = "implicit", + }, + }, + ["2985_ElementalPenetration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2101383955", + ["text"] = "Damage Penetrates #% Elemental Resistances", + ["type"] = "implicit", + }, + }, + ["2986_FireResistancePenetration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "implicit", + }, + }, + ["2988_ColdResistancePenetration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "implicit", + }, + }, + ["2989_LightningResistancePenetration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "implicit", + }, + }, + ["2998_ChanceToGainOnslaughtOnKill"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3023957681", + ["text"] = "#% chance to gain Onslaught for 4 seconds on Kill", + ["type"] = "implicit", + }, + }, + ["3034_AttackAndCastSpeedWithOnslaught"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2320884914", + ["text"] = "#% increased Attack and Cast Speed during Onslaught", + ["type"] = "implicit", + }, + }, + ["3065_RecoverLifePercentOnBlock"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2442647190", + ["text"] = "Recover #% of Life when you Block", + ["type"] = "implicit", + }, + }, + ["3068_DamageWhileLeeching"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_310246444", + ["text"] = "#% increased Damage while Leeching", + ["type"] = "implicit", + }, + }, + ["3100_VaalSkillDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2257141320", + ["text"] = "#% increased Damage with Vaal Skills", + ["type"] = "implicit", + }, + }, + ["3109_AdditionalVaalSoulOnKill"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1962922582", + ["text"] = "#% chance to gain an additional Vaal Soul on Kill", + ["type"] = "implicit", + }, + }, + ["3110_VaalSkillDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_547412107", + ["text"] = "Vaal Skills have #% increased Skill Effect Duration", + ["type"] = "implicit", + }, + }, + ["3112_VaalSkillCriticalStrikeChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3165492062", + ["text"] = "#% increased Vaal Skill Critical Strike Chance", + ["type"] = "implicit", + }, + }, + ["3174_BleedingDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1294118672", + ["text"] = "#% increased Damage with Bleeding", + ["type"] = "implicit", + }, + }, + ["3175_PoisonDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "implicit", + }, + }, + ["3178_PoisonOnHit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "implicit", + }, + }, + ["3186_PoisonDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1290399200", + ["text"] = "#% increased Damage with Poison", + ["type"] = "implicit", + }, + }, + ["3204_DamagePerEnduranceCharge"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3515686789", + ["text"] = "#% increased Damage per Endurance Charge", + ["type"] = "implicit", + }, + }, + ["3291_DamagePerFrenzyCharge"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_902747843", + ["text"] = "#% increased Damage per Frenzy Charge", + ["type"] = "implicit", + }, + }, + ["3309_EnemiesExplodeOnDeathPhysicalChance"] = { + ["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", + }, + }, + ["3368_IncreasedAuraEffectGraceCorrupted"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_397427740", + ["text"] = "Grace has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["3372_IncreasedAuraEffectDeterminationCorrupted"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3653400807", + ["text"] = "Determination has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["3373_IncreasedAuraEffectDisciplineCorrupted"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_788317702", + ["text"] = "Discipline has #% increased Aura Effect", + ["type"] = "implicit", + }, + }, + ["3374_CannotBePoisoned"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3835551335", + ["text"] = "Cannot be Poisoned", + ["type"] = "implicit", + }, + }, + ["3378_FireDamageAvoidance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_42242677", + ["text"] = "#% chance to Avoid Fire Damage from Hits", + ["type"] = "implicit", + }, + }, + ["3379_ColdDamageAvoidance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3743375737", + ["text"] = "#% chance to Avoid Cold Damage from Hits", + ["type"] = "implicit", + }, + }, + ["3380_LightningDamageAvoidance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2889664727", + ["text"] = "#% chance to Avoid Lightning Damage from Hits", + ["type"] = "implicit", + }, + }, + ["3382_UnholyMightOnKillPercentChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3562211447", + ["text"] = "#% chance to gain Unholy Might for 3 seconds on Kill", + ["type"] = "implicit", + }, + }, + ["3462_SpectreDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3645693773", + ["text"] = "Raised Spectres have #% increased Damage", + ["type"] = "implicit", + }, + }, + ["3571_AuraEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1880071428", + ["text"] = "#% increased effect of Non-Curse Auras from your Skills", + ["type"] = "implicit", + }, + }, + ["3594_ColdPenetrationWeapon"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1211769158", + ["text"] = "Damage with Weapons Penetrates #% Cold Resistance", + ["type"] = "implicit", + }, + }, + ["3595_FirePenetrationWeapon"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1123291426", + ["text"] = "Damage with Weapons Penetrates #% Fire Resistance", + ["type"] = "implicit", + }, + }, + ["3596_LightningPenetrationWeapon"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3301510262", + ["text"] = "Damage with Weapons Penetrates #% Lightning Resistance", + ["type"] = "implicit", + }, + }, + ["3602_HasOnslaught"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1520059289", + ["text"] = "Onslaught", + ["type"] = "implicit", + }, + }, + ["3648_ZombieIncreasedDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2228518621", + ["text"] = "Raised Zombies deal #% increased Damage", + ["type"] = "implicit", + }, + }, + ["3664_SkeletonDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3059357595", + ["text"] = "Skeletons deal #% increased Damage", + ["type"] = "implicit", + }, + }, + ["3766_LocalAttackReduceEnemyElementalResistance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4064396395", + ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", + ["type"] = "implicit", + }, + }, + ["3994_AnimateGuardianResistances"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2094281311", + ["text"] = "+#% to Animated Guardian Elemental Resistances", + ["type"] = "implicit", + }, + }, + ["4015_CurseEffectConductivity"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3395908304", + ["text"] = "#% increased Conductivity Curse Effect", + ["type"] = "implicit", + }, + }, + ["4016_CurseEffectElementalWeakness"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3348324479", + ["text"] = "#% increased Elemental Weakness Curse Effect", + ["type"] = "implicit", + }, + }, + ["4018_CurseEffectFlammability"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_282417259", + ["text"] = "#% increased Flammability Curse Effect", + ["type"] = "implicit", + }, + }, + ["4019_CurseEffectFrostbite"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1443215722", + ["text"] = "#% increased Frostbite Curse Effect", + ["type"] = "implicit", + }, + }, + ["4021_CurseEffectVulnerability"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1065909420", + ["text"] = "#% increased Vulnerability Curse Effect", + ["type"] = "implicit", + }, + }, + ["4074_DamageAffectedByAuras"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1419713278", + ["text"] = "You and nearby Allies deal #% increased Damage", + ["type"] = "implicit", + }, + }, + ["4087_DamageDuringFlaskEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2947215268", + ["text"] = "#% increased Damage during any Flask Effect", + ["type"] = "implicit", + }, + }, + ["4174_PhysicalDamageRemovedFromManaBeforeLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3743438423", + ["text"] = "#% of Physical Damage is taken from Mana before Life", + ["type"] = "implicit", + }, + }, + ["4220_BleedingImmunity"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1901158930", + ["text"] = "Bleeding cannot be inflicted on you", + ["type"] = "implicit", + }, + }, + ["4221_ChanceToAvoidBleeding"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", + ["type"] = "implicit", + }, + }, + ["4278_AddedColdDamagePerFrenzyCharge"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3648858570", + ["text"] = "# to # Added Cold Damage per Frenzy Charge", + ["type"] = "implicit", + }, + }, + ["4583_ReducedPhysicalDamageTakenVsAbyssMonsters"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_287491423", + ["text"] = "#% additional Physical Damage Reduction against Abyssal Monsters", + ["type"] = "implicit", + }, + }, + ["4584_DeterminationPhysicalDamageReduction"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1873457881", + ["text"] = "#% additional Physical Damage Reduction while affected by Determination", + ["type"] = "implicit", + }, + }, + ["4733_AreaOfEffectIfStunnedEnemyRecently"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_430248187", + ["text"] = "#% increased Area of Effect if you have Stunned an Enemy Recently", + ["type"] = "implicit", + }, + }, + ["4764_ArmourEvasionWithFortify"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2962782530", + ["text"] = "+# to Armour and Evasion Rating while Fortified", + ["type"] = "implicit", + }, + }, + ["4797_AdditionalCriticalStrikeChanceWithAttacks"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2572042788", + ["text"] = "Attacks have +#% to Critical Strike Chance", + ["type"] = "implicit", + }, + }, + ["4853_AttackDamagePerMana"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4134865890", + ["text"] = "#% increased Attack Damage per 500 Maximum Mana", + ["type"] = "implicit", + }, + }, + ["4874_AddedFireDamagePerStrength"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1060540099", + ["text"] = "Adds # to # Fire Damage to Attacks with this Weapon per 10 Strength", + ["type"] = "implicit", + }, + }, + ["4877_AddedLightningDamagePerIntelligence"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3390848861", + ["text"] = "Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence", + ["type"] = "implicit", + }, + }, + ["4920_AttacksBlindOnHitChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["type"] = "implicit", + }, + }, + ["4921_AttacksTauntOnHitChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_280213220", + ["text"] = "#% chance to Taunt Enemies on Hit with Attacks", + ["type"] = "implicit", + }, + }, + ["4923_AttackImpaleChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", + ["type"] = "implicit", + }, + }, + ["4929_AddedColdDamagePerDexterity"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_149574107", + ["text"] = "Adds # to # Cold Damage to Attacks with this Weapon per 10 Dexterity", + ["type"] = "implicit", + }, + }, + ["4988_AilmentDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_690707482", + ["text"] = "#% increased Damage with Ailments", + ["type"] = "implicit", + }, + }, + ["4999_BleedDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "implicit", + }, + }, ["4_DamageCannotBeReflectedPercent"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1571797746", - ["text"] = "#% of Damage from your Hits cannot be Reflected", - ["type"] = "implicit", - }, - }, - ["528_DisplaySocketedGemsGetReducedReservation"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3289633055", - ["text"] = "Socketed Gems have #% increased Reservation Efficiency", - ["type"] = "implicit", - }, - }, - ["530_SocketedSkillsManaMultiplier"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2865550257", - ["text"] = "Socketed Skill Gems get a #% Cost & Reservation Multiplier", - ["type"] = "implicit", - }, - }, - ["5659_DoubleDamageChance"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1172810729", - ["text"] = "#% chance to deal Double Damage", - ["type"] = "implicit", - }, - }, - ["5671_ChanceWhenHitForArmourToBeDoubled"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_327253797", - ["text"] = "#% chance to Defend with 200% of Armour", - ["type"] = "implicit", - }, - }, - ["5673_AdditionalChanceToEvade"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2021058489", - ["text"] = "+#% chance to Evade Attack Hits", - ["type"] = "implicit", - }, - }, - ["5675_GraceAdditionalChanceToEvade"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_969576725", - ["text"] = "+#% chance to Evade Attack Hits while affected by Grace", - ["type"] = "implicit", - }, - }, - ["5749_ChaosDamageAttackSkills"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1959092146", - ["text"] = "#% increased Chaos Damage with Attack Skills", - ["type"] = "implicit", - }, - }, - ["5750_ChaosDamageSpellSkills"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3761858151", - ["text"] = "#% increased Chaos Damage with Spell Skills", - ["type"] = "implicit", - }, - }, - ["5798_ChillEffect"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1793818220", - ["text"] = "#% increased Effect of Cold Ailments", - ["type"] = "implicit", - }, - }, - ["5819_FlatColdDamageTaken"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_261654754", - ["text"] = "+# Cold Damage taken from Hits", - ["type"] = "implicit", - }, - }, - ["5821_ColdDamageAttackSkills"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_860668586", - ["text"] = "#% increased Cold Damage with Attack Skills", - ["type"] = "implicit", - }, - }, - ["5822_ColdDamageSpellSkills"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2186994986", - ["text"] = "#% increased Cold Damage with Spell Skills", - ["type"] = "implicit", - }, - }, - ["5943_SpellCriticalChanceWithDualWield"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1218939541", - ["text"] = "#% increased Critical Strike Chance for Spells while Dual Wielding", - ["type"] = "implicit", - }, - }, - ["5944_SpellCriticalChanceWithShield"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_952509814", - ["text"] = "#% increased Critical Strike Chance for Spells while holding a Shield", - ["type"] = "implicit", - }, - }, - ["5945_SpellCriticalChanceWithStaff"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_140429540", - ["text"] = "#% increased Critical Strike Chance for Spells while wielding a Staff", - ["type"] = "implicit", - }, - }, - ["5970_SpellCriticalMultiplierWithDualWield"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2349237916", - ["text"] = "+#% to Critical Strike Multiplier for Spells while Dual Wielding", - ["type"] = "implicit", - }, - }, - ["5971_SpellCriticalMultiplierWithShield"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2311200892", - ["text"] = "+#% to Critical Strike Multiplier for Spells while holding a Shield", - ["type"] = "implicit", - }, - }, - ["5972_SpellCriticalMultiplierWithStaff"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3629080637", - ["text"] = "+#% to Critical Strike Multiplier for Spells while wielding a Staff", - ["type"] = "implicit", - }, - }, - ["6000_CurseDuration"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1435748744", - ["text"] = "Curse Skills have #% increased Skill Effect Duration", - ["type"] = "implicit", - }, - }, - ["6056_DamagePer15Dexterity"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_342670903", - ["text"] = "#% increased Damage per 100 Dexterity", - ["type"] = "implicit", - }, - }, - ["6057_DamagePer15Intelligence"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3966666111", - ["text"] = "#% increased Damage per 100 Intelligence", - ["type"] = "implicit", - }, - }, - ["6058_DamagePer15Strength"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4274080377", - ["text"] = "#% increased Damage per 100 Strength", - ["type"] = "implicit", - }, - }, - ["6066_IncreasedDamagePerPowerCharge"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2034658008", - ["text"] = "#% increased Damage per Power Charge", - ["type"] = "implicit", - }, - }, - ["6069_DamageVSAbyssMonsters"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3257279374", - ["text"] = "#% increased Damage with Hits and Ailments against Abyssal Monsters", - ["type"] = "implicit", - }, - }, - ["6108_DamageTakenPer250Dexterity"] = { - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2477636501", - ["text"] = "#% increased Damage taken per 250 Dexterity", - ["type"] = "implicit", - }, - }, - ["6109_DamageTakenPer250Intelligence"] = { - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3522931817", - ["text"] = "#% increased Damage taken per 250 Intelligence", - ["type"] = "implicit", - }, - }, - ["6110_DamageTakenPer250Strength"] = { - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1443108510", - ["text"] = "#% increased Damage taken per 250 Strength", - ["type"] = "implicit", - }, - }, - ["6172_DeterminationReservation"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_325889252", - ["text"] = "Determination has #% increased Mana Reservation Efficiency", - ["type"] = "implicit", - }, - }, - ["6173_DeterminationReservationEfficiency"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_325889252", - ["text"] = "Determination has #% increased Mana Reservation Efficiency", - ["type"] = "implicit", - }, - }, - ["6188_DisciplineReservation"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2081344089", - ["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", - }, - }, - ["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", - }, - }, - }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1571797746", + ["text"] = "#% of Damage from your Hits cannot be Reflected", + ["type"] = "implicit", + }, + }, + ["533_DisplaySocketedGemsGetReducedReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3289633055", + ["text"] = "Socketed Gems have #% increased Reservation Efficiency", + ["type"] = "implicit", + }, + }, + ["535_SocketedSkillsManaMultiplier"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2865550257", + ["text"] = "Socketed Skill Gems get a #% Cost & Reservation Multiplier", + ["type"] = "implicit", + }, + }, + ["5664_DoubleDamageChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1172810729", + ["text"] = "#% chance to deal Double Damage", + ["type"] = "implicit", + }, + }, + ["5676_ChanceWhenHitForArmourToBeDoubled"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_327253797", + ["text"] = "#% chance to Defend with 200% of Armour", + ["type"] = "implicit", + }, + }, + ["5678_AdditionalChanceToEvade"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2021058489", + ["text"] = "+#% chance to Evade Attack Hits", + ["type"] = "implicit", + }, + }, + ["5680_GraceAdditionalChanceToEvade"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_969576725", + ["text"] = "+#% chance to Evade Attack Hits while affected by Grace", + ["type"] = "implicit", + }, + }, + ["5754_ChaosDamageAttackSkills"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1959092146", + ["text"] = "#% increased Chaos Damage with Attack Skills", + ["type"] = "implicit", + }, + }, + ["5755_ChaosDamageSpellSkills"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3761858151", + ["text"] = "#% increased Chaos Damage with Spell Skills", + ["type"] = "implicit", + }, + }, + ["5803_ChillEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1793818220", + ["text"] = "#% increased Effect of Cold Ailments", + ["type"] = "implicit", + }, + }, + ["5824_FlatColdDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_261654754", + ["text"] = "+# Cold Damage taken from Hits", + ["type"] = "implicit", + }, + }, + ["5826_ColdDamageAttackSkills"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_860668586", + ["text"] = "#% increased Cold Damage with Attack Skills", + ["type"] = "implicit", + }, + }, + ["5827_ColdDamageSpellSkills"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2186994986", + ["text"] = "#% increased Cold Damage with Spell Skills", + ["type"] = "implicit", + }, + }, + ["5948_SpellCriticalChanceWithDualWield"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1218939541", + ["text"] = "#% increased Critical Strike Chance for Spells while Dual Wielding", + ["type"] = "implicit", + }, + }, + ["5949_SpellCriticalChanceWithShield"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_952509814", + ["text"] = "#% increased Critical Strike Chance for Spells while holding a Shield", + ["type"] = "implicit", + }, + }, + ["5950_SpellCriticalChanceWithStaff"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_140429540", + ["text"] = "#% increased Critical Strike Chance for Spells while wielding a Staff", + ["type"] = "implicit", + }, + }, + ["5975_SpellCriticalMultiplierWithDualWield"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2349237916", + ["text"] = "+#% to Critical Strike Multiplier for Spells while Dual Wielding", + ["type"] = "implicit", + }, + }, + ["5976_SpellCriticalMultiplierWithShield"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2311200892", + ["text"] = "+#% to Critical Strike Multiplier for Spells while holding a Shield", + ["type"] = "implicit", + }, + }, + ["5977_SpellCriticalMultiplierWithStaff"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3629080637", + ["text"] = "+#% to Critical Strike Multiplier for Spells while wielding a Staff", + ["type"] = "implicit", + }, + }, + ["6005_CurseDuration"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1435748744", + ["text"] = "Curse Skills have #% increased Skill Effect Duration", + ["type"] = "implicit", + }, + }, + ["6061_DamagePer15Dexterity"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_342670903", + ["text"] = "#% increased Damage per 100 Dexterity", + ["type"] = "implicit", + }, + }, + ["6062_DamagePer15Intelligence"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3966666111", + ["text"] = "#% increased Damage per 100 Intelligence", + ["type"] = "implicit", + }, + }, + ["6063_DamagePer15Strength"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4274080377", + ["text"] = "#% increased Damage per 100 Strength", + ["type"] = "implicit", + }, + }, + ["6071_IncreasedDamagePerPowerCharge"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2034658008", + ["text"] = "#% increased Damage per Power Charge", + ["type"] = "implicit", + }, + }, + ["6074_DamageVSAbyssMonsters"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3257279374", + ["text"] = "#% increased Damage with Hits and Ailments against Abyssal Monsters", + ["type"] = "implicit", + }, + }, + ["6113_DamageTakenPer250Dexterity"] = { + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2477636501", + ["text"] = "#% increased Damage taken per 250 Dexterity", + ["type"] = "implicit", + }, + }, + ["6114_DamageTakenPer250Intelligence"] = { + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3522931817", + ["text"] = "#% increased Damage taken per 250 Intelligence", + ["type"] = "implicit", + }, + }, + ["6115_DamageTakenPer250Strength"] = { + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1443108510", + ["text"] = "#% increased Damage taken per 250 Strength", + ["type"] = "implicit", + }, + }, + ["6177_DeterminationReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2721871046", + ["text"] = "Determination has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, + ["6178_DeterminationReservationEfficiency"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2721871046", + ["text"] = "Determination has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, + ["6193_DisciplineReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1692887998", + ["text"] = "Discipline has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, + ["6194_DisciplineReservationEfficiency"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1692887998", + ["text"] = "Discipline has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, + ["6326_IncreasedWeaponElementalDamagePercent"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attack Skills", + ["type"] = "implicit", + }, + }, + ["6377_EnemiesExplodeOnDeathPhysical"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1220361974", + ["text"] = "Enemies you Kill Explode, dealing #% of their Life as Physical Damage", + ["type"] = "implicit", + }, + }, + ["6464_DisciplineEnergyShieldRegen"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_991194404", + ["text"] = "Regenerate #% of Energy Shield per Second while affected by Discipline", + ["type"] = "implicit", + }, + }, + ["6549_FasterBleedDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3828375170", + ["text"] = "Bleeding you inflict deals Damage #% faster", + ["type"] = "implicit", + }, + }, + ["6550_FasterPoisonDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2907156609", + ["text"] = "Poisons you inflict deal Damage #% faster", + ["type"] = "implicit", + }, + }, + ["6568_FireDamagePerStrength"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2241902512", + ["text"] = "#% increased Fire Damage per 20 Strength", + ["type"] = "implicit", + }, + }, + ["6581_FireDamageAttackSkills"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2468413380", + ["text"] = "#% increased Fire Damage with Attack Skills", + ["type"] = "implicit", + }, + }, + ["6582_FireDamageSpellSkills"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_361162316", + ["text"] = "#% increased Fire Damage with Spell Skills", + ["type"] = "implicit", + }, + }, + ["6751_EnduranceChargeIfHitRecently"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2894476716", + ["text"] = "Gain # Endurance Charge every second if you've been Hit Recently", + ["type"] = "implicit", + }, + }, + ["6791_OnslaughtOnHit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2514424018", + ["text"] = "You gain Onslaught for # seconds on Hit", + ["type"] = "implicit", + }, + }, + ["6907_GraceReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1803598623", + ["text"] = "Grace has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, + ["6908_GraceReservationEfficiency"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1803598623", + ["text"] = "Grace has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, + ["7457_FlatLightningDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_465051235", + ["text"] = "+# Lightning Damage taken from Hits", + ["type"] = "implicit", + }, + }, + ["7458_LightningDamageAttackSkills"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4208907162", + ["text"] = "#% increased Lightning Damage with Attack Skills", + ["type"] = "implicit", + }, + }, + ["7459_LightningDamageSpellSkills"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3935031607", + ["text"] = "#% increased Lightning Damage with Spell Skills", + ["type"] = "implicit", + }, + }, + ["74_HasXSockets"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4077843608", + ["text"] = "Has 1 Socket", + ["type"] = "implicit", + }, + }, + ["7861_AttackAndCastSpeedCorruptedItem"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_26867112", + ["text"] = "#% increased Attack and Cast Speed if Corrupted", + ["type"] = "implicit", + }, + }, + ["7862_AttackDamageCorruptedItem"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2347923784", + ["text"] = "#% increased Attack Damage if Corrupted", + ["type"] = "implicit", + }, + }, + ["7879_LocalChanceToIntimidateOnHit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2089652545", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["type"] = "implicit", + }, + }, + ["7885_GlobalCriticalStrikeChanceCorruptedItem"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4023723828", + ["text"] = "#% increased Global Critical Strike Chance if Corrupted", + ["type"] = "implicit", + }, + }, + ["7890_AllDamageCorruptedItem"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_767196662", + ["text"] = "#% increased Damage if Corrupted", + ["type"] = "implicit", + }, + }, + ["7891_DamageTakenCorruptedItem"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3309607228", + ["text"] = "#% reduced Damage taken if Corrupted", + ["type"] = "implicit", + }, + }, + ["7949_ImmuneToCursesCorruptedItem"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1954526925", + ["text"] = "Immune to Curses if Corrupted", + ["type"] = "implicit", + }, + }, + ["7996_IncreasedEnergyShieldCorruptedItem"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1025108940", + ["text"] = "#% increased maximum Energy Shield if Corrupted", + ["type"] = "implicit", + }, + }, + ["7998_IncreasedLifeCorruptedItem"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3887484120", + ["text"] = "#% increased maximum Life if Corrupted", + ["type"] = "implicit", + }, + }, + ["8004_MovementVelocityCorruptedItem"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2880601380", + ["text"] = "#% increased Movement Speed if Corrupted", + ["type"] = "implicit", + }, + }, + ["8007_LocalChanceToPoisonOnHit"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% chance to Poison on Hit", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3885634897", + ["text"] = "#% chance to Poison on Hit (Local)", + ["type"] = "implicit", + }, + }, + ["8009_AllElementalResistanceCorruptedItem"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3731630482", + ["text"] = "+#% to all Elemental Resistances if Corrupted", + ["type"] = "implicit", + }, + }, + ["8032_SpellDamageCorruptedItem"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_374116820", + ["text"] = "#% increased Spell Damage if Corrupted", + ["type"] = "implicit", + }, + }, + ["8191_RecoverManaPercentOnBlock"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3041288981", + ["text"] = "Recover #% of your maximum Mana when you Block", + ["type"] = "implicit", + }, + }, + ["8207_AddedManaRegenWithDualWield"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1361343333", + ["text"] = "Regenerate # Mana per Second while Dual Wielding", + ["type"] = "implicit", + }, + }, + ["8208_AddedManaRegenWithShield"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3762868276", + ["text"] = "Regenerate # Mana per Second while holding a Shield", + ["type"] = "implicit", + }, + }, + ["8210_AddedManaRegenWithStaff"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1388668644", + ["text"] = "Regenerate # Mana per second while wielding a Staff", + ["type"] = "implicit", + }, + }, + ["9121_FortifyEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_335507772", + ["text"] = "+# to maximum Fortification", + ["type"] = "implicit", + }, + }, + ["9164_LifeAddedAsEnergyShield"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_67280387", + ["text"] = "Gain #% of Maximum Life as Extra Maximum Energy Shield", + ["type"] = "implicit", + }, + }, + ["9269_MinionAccuracyRating"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", + ["type"] = "implicit", + }, + }, + ["9498_IncreasedAilmentEffectOnEnemies"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_782230869", + ["text"] = "#% increased Effect of Non-Damaging Ailments", + ["type"] = "implicit", + }, + }, + ["9644_PhysicalDamageWithUnholyMight"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1609570656", + ["text"] = "#% increased Physical Damage while you have Unholy Might", + ["type"] = "implicit", + }, + }, + ["9663_PhysicalDamageAttackSkills"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2266750692", + ["text"] = "#% increased Physical Damage with Attack Skills", + ["type"] = "implicit", + }, + }, + ["9664_PhysicalDamageSpellSkills"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1430255627", + ["text"] = "#% increased Physical Damage with Spell Skills", + ["type"] = "implicit", + }, + }, + ["9767_PurityOfFireReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1135152940", + ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, + ["9768_PurityOfFireReservationEfficiency"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1135152940", + ["text"] = "Purity of Fire has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, + ["9770_PurityOfIceReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_139925400", + ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, + ["9771_PurityOfIceReservationEfficiency"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_139925400", + ["text"] = "Purity of Ice has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, + ["9773_PurityOfLightningReservation"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1450978702", + ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, + ["9774_PurityOfLightningReservationEfficiency"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1450978702", + ["text"] = "Purity of Lightning has #% increased Mana Reservation Efficiency", + ["type"] = "implicit", + }, + }, + ["9881_ReflectDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3577248251", + ["text"] = "You and your Minions take #% reduced Reflected Damage", + ["type"] = "implicit", + }, + }, + ["9902_RemoveFreezeOnFlaskUse"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3296873305", + ["text"] = "Remove Chill and Freeze when you use a Flask", + ["type"] = "implicit", + }, + }, + ["9906_RemoveIgniteOnFlaskUse"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1162425204", + ["text"] = "Remove Ignite and Burning when you use a Flask", + ["type"] = "implicit", + }, + }, + ["9916_RemoveShockOnFlaskUse"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_561861132", + ["text"] = "Remove Shock when you use a Flask", + ["type"] = "implicit", + }, + }, + }, ["WatchersEye"] = { - ["10059_ClarityReducedManaCost"] = { + ["10058_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", + }, + }, + ["10063_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", + }, + }, + ["10173_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", + }, + }, + ["10174_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", + }, + }, + ["10452_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", + }, + }, + ["10456_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", + }, + }, + ["10461_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", + }, + }, + ["10462_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", + }, + }, + ["10467_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", + }, + }, + ["10468_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", + }, + }, + ["10469_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", + }, + }, + ["10471_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", + }, + }, + ["10475_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", + }, + }, + ["10481_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", + }, + }, + ["10483_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", + }, + }, + ["10484_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", + }, + }, + ["10665_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", - }, - }, - ["1735_ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRate"] = { + ["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", + }, + }, + ["12_DeterminationReducedReflectedPhysicalDamage"] = { ["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", - }, - }, - ["1736_ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRateOld"] = { + ["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", + }, + }, + ["1740_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", - }, - }, - ["4552_HatredAdditionalCriticalStrikeChance"] = { + ["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", + }, + }, + ["1741_ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRateOld"] = { ["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", - }, - }, - ["4561_PurityOfElementsMaximumElementalResistances"] = { + ["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", + }, + }, + ["4557_HatredAdditionalCriticalStrikeChance"] = { ["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", - }, - }, - ["4579_DeterminationPhysicalDamageReduction"] = { + ["max"] = 1.8, + ["min"] = 1.2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2753985507", + ["text"] = "+#% to Critical Strike Chance while affected by Hatred", + ["type"] = "explicit", + }, + }, + ["4566_PurityOfElementsMaximumElementalResistances"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1873457881", - ["text"] = "#% additional Physical Damage Reduction while affected by Determination", - ["type"] = "explicit", - }, - }, - ["4765_DeterminationAdditionalArmour"] = { + ["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", + }, + }, + ["4584_DeterminationPhysicalDamageReduction"] = { ["AnyJewel"] = { - ["max"] = 1000, - ["min"] = 600, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3742808908", - ["text"] = "+# to Armour while affected by Determination", - ["type"] = "explicit", - }, - }, - ["4862_PrecisionIncreasedAttackDamage"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1873457881", + ["text"] = "#% additional Physical Damage Reduction while affected by Determination", + ["type"] = "explicit", + }, + }, + ["4770_DeterminationAdditionalArmour"] = { ["AnyJewel"] = { - ["max"] = 60, - ["min"] = 40, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2048747572", - ["text"] = "#% increased Attack Damage while affected by Precision", - ["type"] = "explicit", - }, - }, - ["4904_PrecisionIncreasedAttackSpeed"] = { + ["max"] = 1000, + ["min"] = 600, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3742808908", + ["text"] = "+# to Armour while affected by Determination", + ["type"] = "explicit", + }, + }, + ["4867_PrecisionIncreasedAttackDamage"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3375743050", - ["text"] = "#% increased Attack Speed while affected by Precision", - ["type"] = "explicit", - }, - }, - ["5043_HatredPhysicalConvertedToCold"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2048747572", + ["text"] = "#% increased Attack Damage while affected by Precision", + ["type"] = "explicit", + }, + }, + ["4909_PrecisionIncreasedAttackSpeed"] = { ["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", - }, - }, - ["5044_AngerPhysicalConvertedToFire"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3375743050", + ["text"] = "#% increased Attack Speed while affected by Precision", + ["type"] = "explicit", + }, + }, + ["5048_HatredPhysicalConvertedToCold"] = { ["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", - }, - }, - ["5045_WrathPhysicalConvertedToLightning"] = { + ["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", + }, + }, + ["5049_AngerPhysicalConvertedToFire"] = { ["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", - }, - }, - ["5221_GraceBlindEnemiesWhenHit"] = { + ["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", + }, + }, + ["5050_WrathPhysicalConvertedToLightning"] = { ["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", - }, - }, - ["5231_DeterminationAdditionalBlock"] = { + ["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", + }, + }, + ["5226_GraceBlindEnemiesWhenHit"] = { ["AnyJewel"] = { - ["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"] = { + ["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", + }, + }, + ["5236_DeterminationAdditionalBlock"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1653848515", - ["text"] = "Cannot be Blinded while affected by Precision", - ["type"] = "explicit", - }, - }, - ["5471_ZealotryCastSpeed"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3692646597", + ["text"] = "+#% Chance to Block Attack Damage while affected by Determination", + ["type"] = "explicit", + }, + }, + ["5399_PrecisionCannotBeBlinded"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2444534954", - ["text"] = "#% increased Cast Speed while affected by Zealotry", - ["type"] = "explicit", - }, - }, - ["5652_DisciplineAdditionalSpellBlock"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1653848515", + ["text"] = "Cannot be Blinded while affected by Precision", + ["type"] = "explicit", + }, + }, + ["5476_ZealotryCastSpeed"] = { ["AnyJewel"] = { - ["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"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2444534954", + ["text"] = "#% increased Cast Speed while affected by Zealotry", + ["type"] = "explicit", + }, + }, + ["5657_DisciplineAdditionalSpellBlock"] = { ["AnyJewel"] = { - ["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"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1313498929", + ["text"] = "+#% Chance to Block Spell Damage while affected by Discipline", + ["type"] = "explicit", + }, + }, + ["5680_GraceAdditionalChanceToEvade"] = { ["AnyJewel"] = { - ["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"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_969576725", + ["text"] = "+#% chance to Evade Attack Hits while affected by Grace", + ["type"] = "explicit", + }, + }, + ["5749_PurityOfElementsChaosResistance"] = { ["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", - }, - }, - ["5814_HatredIncreasedColdDamage"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1138813382", + ["text"] = "+#% to Chaos Resistance while affected by Purity of Elements", + ["type"] = "explicit", + }, + }, + ["5806_PurityOfFireColdAndLightningTakenAsFire"] = { ["AnyJewel"] = { - ["max"] = 60, - ["min"] = 40, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1413864591", - ["text"] = "#% increased Cold Damage while affected by Hatred", - ["type"] = "explicit", - }, - }, - ["5849_ZealotryConsecratedGroundEnemyDamageTaken"] = { + ["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", + }, + }, + ["5819_HatredIncreasedColdDamage"] = { ["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", - }, - }, - ["5852_ZealotryConsecratedGroundEffectLingersForMsAfterLeavingTheArea"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1413864591", + ["text"] = "#% increased Cold Damage while affected by Hatred", + ["type"] = "explicit", + }, + }, + ["5854_ZealotryConsecratedGroundEnemyDamageTaken"] = { ["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", - }, - }, - ["5921_ZealotryCriticalStrikeChanceAgainstEnemiesOnConsecratedGround"] = { + ["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", + }, + }, + ["5857_ZealotryConsecratedGroundEffectLingersForMsAfterLeavingTheArea"] = { ["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", - }, - }, - ["5941_WrathIncreasedCriticalStrikeChance"] = { + ["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", + }, + }, + ["5926_ZealotryCriticalStrikeChanceAgainstEnemiesOnConsecratedGround"] = { ["AnyJewel"] = { - ["max"] = 100, - ["min"] = 70, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3357049845", - ["text"] = "#% increased Critical Strike Chance while affected by Wrath", - ["type"] = "explicit", - }, - }, - ["5968_AngerIncreasedCriticalStrikeMultiplier"] = { + ["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", + }, + }, + ["5946_WrathIncreasedCriticalStrikeChance"] = { ["AnyJewel"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3627458291", - ["text"] = "+#% to Critical Strike Multiplier while affected by Anger", - ["type"] = "explicit", - }, - }, - ["5969_PrecisionIncreasedCriticalStrikeMultiplier"] = { + ["max"] = 100, + ["min"] = 70, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3357049845", + ["text"] = "#% increased Critical Strike Chance while affected by Wrath", + ["type"] = "explicit", + }, + }, + ["5973_AngerIncreasedCriticalStrikeMultiplier"] = { ["AnyJewel"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1817023621", - ["text"] = "+#% to Critical Strike Multiplier while affected by Precision", - ["type"] = "explicit", - }, - }, - ["5983_ZealotryCriticalStrikesPenetratesElementalResistances"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3627458291", + ["text"] = "+#% to Critical Strike Multiplier while affected by Anger", + ["type"] = "explicit", + }, + }, + ["5974_PrecisionIncreasedCriticalStrikeMultiplier"] = { ["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", - }, - }, - ["6088_ClarityDamageTakenFromManaBeforeLife"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1817023621", + ["text"] = "+#% to Critical Strike Multiplier while affected by Precision", + ["type"] = "explicit", + }, + }, + ["5988_ZealotryCriticalStrikesPenetratesElementalResistances"] = { ["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", - }, - }, - ["6106_ClarityDamageTakenGainedAsMana"] = { + ["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", + }, + }, + ["6093_ClarityDamageTakenFromManaBeforeLife"] = { ["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", - }, - }, - ["6150_HasteDebuffsExpireFaster"] = { + ["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", + }, + }, + ["6111_ClarityDamageTakenGainedAsMana"] = { ["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_380220671", + ["text"] = "#% of Damage taken while affected by Clarity Recouped as Mana", + ["type"] = "explicit", + }, + }, + ["6155_HasteDebuffsExpireFaster"] = { ["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"] = 20, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_207635700", + ["text"] = "Debuffs on you expire #% faster while affected by Haste", + ["type"] = "explicit", + }, + }, + ["6264_MalevolenceDamageOverTimeMultiplier"] = { ["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"] = 22, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2736708072", + ["text"] = "+#% to Damage over Time Multiplier while affected by Malevolence", + ["type"] = "explicit", + }, + }, + ["6434_DisciplineFasterStartOfRecharge"] = { ["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"] = 40, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1016185292", + ["text"] = "#% faster start of Energy Shield Recharge while affected by Discipline", + ["type"] = "explicit", + }, + }, + ["6437_DisciplineEnergyShieldPerHit"] = { ["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"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3765507527", + ["text"] = "Gain # Energy Shield per Enemy Hit while affected by Discipline", + ["type"] = "explicit", + }, + }, + ["6442_WrathLightningDamageESLeech"] = { ["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"] = 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", + }, + }, + ["6457_DisciplineEnergyShieldRecoveryRate"] = { ["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"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_80470845", + ["text"] = "#% increased Energy Shield Recovery Rate while affected by Discipline", + ["type"] = "explicit", + }, + }, + ["6464_DisciplineEnergyShieldRegen"] = { ["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"] = 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", + }, + }, + ["6541_DeterminationReducedExtraDamageFromCrits"] = { ["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"] = 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", + }, + }, + ["6557_PurityOfIceFireAndLightningTakenAsCold"] = { ["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"] = 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", + }, + }, + ["6573_AngerIncreasedFireDamage"] = { ["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"] = 60, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3337107517", + ["text"] = "#% increased Fire Damage while affected by Anger", + ["type"] = "explicit", + }, + }, + ["6645_VitalityLifeRecoveryFromFlasks"] = { ["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"] = 70, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_362838683", + ["text"] = "#% increased Life Recovery from Flasks while affected by Vitality", + ["type"] = "explicit", + }, + }, + ["6728_ZealotryGainArcaneSurgeFor4SecondsWhenYouCreateConsecratedGround"] = { ["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"] = 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", + }, + }, + ["6792_HasteGainOnslaughtOnKill"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1346311588", - ["text"] = "You have Phasing while affected by Haste", - ["type"] = "explicit", - }, - }, - ["7230_PurityOfIceImmuneToFreeze"] = { + ["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", + }, + }, + ["6803_HasteGainPhasing"] = { ["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_1346311588", + ["text"] = "You have Phasing while affected by Haste", + ["type"] = "explicit", + }, + }, + ["7235_PurityOfIceImmuneToFreeze"] = { ["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_2720072724", + ["text"] = "Immune to Freeze while affected by Purity of Ice", + ["type"] = "explicit", + }, + }, + ["7238_PurityOfFireImmuneToIgnite"] = { ["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_371612541", + ["text"] = "Immune to Ignite while affected by Purity of Fire", + ["type"] = "explicit", + }, + }, + ["7243_PurityOfLightningImmuneToShock"] = { ["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"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_281949611", + ["text"] = "Immune to Shock while affected by Purity of Lightning", + ["type"] = "explicit", + }, + }, + ["7349_MalevolenceLifeAndEnergyShieldRecoveryRate"] = { ["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"] = 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", + }, + }, + ["7360_VitalityLifeGainPerHit"] = { ["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"] = 30, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4259701244", + ["text"] = "Gain # Life per Enemy Hit while affected by Vitality", + ["type"] = "explicit", + }, + }, + ["7366_VitalityDamageLifeLeech"] = { ["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.2, + ["min"] = 0.8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3656959867", + ["text"] = "#% of Damage leeched as Life while affected by Vitality", + ["type"] = "explicit", + }, + }, + ["7373_AngerFireDamageLifeLeech"] = { ["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"] = 1.5, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2312747856", + ["text"] = "#% of Fire Damage Leeched as Life while affected by Anger", + ["type"] = "explicit", + }, + }, + ["7399_VitalityLifeRecoveryRate"] = { ["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"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2690790844", + ["text"] = "#% increased Life Recovery Rate while affected by Vitality", + ["type"] = "explicit", + }, + }, + ["7409_VitalityFlatLifeRegen"] = { ["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"] = 140, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3489570622", + ["text"] = "Regenerate # Life per Second while affected by Vitality", + ["type"] = "explicit", + }, + }, + ["7416_VitalityPercentLifeRegen"] = { ["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"] = 1.5, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1165583295", + ["text"] = "Regenerate #% of Life per second while affected by Vitality", + ["type"] = "explicit", + }, + }, + ["7454_WrathIncreasedLightningDamage"] = { ["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"] = 60, + ["min"] = 40, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_418293304", + ["text"] = "#% increased Lightning Damage while affected by Wrath", + ["type"] = "explicit", + }, + }, + ["8188_WrathLightningDamageManaLeech"] = { ["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"] = 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", + }, + }, + ["8197_ClarityManaRecoveryRate"] = { ["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"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_556659145", + ["text"] = "#% increased Mana Recovery Rate while affected by Clarity", + ["type"] = "explicit", + }, + }, + ["9174_ClarityManaAddedAsEnergyShield"] = { ["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"] = 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", + }, + }, + ["9237_HatredAddedColdDamage"] = { ["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"] = 87, + ["min"] = 73, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2643562209", + ["text"] = "Adds # to # Cold Damage while affected by Hatred", + ["type"] = "explicit", + }, + }, + ["9405_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", + }, + }, + ["9428_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", + }, + }, + ["9631_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", + }, + }, + ["9634_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", + }, + }, + ["9656_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", + }, + }, + ["9657_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", + }, + }, + ["9658_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", + }, + }, + ["9659_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", + }, + }, + ["9660_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", + }, + }, + ["9661_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", + }, + }, + ["9710_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", + }, + }, + ["9711_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", + }, + }, + ["9712_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", + }, + }, + ["9716_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", + }, + }, + ["9718_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", + }, + }, + ["9834_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", + }, + }, + ["9845_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", + }, + }, + ["9875_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", + }, + }, + ["9877_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", + }, + }, + ["9878_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..f2ce55b9181 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..e3ef45783d4 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..c367eaba41d 100644 --- a/src/Export/Scripts/mods.lua +++ b/src/Export/Scripts/mods.lua @@ -1,6 +1,8 @@ if not loadStatFile then dofile("statdesc.lua") end +local tinctureStatDescriptions = getStatDescriptors("tincture_stat_descriptions.txt") +local statDescriptions = getStatDescriptors("stat_descriptions.txt") loadStatFile("tincture_stat_descriptions.txt", "graft_stat_descriptions.txt") -- https://www.poewiki.net/wiki/Modifier#Domain @@ -42,6 +44,7 @@ function table.containsId(table, element) return false end + local function writeMods(outName, condFunc) local out = io.open(outName, "w") out:write('-- This file is automatically generated, do not edit!\n') @@ -64,6 +67,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,44 +155,63 @@ 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 = {} - while mod["Stat" .. modIdx] do + local statsHashed = {} + local isTinctureMod = (mod.Domain == Domains.Tincture) and + (mod.GenerationType == GenTypes.Prefix + or mod.GenerationType == GenTypes.Suffix) + for statIdx = 1, 6 do local currentStats = {} - local stat = mod["Stat" .. modIdx] - currentStats[stat.Id] = { - min = mod["Stat" .. modIdx .. "Value"][1], max = mod["Stat" .. modIdx .. "Value"][2] - } - if modIdx == 6 then + local stat = mod["Stat" .. statIdx] + if not stat then break end - local bytes = intToBytes(stat.Hash) - -- # to # stats consist of two different stats as the min and max have different ranges - if stat.Id:match("minimum") then - local nextStat = mod["Stat" .. (modIdx + 1)] - if nextStat and nextStat.Id:match("maximum") then - modIdx = modIdx + 1 - bytes = bytes .. intToBytes(nextStat.Hash) - currentStats[nextStat.Id] = { - min = mod["Stat" .. modIdx .. "Value"][1], max = mod["Stat" .. modIdx .. "Value"][2] - } + -- some stats are related to other stats, and should be + -- hashed with them. we don't want to hash e.g. the lower + -- and upper range of # to # damage modifiers separately. + if statsHashed[stat.Id] then + goto innerContinue + end + + -- tincture stat descriptions are in a separate file + local statEntry + if isTinctureMod then + statEntry = tinctureStatDescriptions[stat.Id] and tinctureStatDescriptions[stat.Id] + else + statEntry = statDescriptions[stat.Id] and statDescriptions[stat.Id] + end + + -- skip stats that are missing fields. these are most likely + -- hidden stats or e.g. map stats + if not statEntry or not statEntry.stats or not statEntry[1] then + goto innerContinue + end + + + -- match stats to the stat values on the mod and save them + -- as they're used to describe the stat + local currentStats = {} + for _, statId in ipairs(statEntry.stats) do + for statIdx = 1, 6 do + if mod["Stat" .. statIdx] and mod["Stat" .. statIdx].Id == statId then + currentStats[statId] = { + min = mod["Stat" .. statIdx .. "Value"][1], + max = mod["Stat" .. statIdx .. "Value"][2] + } + end end end + local description, _, _ = describeStats(currentStats) - tradeHashes[murmurHash2(bytes, 0x02312233)] = description - modIdx = modIdx + 1 + local tradeHash = HashStats(statEntry.stats) + tradeHashes[tradeHash] = description + ::innerContinue:: end out:write("tradeHashes = { ") for hash, desc in pairs(tradeHashes) do @@ -216,16 +243,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 +319,11 @@ 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) +-- enchants +writeMods("../Data/ModEnchantment.lua", function(mod) + return mod.Domain == Domains.Item and mod.GenerationType == GenTypes.Enchantment 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..55d95a96986 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,8 @@ data.itemMods = { JewelAbyss = LoadModule("Data/ModJewelAbyss"), JewelCluster = LoadModule("Data/ModJewelCluster"), JewelCharm = LoadModule("Data/ModJewelCharm"), + Enchantment = LoadModule("Data/ModEnchantment"), + Foulborn = LoadModule("Data/ModFoulborn"), } data.masterMods = LoadModule("Data/ModMaster") data.enchantments = { @@ -601,7 +604,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 +1167,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